Skip to content

Commit 4f4f3f6

Browse files
authored
BUMP 2.5.0 (#615)
1 parent 2a1af2b commit 4f4f3f6

File tree

3 files changed

+36
-2
lines changed

3 files changed

+36
-2
lines changed

CHANGELOG.rst

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,40 @@
11
Changelog
22
=========
33

4+
Version 2.5.0
5+
-------------
6+
7+
Version 2.5.0 adds some new features, bug fixes, and minor breaking changes.
8+
9+
New Features
10+
~~~~~~~~~~~~
11+
12+
- Support for MongoDB 3.4.
13+
- Support including or excluding fields per namespace.
14+
- Support wildcards (*) in namespaces.
15+
- Support for including and excluding different namespaces at the same time.
16+
- Adds a new config file format for the `namespaces` option.
17+
- Logs environment information on startup.
18+
- The doc managers can now be installed through extras_require with pip.
19+
- mongo-connector now tests against MongoDB versions 2.4, 2.6, 3.0, 3.2, and 3.4.
20+
21+
22+
Bug Fixes
23+
~~~~~~~~~
24+
25+
- mongo-connector now gracefully exits on SIGTERM.
26+
- Improved handling of rollbacks.
27+
- Now handles mongos connection failure while looking for shards.
28+
- mongo-connector can now be cancelled during the initial collection dump.
29+
- Improved handling of connection failure while tailing the oplog.
30+
- Command line doc manager specific options now override the config file.
31+
- Improved filtering of nested fields.
32+
33+
Breaking Changes
34+
~~~~~~~~~~~~~~~~
35+
36+
- Asterisks (*) in namespaces configuration are now interpreted as wildcards.
37+
438
Version 2.4.1
539
-------------
640

mongo_connector/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515

16-
__version__ = '2.5.0.dev0'
16+
__version__ = '2.5.0'
1717

1818
# Maximum # of documents to process before recording timestamp
1919
# default = -1 (no maximum)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def run(self):
115115
}
116116

117117
setup(name='mongo-connector',
118-
version="2.5.0.dev0",
118+
version="2.5.0",
119119
author="MongoDB, Inc.",
120120
author_email='[email protected]',
121121
description='Mongo Connector',

0 commit comments

Comments
 (0)