Skip to content

Commit de1115e

Browse files
authored
BUMP 2.5.1 (#673)
1 parent c400d70 commit de1115e

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.rst

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

4+
Version 2.5.1
5+
-------------
6+
7+
Version 2.5.1 improves testing, documentation, and fixes the following bugs:
8+
9+
- Only use listDatabases when necessary.
10+
- Do not use the listShards command.
11+
- Fix PyMongo 3.0 compatibility.
12+
- Fixes support for MongoDB 2.4's invalid $unsets operations.
13+
- Set array element to null when $unset, do not remove the element completely.
14+
- Command line SSL options should override the config file.
15+
- Properly send "ssl.sslCertificatePolicy" to MongoClients.
16+
- Properly output log messages while configuration is parsed.
17+
- All source clients should inherit MongoDB URI options from the main address.
18+
- Do not retry operations that result in authorization failure.
19+
420
Version 2.5.0
521
-------------
622

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.1.dev0'
16+
__version__ = '2.5.1'
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.1.dev0",
118+
version="2.5.1",
119119
author="MongoDB, Inc.",
120120
author_email='[email protected]',
121121
description='Mongo Connector',

0 commit comments

Comments
 (0)