Skip to content

Commit 3532a4f

Browse files
committed
BUMP 1.2.12
1 parent 708f346 commit 3532a4f

File tree

3 files changed

+11
-36
lines changed

3 files changed

+11
-36
lines changed

package.xml

Lines changed: 9 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@
2929
<email>[email protected]</email>
3030
<active>yes</active>
3131
</lead>
32-
<date>2012-07-19</date>
33-
<time>13:53:00</time>
32+
<date>2012-07-24</date>
33+
<time>10:51:00</time>
3434
<version>
35-
<release>1.2.11</release>
36-
<api>1.2.11</api>
35+
<release>1.2.12</release>
36+
<api>1.2.12</api>
3737
</version>
3838
<stability>
3939
<release>stable</release>
@@ -42,38 +42,13 @@
4242
<license uri="http://www.apache.org/licenses/LICENSE-2.0">Apache License</license>
4343
<notes>
4444
** Bug
45-
* [PHP-207] - setSlaveOkay not supported for GridFS queries
46-
* [PHP-266] - segfault when connection string refers to unknown replica set member
47-
* [PHP-269] - Mongo::__construct should only throw MongoConnectionException
48-
* [PHP-331] - PHP segfaults when master changes
49-
* [PHP-339] - Seg fault on insert timeout
50-
* [PHP-359] - getPID() does not return expected PID when called on custom MongoID object
51-
* [PHP-368] - uploadDate is missing in the file property of the MongoGridFSFile class.
52-
* [PHP-369] - GridFS segfaults when iterating with an _id field set in the result object
53-
* [PHP-372] - Error codes not being passed to MongoGridFSException
54-
* [PHP-382] - When 'replicaSet' option is used, authentication calls are being sent to the arbiter server
55-
* [PHP-384] - Segfault for GridFS with long_as_object option
56-
* [PHP-388] - Cursors don't get closed after limit() is exhausted
57-
* [PHP-391] - The driver crashes when there are more than FD_SETSIZE open file descriptors.
58-
* [PHP-392] - Arbiter in the seed list acts wonky
59-
* [PHP-394] - Crashes &amp; mem leaks
60-
* [PHP-397] - Endless loop on non-existing file
61-
* [PHP-402] - MongoCollection::validate(true) doesn't set the correct scan-all flag.
62-
* [PHP-408] - MongoBinData custom type is returned as -128
63-
* [PHP-413] - Authentication with wrong password.. prints the password!
64-
* [PHP-417] - MongoDBRef::isRef() returns null in some cases it should return false
65-
* [PHP-420] - MongoDB::drop() doesn't warn about arguments
66-
* [PHP-431] - PHP driver throws tons of NOTICE messages
67-
* [PHP-434] - Mongo::connect() doesn't validate the object
68-
* [PHP-435] - 1.2.11 doesn't build with PHP5.2
45+
* [PHP-443] - Add zend_parse_parameters_none for PHP 5.2 builds
46+
* [PHP-444] - Undeprecate getSlaveOkay()/setSlaveOkay() on Mongo, MongoDB
47+
and MongoCollection; and getSlave() on Mongo.
6948

7049
** Improvement
71-
* [PHP-389] - Support setting query flags (opts)
72-
* [PHP-428] - Coverage statistics
73-
* [PHP-430] - Deprecate "old ways" which will be removed in 2.0.0
74-
75-
** Task
76-
* [PHP-405] - Migrate PHPUnit tests to phpt
50+
* [PHP-442] - Fixed a typo in "MongoBinData::__construct(): The default
51+
value for type will change to 0 in the future"
7752
</notes>
7853
<contents>
7954
<dir baseinstalldir="/" name="/">

php_mongo.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#ifndef PHP_MONGO_H
1919
#define PHP_MONGO_H 1
2020

21-
#define PHP_MONGO_VERSION "1.2.12dev"
21+
#define PHP_MONGO_VERSION "1.2.12"
2222
#define PHP_MONGO_EXTNAME "mongo"
2323

2424
// resource names

tests/MongoTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
class MongoTest extends PHPUnit_Framework_TestCase
99
{
1010
public function testVersion() {
11-
$this->assertEquals("1.2.12dev", Mongo::VERSION);
11+
$this->assertEquals("1.2.12", Mongo::VERSION);
1212
}
1313

1414
/**

0 commit comments

Comments
 (0)