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

Commit

Permalink
Go with 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
derickr committed Mar 2, 2016
1 parent f89a3b1 commit eddd962
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 1 deletion.
61 changes: 61 additions & 0 deletions ChangeLog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,67 @@
ChangeLog
=========

1.1.0
-----

** Bug
* [HHVM-137] - toJSON and fromJSON should throw exceptions on errors
* [HHVM-149] - Make sure we bundle all source code in release tarballs
* [HHVM-157] - The Ghost bug
* [HHVM-163] - HHVM 3.11 adds additional data types that we need to support
* [HHVM-164] - Bug with BulkWrite->update() and choosing between replace() or update()
* [HHVM-167] - Parse readconcernlevel in URI options array
* [HHVM-168] - Driver does not pick on up default writeConcern
* [HHVM-170] - Make it work with HHVM 3.12
* [HHVM-174] - Autoloading is not triggered for user defined classes
* [HHVM-175] - Only set readConcern when it's 'local' or 'majority'

** Epic
* [HHVM-111] - MongoDB 3.2 Compatibility

** Improvement
* [HHVM-148] - Use more descriptive messages in WriteExceptions
* [HHVM-153] - Query debug handler should defer to ReadConcern handler for readConcern option
* [HHVM-171] - Manager::selectServer() should select exception class based on bson_error_t
* [HHVM-178] - Throw exception if Binary subtype is out of range
* [HHVM-179] - Throw exception if WriteConcern wtimeout is out of range
* [HHVM-180] - Throw exception if Timestamp arguments are out of range

** New Feature
* [HHVM-132] - Implement WriteConcernError::getInfo()

** Question
* [HHVM-152] - Research whether array-casting on Query projection is necessary

** Task
* [HHVM-143] - Update libmongoc/libbson to 1.2.1
* [HHVM-156] - Upgrade bundled libbson and libmongoc to 1.3.2
* [HHVM-159] - Remove request_id from the Manager's __debugInfo()
* [HHVM-160] - Upgrade libbson and libmongoc to 1.3.3
* [HHVM-166] - Remove undocumented Manager "hosts" URI option
* [HHVM-169] - Always encode ODS field when serializing Persistable documents

1.1.0RC1
--------

** Bug
* [HHVM-154] - Link in OpenSSL/SASL and don't rely on other bits to do that

** Improvement
* [HHVM-116] - Support bypassDocumentValidation option for insert and update commands
* [HHVM-150] - Default to IPv4 localhost address for Manager constructor
* [HHVM-155] - Upgrade bundled libbson and libmongoc to 1.3.1

** New Feature
* [HHVM-110] - Support new commands for find, getMore, and killCursors
* [HHVM-120] - Ensure spec compliance for unacknowledged write concerns.
* [HHVM-145] - Add support for the readConcern option

** Task
* [HHVM-97] - Use constant-time hash comparison functions
* [HHVM-140] - Update cursor iteration for libmongoc refactoring
* [HHVM-144] - Update libmongoc/libbson to 1.3.0

1.0.0RC1
--------

Expand Down
2 changes: 1 addition & 1 deletion mongodb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ void hippo_log_handler(mongoc_log_level_t log_level, const char *log_domain, con

static class MongoDBExtension : public Extension {
public:
MongoDBExtension() : Extension("mongodb", "1.0.0RC2-dev") {}
MongoDBExtension() : Extension("mongodb", "1.1.0") {}

virtual void moduleInit() {
/* MongoDB\BSON functions */
Expand Down

0 comments on commit eddd962

Please sign in to comment.