Skip to content

Commit b9bd273

Browse files
committed
BUMP 1.2.8
1 parent f48c0c7 commit b9bd273

File tree

3 files changed

+42
-21
lines changed

3 files changed

+42
-21
lines changed

package.xml

Lines changed: 40 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<package packagerversion="1.4.11" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0
2+
<package packagerversion="1.4.11" version="2.0"
3+
xmlns="http://pear.php.net/dtd/package-2.0"
4+
xmlns:tasks="http://pear.php.net/dtd/tasks-1.0"
5+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
6+
xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0
37
http://pear.php.net/dtd/tasks-1.0.xsd
48
http://pear.php.net/dtd/package-2.0
59
http://pear.php.net/dtd/package-2.0.xsd">
@@ -19,11 +23,11 @@
1923
<email>[email protected]</email>
2024
<active>yes</active>
2125
</lead>
22-
<date>2012-01-05</date>
26+
<date>2012-02-22</date>
2327
<time>15:31:50</time>
2428
<version>
25-
<release>1.2.7</release>
26-
<api>1.2.7</api>
29+
<release>1.2.8</release>
30+
<api>1.2.8</api>
2731
</version>
2832
<stability>
2933
<release>stable</release>
@@ -33,21 +37,14 @@
3337
<notes>
3438
BUG FIXES
3539

36-
* PHP-204: ClusteredCursor::query not throwing an Exception
37-
* PHP-262: Added persistent replicaSet container
38-
* PHP-277: Remove cursor from list on cursor reset
39-
* PHP-279: Make accessing connected property quiet
40-
* PHP-286: Try ping on another connection when one fails
41-
* PHP-300: Fixed segfault when execute() is given array() as argument.
42-
* Make mongoLog settings thread safe.
43-
* Fixed memory leaks
44-
* Fixed issues with connection pooling
45-
46-
NEW FEATURES
47-
48-
* PHP-233: Added the continueOnError flag to batch_insert().
49-
* PHP-268: Add slave buckets
50-
* PHP-272: Randomly choose slaves from a given bucket
40+
* PHP-306 - MongoID::__set_state does not work
41+
* PHP-307 - getHosts() not working with 1.2.7
42+
* PHP-311 - Apache httpd segfault with PHP mongo 1.2.7
43+
* PHP-312 - Seg fault with curl POST + mongo replicaset close
44+
* PHP-313 - Kill cursor can be called on a different connection than the one the cursor was created on
45+
* PHP-319 - Issues when the the driver tests for other connections to close if it find a "bad connection".
46+
* PHP-320 - GridFS doesn't check for correct insertion of file-meta-document
47+
* PHP-325 - mongo-php-driver abort with SEGV
5148
</notes>
5249
<contents>
5350
<dir baseinstalldir="/" name="/">
@@ -103,6 +100,30 @@
103100
<providesextension>mongo</providesextension>
104101
<extsrcrelease/>
105102
<changelog>
103+
<release>
104+
<stability>
105+
<release>stable</release>
106+
<api>stable</api>
107+
</stability>
108+
<version>
109+
<release>1.2.8</release>
110+
<api>1.2.8</api>
111+
</version>
112+
<date>2012-02-22</date>
113+
<notes>
114+
BUG FIXES
115+
116+
* PHP-306 - MongoID::__set_state does not work
117+
* PHP-307 - getHosts() not working with 1.2.7
118+
* PHP-311 - Apache httpd segfault with PHP mongo 1.2.7
119+
* PHP-312 - Seg fault with curl POST + mongo replicaset close
120+
* PHP-313 - Kill cursor can be called on a different connection than the one the cursor was created on
121+
* PHP-319 - Issues when the the driver tests for other connections to close if it find a "bad connection".
122+
* PHP-320 - GridFS doesn't check for correct insertion of file-meta-document
123+
* PHP-325 - mongo-php-driver abort with SEGV
124+
</notes>
125+
</release>
126+
106127
<release>
107128
<stability>
108129
<release>stable</release>

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.8dev"
21+
#define PHP_MONGO_VERSION "1.2.8"
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.8dev", Mongo::VERSION);
11+
$this->assertEquals("1.2.8", Mongo::VERSION);
1212
}
1313

1414
/**

0 commit comments

Comments
 (0)