Skip to content

Commit

Permalink
BUMP 2.5.0 (#615)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaneHarvey authored Dec 22, 2016
1 parent 2a1af2b commit 4f4f3f6
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 2 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,40 @@
Changelog
=========

Version 2.5.0
-------------

Version 2.5.0 adds some new features, bug fixes, and minor breaking changes.

New Features
~~~~~~~~~~~~

- Support for MongoDB 3.4.
- Support including or excluding fields per namespace.
- Support wildcards (*) in namespaces.
- Support for including and excluding different namespaces at the same time.
- Adds a new config file format for the `namespaces` option.
- Logs environment information on startup.
- The doc managers can now be installed through extras_require with pip.
- mongo-connector now tests against MongoDB versions 2.4, 2.6, 3.0, 3.2, and 3.4.


Bug Fixes
~~~~~~~~~

- mongo-connector now gracefully exits on SIGTERM.
- Improved handling of rollbacks.
- Now handles mongos connection failure while looking for shards.
- mongo-connector can now be cancelled during the initial collection dump.
- Improved handling of connection failure while tailing the oplog.
- Command line doc manager specific options now override the config file.
- Improved filtering of nested fields.

Breaking Changes
~~~~~~~~~~~~~~~~

- Asterisks (*) in namespaces configuration are now interpreted as wildcards.

Version 2.4.1
-------------

Expand Down
2 changes: 1 addition & 1 deletion mongo_connector/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.


__version__ = '2.5.0.dev0'
__version__ = '2.5.0'

# Maximum # of documents to process before recording timestamp
# default = -1 (no maximum)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def run(self):
}

setup(name='mongo-connector',
version="2.5.0.dev0",
version="2.5.0",
author="MongoDB, Inc.",
author_email='mongodb-user@googlegroups.com',
description='Mongo Connector',
Expand Down

0 comments on commit 4f4f3f6

Please sign in to comment.