14
0

Accepting request 491272 from home:TheBlackCat:branches:devel:languages:python

- Update to Version3.4
- Implement single-spec version
- Fix source URL.

OBS-URL: https://build.opensuse.org/request/show/491272
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymongo?expand=0&rev=47
This commit is contained in:
Todd R
2017-05-01 15:14:03 +00:00
committed by Git OBS Bridge
parent 1ca0fd6dec
commit 68f1e24870
5 changed files with 109 additions and 18 deletions

View File

@@ -1,3 +1,51 @@
-------------------------------------------------------------------
Wed Apr 26 15:36:48 UTC 2017 - toddrme2178@gmail.com
- Update to Version3.4
* Complete support for MongoDB 3.4
* Improved support for logging server discovery and monitoring events. See
:mod:`~pymongo.monitoring` for examples.
* Support for matching iPAddress subjectAltName values for TLS certificate
verification.
* TLS compression is now explicitly disabled when possible.
* The Server Name Indication (SNI) TLS extension is used when possible.
* Finer control over JSON encoding/decoding with
:class:`~bson.json_util.JSONOptions`.
* Allow :class:`~bson.code.Code` objects to have a scope of ``None``,
signifying no scope. Also allow encoding Code objects with an empty scope
(i.e. ``{}``).
- Update to Version3.3
* C extensions support on big endian systems.
* Kerberos authentication support on Windows using `WinKerberos
<https://pypi.python.org/pypi/winkerberos>`_.
* A new ``ssl_clrfile`` option to support certificate revocation lists.
* A new ``ssl_pem_passphrase`` option to support encrypted key files.
* Support for publishing server discovery and monitoring events. See
:mod:`~pymongo.monitoring` for details.
* New connection pool options ``minPoolSize`` and ``maxIdleTimeMS``.
* New ``heartbeatFrequencyMS`` option controls the rate at which background
monitoring threads re-check servers. Default is once every 10 seconds.
- Update to Version3.2.2
* Version 3.2.2 fixes a few issues reported since the release of 3.2.1, including
a fix for using the `connect` option in the MongoDB URI and support for setting
the batch size for a query to 1 when using MongoDB 3.2+.
Changes in Version 3.2.1
* Version 3.2.1 fixes a few issues reported since the release of 3.2, including
running the mapreduce command twice when calling the
:meth:`~pymongo.collection.Collection.inline_map_reduce` method and a
:exc:`TypeError` being raised when calling
:meth:`~gridfs.GridFSBucket.download_to_stream`. This release also
improves error messaging around BSON decoding.
- Update to Version3.2
+ Version 3.2 implements the new server features introduced in MongoDB 3.2.
+ Highlights include:
- Full support for MongoDB 3.2
- Support for reading and writing raw BSON with
:class:`~bson.raw_bson.RawBSONDocument`
- Add tests_should_pass_without_MongoDB_running.patch
- Fix source URL
- Implement single-spec version
-------------------------------------------------------------------
Thu Feb 18 13:24:49 UTC 2016 - eshmarnev@suse.com