Changelog for
python-pymongo-2.7.2-1.3.x86_64.rpm :
* Tue Aug 26 2014 mlinAATTsuse.com- Update to version 2.7.2
* Insert _id in document after applying non-copying SONManipulators (https://jira.mongodb.org/browse/PYTHON-709)
* Fix exhaust cursor error-handling (https://jira.mongodb.org/browse/PYTHON-736)
* Handle network errors when adding existing credentials to sockets (https://jira.mongodb.org/browse/PYTHON-732)
* ObjectId.is_valid(None) should be False (https://jira.mongodb.org/browse/PYTHON-712)
* Clarify versionchanged line for bulk insert (https://jira.mongodb.org/browse/PYTHON-738)
* Work around localhost exception issues in add_user when connected to MongoDB >= 2.7.1 (https://jira.mongodb.org/browse/PYTHON-714)
* Fix Bulk API legacy upsert _id compatibility (https://jira.mongodb.org/browse/PYTHON-705)
* SON.to_dict shouldn\'t change original data (https://jira.mongodb.org/browse/PYTHON-710)
* Fri Jul 25 2014 mlinAATTsuse.com- Update to version 2.7.1
* Ensure _cbson can encode types with broken __getattr__ implementations (https://jira.mongodb.org/browse/PYTHON-698)
* Index and user manipulation broken with mongos versions before 2.4.0 (https://jira.mongodb.org/browse/PYTHON-696)
* Wrong Python object name for UTC in C module (https://jira.mongodb.org/browse/PYTHON-695)
* Helpers and internal command calls that don\'t obey read preference shouldn\'t raise UserWarning (https://jira.mongodb.org/browse/PYTHON-691)
* jnote and wnote should not raise errors when connected to legacy servers (https://jira.mongodb.org/browse/PYTHON-684)
* Possible resource leak in _cmessage (https://jira.mongodb.org/browse/PYTHON-685)
* v 2.7 breaks backward compatibility on results returned by update with upsert (https://jira.mongodb.org/browse/PYTHON-697)
* drop_index fails with OperationFailure if no index found on collection (https://jira.mongodb.org/browse/PYTHON-667)
* PyMongo driver docs don\'t mention text search (https://jira.mongodb.org/browse/PYTHON-690)- PyMongo 2.7 is a major release with a large number of new features and bug fixes. Highlights include:
* Full support for MongoDB 2.6.
* A new :doc:`bulk write operations API `.
* Support for server side query timeouts using :meth:`~pymongo.cursor.Cursor.max_time_ms`.
* Support for writing :meth:`~pymongo.collection.Collection.aggregate` output to a collection.
* A new :meth:`~pymongo.collection.Collection.parallel_scan` helper.
* :class:`~pymongo.errors.OperationFailure` and its subclasses now include a :attr:`~pymongo.errors.OperationFailure.details` attribute with complete error details from the server.
* A new GridFS :meth:`~gridfs.GridFS.find` method that returns a :class:`~gridfs.grid_file.GridOutCursor`.
* Greatly improved :doc:`support for mod_wsgi ` when using PyMongo\'s C extensions. Read Jesse\'s blog post for details.
* Improved C extension support for ARM little endian.
* Version 2.7 drops support for replica sets running MongoDB versions older than 1.6.2.
* More details please see https://jira.mongodb.org/browse/PYTHON/fixforversion/12892
* Sat Dec 07 2013 matzAATTsuse.com- Fix filelist on ppc64le
* Wed Nov 27 2013 p.drouandAATTgmail.com- Update to version 2.6.3 + fix : AttributeError raised when use_greenlets=True is specified without gevent (https://jira.mongodb.org/browse/PYTHON-561) + fix : Semaphore leak during connection failure. (https://jira.mongodb.org/browse/PYTHON-580) + fix : MongoReplicaSetClient ignores waitQueueMultiple and waitQueueTimeoutMS (https://jira.mongodb.org/browse/PYTHON-579)
* Sat Sep 14 2013 schwabAATTsuse.de- Fix file list for aarch64
* Wed Sep 11 2013 dmuellerAATTsuse.com- update to 2.6.2: Version 2.6.2 fixes a :exc:`TypeError` problem when max_pool_size=None is used in Python 3. Version 2.6.1 fixes a reference leak in the :meth:`~pymongo.collection.Collection.insert` method.
* Mon Sep 02 2013 dmuellerAATTsuse.com- update to 2.6: - The ``max_pool_size`` option for :class:`~pymongo.mongo_client.MongoClient` and :class:`~pymongo.mongo_replica_set_client.MongoReplicaSetClient` now actually caps the number of sockets the pool will open concurrently. Once the pool has reached :attr:`~pymongo.mongo_client.MongoClient.max_pool_size` operations will block waiting for a socket to become available. If ``waitQueueTimeoutMS`` is set, an operation that blocks waiting for a socket will raise :exc:`~pymongo.errors.ConnectionFailure` after the timeout. By default ``waitQueueTimeoutMS`` is not set. See :ref:`connection-pooling` for more information. - The :meth:`~pymongo.collection.Collection.insert` method automatically splits large batches of documents into multiple insert messages based on :attr:`~pymongo.mongo_client.MongoClient.max_message_size` - Support for the exhaust cursor flag. See :meth:`~pymongo.collection.Collection.find` for details and caveats. - Support for the PLAIN and MONGODB-X509 authentication mechanisms. See :doc:`the authentication docs ` for more information. - Support aggregation output as a :class:`~pymongo.cursor.Cursor`. See :meth:`~pymongo.collection.Collection.aggregate` for details.
* Thu Aug 08 2013 dvaleevAATTsuse.com- on bigendian platforms we don\'t build native exentions, so package to python_sitelib instead of python_sitearch on those platforms
* Thu Aug 08 2013 speilickeAATTsuse.com- Drop ExclusiveArch, mongodb is only a Suggets which is plain documentation. Nobody says that a PPC machine with the Python bindings can\'t talk to an x86_64 machine hosting mongodb.
* Tue Jun 04 2013 mlinAATTsuse.com- Update to version 2.5.2
* Version 2.5.2 fixes a NULL pointer dereference issue when decoding an invalid :class:`~bson.dbref.DBRef`(bnc#822798, CVE-2013-2132). See release notes in JIRA: https://jira.mongodb.org/browse/PYTHON/fixforversion/12581 for details.
* Tue Jun 04 2013 mlinAATTsuse.com- Update to version 2.5.1
* Version 2.5.1 is a minor release that fixes issues discovered after the release of 2.5. Most importantly, this release addresses some race conditions in replica set monitoring. See release notes in JIRA: https://jira.mongodb.org/browse/PYTHON/fixforversion/12484 for details.
* Wed Apr 03 2013 dvaleevAATTsuse.com- Set Exclusive arch for LittleEndian machines. mongodb is not BigEndian compatible.
* Wed Mar 27 2013 mlinAATTsuse.com- Update to version 2.5
* See https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=11981 for details
* Wed Dec 12 2012 mlinAATTsuse.com- Update to version 2.4.1
* See https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=12286 for details
* Wed Dec 12 2012 mlinAATTsuse.com- Update to version 2.4
* See https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=11485 for details
* Mon Sep 24 2012 iAATTmarguerite.su- Update to version 2.3
* fixes see https://jira.mongodb.org/browse/PYTHON/fixforversion/11146
* Support for expanded read preferences including directing reads to tagged servers - See Secondary Reads for more information.
* Support for mongos failover - See High Availability and mongos for more information.
* A new aggregate() method to support MongoDB’s new aggregation framework.
* Support for legacy Java and C# byte order when encoding and decoding UUIDs.
* Support for connecting directly to an arbiter.
* Tue Mar 27 2012 saschpeAATTsuse.de- Change requires on mongodb to suggests, a weak dependency is better
* Tue Feb 28 2012 saschpeAATTsuse.de- Update to version 2.1.1
* See https://jira.mongodb.org/browse/PYTHON/fixforversion/11081 for details- Require mongodb
* Sat Mar 26 2011 alexandreAATTexatati.com.br- Initial package (1.9) for openSUSE.