14
0
Files
python-pymongo/python-pymongo.changes

209 lines
9.3 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-------------------------------------------------------------------
Tue Aug 26 10:18:16 UTC 2014 - mlin@suse.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 08:59:00 UTC 2014 - mlin@suse.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 </examples/bulk>`.
* 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 </examples/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 7 02:20:46 UTC 2013 - matz@suse.com
- Fix filelist on ppc64le
-------------------------------------------------------------------
Wed Nov 27 13:25:30 UTC 2013 - p.drouand@gmail.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 19:18:50 UTC 2013 - schwab@suse.de
- Fix file list for aarch64
-------------------------------------------------------------------
Wed Sep 11 21:11:29 UTC 2013 - dmueller@suse.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 2 15:40:35 UTC 2013 - dmueller@suse.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 </examples/authentication>` for more
information.
- Support aggregation output as a :class:`~pymongo.cursor.Cursor`. See
:meth:`~pymongo.collection.Collection.aggregate` for details.
-------------------------------------------------------------------
Thu Aug 8 14:47:50 UTC 2013 - dvaleev@suse.com
- on bigendian platforms we don't build native exentions, so
package to python_sitelib instead of python_sitearch on those
platforms
-------------------------------------------------------------------
Thu Aug 8 14:38:01 UTC 2013 - speilicke@suse.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 4 03:56:25 UTC 2013 - mlin@suse.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 4 03:54:45 UTC 2013 - mlin@suse.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 3 21:23:59 UTC 2013 - dvaleev@suse.com
- Set Exclusive arch for LittleEndian machines. mongodb is not
BigEndian compatible.
-------------------------------------------------------------------
Wed Mar 27 03:21:28 UTC 2013 - mlin@suse.com
- Update to version 2.5
* See https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=11981
for details
-------------------------------------------------------------------
Wed Dec 12 08:01:11 UTC 2012 - mlin@suse.com
- Update to version 2.4.1
* See https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=12286
for details
-------------------------------------------------------------------
Wed Dec 12 07:56:27 UTC 2012 - mlin@suse.com
- Update to version 2.4
* See https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=11485
for details
-------------------------------------------------------------------
Mon Sep 24 12:03:51 UTC 2012 - i@marguerite.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 MongoDBs 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 08:41:06 UTC 2012 - saschpe@suse.de
- Change requires on mongodb to suggests, a weak dependency is better
-------------------------------------------------------------------
Tue Feb 28 08:54:00 UTC 2012 - saschpe@suse.de
- Update to version 2.1.1
* See https://jira.mongodb.org/browse/PYTHON/fixforversion/11081
for details
- Require mongodb
-------------------------------------------------------------------
Sat Mar 26 00:03:48 UTC 2011 - alexandre@exatati.com.br
- Initial package (1.9) for openSUSE.