Skip to content
This repository was archived by the owner on Dec 23, 2021. It is now read-only.

Commit eddd962

Browse files
committed
Go with 1.1.0
1 parent f89a3b1 commit eddd962

File tree

2 files changed

+62
-1
lines changed

2 files changed

+62
-1
lines changed

ChangeLog.rst

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,67 @@
11
ChangeLog
22
=========
33

4+
1.1.0
5+
-----
6+
7+
** Bug
8+
* [HHVM-137] - toJSON and fromJSON should throw exceptions on errors
9+
* [HHVM-149] - Make sure we bundle all source code in release tarballs
10+
* [HHVM-157] - The Ghost bug
11+
* [HHVM-163] - HHVM 3.11 adds additional data types that we need to support
12+
* [HHVM-164] - Bug with BulkWrite->update() and choosing between replace() or update()
13+
* [HHVM-167] - Parse readconcernlevel in URI options array
14+
* [HHVM-168] - Driver does not pick on up default writeConcern
15+
* [HHVM-170] - Make it work with HHVM 3.12
16+
* [HHVM-174] - Autoloading is not triggered for user defined classes
17+
* [HHVM-175] - Only set readConcern when it's 'local' or 'majority'
18+
19+
** Epic
20+
* [HHVM-111] - MongoDB 3.2 Compatibility
21+
22+
** Improvement
23+
* [HHVM-148] - Use more descriptive messages in WriteExceptions
24+
* [HHVM-153] - Query debug handler should defer to ReadConcern handler for readConcern option
25+
* [HHVM-171] - Manager::selectServer() should select exception class based on bson_error_t
26+
* [HHVM-178] - Throw exception if Binary subtype is out of range
27+
* [HHVM-179] - Throw exception if WriteConcern wtimeout is out of range
28+
* [HHVM-180] - Throw exception if Timestamp arguments are out of range
29+
30+
** New Feature
31+
* [HHVM-132] - Implement WriteConcernError::getInfo()
32+
33+
** Question
34+
* [HHVM-152] - Research whether array-casting on Query projection is necessary
35+
36+
** Task
37+
* [HHVM-143] - Update libmongoc/libbson to 1.2.1
38+
* [HHVM-156] - Upgrade bundled libbson and libmongoc to 1.3.2
39+
* [HHVM-159] - Remove request_id from the Manager's __debugInfo()
40+
* [HHVM-160] - Upgrade libbson and libmongoc to 1.3.3
41+
* [HHVM-166] - Remove undocumented Manager "hosts" URI option
42+
* [HHVM-169] - Always encode ODS field when serializing Persistable documents
43+
44+
1.1.0RC1
45+
--------
46+
47+
** Bug
48+
* [HHVM-154] - Link in OpenSSL/SASL and don't rely on other bits to do that
49+
50+
** Improvement
51+
* [HHVM-116] - Support bypassDocumentValidation option for insert and update commands
52+
* [HHVM-150] - Default to IPv4 localhost address for Manager constructor
53+
* [HHVM-155] - Upgrade bundled libbson and libmongoc to 1.3.1
54+
55+
** New Feature
56+
* [HHVM-110] - Support new commands for find, getMore, and killCursors
57+
* [HHVM-120] - Ensure spec compliance for unacknowledged write concerns.
58+
* [HHVM-145] - Add support for the readConcern option
59+
60+
** Task
61+
* [HHVM-97] - Use constant-time hash comparison functions
62+
* [HHVM-140] - Update cursor iteration for libmongoc refactoring
63+
* [HHVM-144] - Update libmongoc/libbson to 1.3.0
64+
465
1.0.0RC1
566
--------
667

mongodb.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ void hippo_log_handler(mongoc_log_level_t log_level, const char *log_domain, con
8383

8484
static class MongoDBExtension : public Extension {
8585
public:
86-
MongoDBExtension() : Extension("mongodb", "1.0.0RC2-dev") {}
86+
MongoDBExtension() : Extension("mongodb", "1.1.0") {}
8787

8888
virtual void moduleInit() {
8989
/* MongoDB\BSON functions */

0 commit comments

Comments
 (0)