Bernie Hackett
7f4c0588bc
BUMP 2.8
2015-01-28 13:19:25 -08:00
Bernie Hackett
0687e9b656
PYTHON-832 - Disable copy_database auth tests with MongoDB 2.7.2+
2015-01-28 11:48:42 -08:00
Bernie Hackett
84c34a3d45
Remove redundant test_copy_db_scram_sha_1.
2015-01-28 11:48:27 -08:00
Bernie Hackett
720a141227
Update MongoDB version references from 2.8 to 3.0.
2015-01-24 09:21:32 -08:00
Bernie Hackett
4ec3f880e1
PYTHON-830 - Fix bad uses of _get_wc_override.
2015-01-24 09:00:25 -08:00
Bernie Hackett
4acb891473
Revert "PYTHON-830 - Fix bad uses of _get_wc_override."
...
This reverts commit 19753f3897 .
2015-01-23 18:18:07 -08:00
Bernie Hackett
19753f3897
PYTHON-830 - Fix bad uses of _get_wc_override.
2015-01-23 14:43:40 -08:00
Bernie Hackett
82af07b9c8
Remove "text" command read preference test.
2015-01-20 10:08:15 -08:00
Bernie Hackett
6b218b5120
Version -> +
2015-01-20 10:08:01 -08:00
Bernie Hackett
0b715cff2e
BUMP 2.8rc2
2014-12-24 11:38:35 -08:00
Bernie Hackett
83f53499ae
Fix auth DeprecationWarning test.
2014-12-23 15:37:47 -08:00
A. Jesse Jiryu Davis
9e6a267854
PYTHON-786: Silence DeprecationWarnings in test_master_slave_connection.
2014-12-21 17:11:07 -06:00
A. Jesse Jiryu Davis
61f526a2c5
PYTHON-783 Silence copy_database DeprecationWarnings in tests.
2014-12-21 17:11:07 -06:00
A. Jesse Jiryu Davis
31b83bc0e0
PYTHON-807 Silence DeprecationWarnings in getlasterror tests.
2014-12-21 17:11:07 -06:00
A. Jesse Jiryu Davis
8e794bc8fe
PYTHON-807 Avoid DeprecationWarning in GridIn.close().
2014-12-21 17:08:03 -06:00
A. Jesse Jiryu Davis
753356a723
PYTHON-807 Deprecate Database.error() and related methods.
2014-12-19 19:56:02 -05:00
James Root
2aae624dda
Updated minimongo repository location
2014-12-18 16:19:37 -08:00
Bernie Hackett
a73e6cfb13
PYTHON-806 - Always use command cursor 'ns' value for OP_GET_MORE
2014-12-18 13:39:38 -08:00
Bernie Hackett
f3b6abf622
PYTHON-796 - Support listCollections and listIndexes command cursors
2014-12-18 12:12:57 -08:00
A. Jesse Jiryu Davis
be1a7be639
PYTHON-799 Python 2.4 compatibility in test_kill_cursors_warning.
2014-12-17 15:17:59 -05:00
A. Jesse Jiryu Davis
69beec6ca6
PYTHON-799 RS client's close_cursor shouldn't lock client.
...
We still take a lock in Pool.get_socket and maybe_return_socket, but in my tests
it doesn't seem possible to deadlock the GC from Pool.
2014-12-17 14:12:36 -05:00
A. Jesse Jiryu Davis
d195c7c70d
PYTHON-799 Warn when MongoClient can't close a cursor.
2014-12-17 14:12:36 -05:00
A. Jesse Jiryu Davis
8ebd553d5a
PYTHON-799 Avoid deadlock in Cursor destructor with PyPy.
2014-12-17 14:11:54 -05:00
A. Jesse Jiryu Davis
e93c2ac72c
Wrong docstring for MongoReplicaSetClient.close_cursor.
2014-12-13 10:09:44 -05:00
A. Jesse Jiryu Davis
967a243469
Unused argument in MasterSlaveConnection._send_message.
2014-12-13 10:04:07 -05:00
A. Jesse Jiryu Davis
4a085f1d33
Fix formatting in changelog.
2014-12-12 15:24:35 -05:00
Bernie Hackett
5c26dab41a
Version -> +
2014-12-02 16:19:01 -08:00
Bernie Hackett
698e099969
BUMP 2.8rc1
2014-12-02 16:07:01 -08:00
Bernie Hackett
1398a4b782
Raise if nonce or server signature don't match.
2014-12-02 12:08:18 -08:00
Bernie Hackett
86e85ce715
PYTHON-795 - Fix password handling for None and the empty string.
2014-12-02 08:45:37 -08:00
Bernie Hackett
807c6797e1
PYTHON-792 - Update create collection and index docs.
2014-11-24 15:42:43 -08:00
Bernie Hackett
e9e764c4f3
Add Heewa Barfchin to contributors.
2014-11-24 11:05:33 -08:00
Bernie Hackett
cf791ca74e
Update changelog to mention new BSON helpers.
2014-11-24 11:04:12 -08:00
Bernie Hackett
e77607f1a4
Document uuid_subtype parameter for BSON.encode/decode.
2014-11-21 16:47:30 -08:00
Bernie Hackett
cfbaf7ef95
Document to uuid_subtype parameter for decoders.
2014-11-21 16:44:41 -08:00
Bernie Hackett
0be172bdf8
Fix up docs for decode_(file_)iter.
2014-11-21 16:33:44 -08:00
Bernie Hackett
fd2d8face2
Allow decode_(file_)iter to use C extensions.
2014-11-21 16:26:19 -08:00
Bernie Hackett
7858dcb868
Add compile_re support to decode_(file_)iter.
2014-11-21 15:30:50 -08:00
Heewa Barfchin
5c4556b013
Add generator versions of decode_all in bson.
...
When decoding large collections of bson documents, the python representation
of dicts are time and space costly, so it's sometimes useful to generate and
consume the documents iteratively. This patch adds two new functions to do
that: decode_iter and decode_file_iter. The first is given all the bson data,
but yields one document at a time, while the second reads from a file object
enough to yield one document at a time (to avoid reading in an entire file).
2014-11-21 15:22:24 -08:00
Bernie Hackett
80bcdb3156
PYTHON-791 - Fix JSON support for Timestamp.
2014-11-21 09:26:37 -08:00
A. Jesse Jiryu Davis
efb2c2a9dc
PYTHON-789 Clarify valid ObjectId input.
2014-11-20 16:51:52 -05:00
Mieszko
1cf2f166e9
Two typos
2014-11-19 17:03:13 -05:00
A. Jesse Jiryu Davis
1cf4e15442
Version -> +
2014-11-19 17:03:13 -05:00
Bernie Hackett
21ef41346a
BUMP 2.8rc0
2014-11-12 09:55:38 -08:00
Bernie Hackett
1c2f0cdb30
Changelog and related fixes.
2014-11-12 09:12:17 -08:00
Bernie Hackett
539d6f3d07
Fix a typo in the changelog.
2014-11-11 15:08:35 -08:00
Bernie Hackett
5755079dc4
PYTHON-778 - Document URI quoting rules.
2014-11-11 14:43:09 -08:00
Bernie Hackett
71bf8cf6e7
Changelog for PyMongo 2.8.
2014-11-11 14:24:49 -08:00
A. Jesse Jiryu Davis
8e119d2b8c
Typo in README.rst.
2014-11-10 21:36:32 -05:00
A. Jesse Jiryu Davis
eb5d4f61bf
Note that mongos does not support copydb with auth.
2014-11-10 19:48:42 -05:00