14
0

Accepting request 242330 from home:mlin7442:branches:devel:languages:python

update to 2.7.1

OBS-URL: https://build.opensuse.org/request/show/242330
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymongo?expand=0&rev=32
This commit is contained in:
Denisart Benjamin
2014-07-25 12:43:51 +00:00
committed by Git OBS Bridge
parent 7eb69500eb
commit 5e2c8db6e9
4 changed files with 50 additions and 5 deletions

View File

@@ -1,3 +1,48 @@
-------------------------------------------------------------------
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