Skip to content

Commit a313f5b

Browse files
committed
BUMP 1.3.0beta1
1 parent 15cc8a0 commit a313f5b

File tree

3 files changed

+34
-5
lines changed

3 files changed

+34
-5
lines changed

package.xml

Lines changed: 32 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,44 @@
3030
<active>yes</active>
3131
</lead>
3232
<date>2012-08-16</date>
33-
<time>18:14:32</time>
33+
<time>18:53:32</time>
3434
<version>
35-
<release>1.3.0alpha1</release>
36-
<api>1.3.0alpha1</api>
35+
<release>1.3.0beta1</release>
36+
<api>1.3.0beta1</api>
3737
</version>
3838
<stability>
3939
<release>alpha</release>
4040
<api>alpha</api>
4141
</stability>
4242
<license uri="http://www.apache.org/licenses/LICENSE-2.0">Apache License</license>
4343
<notes>
44+
This is a new major release, which has a rewritten connection handling
45+
backend. It has been rewritten to form a new improved framework for
46+
handling connections. On top of this new framework, new functionality is
47+
also implemented to provide read preference support that comes with
48+
MongoDB 2.2. The new framework no longer has the concept of a connection
49+
pool, but instead make sure there is only one connect per
50+
node/db/username.
51+
52+
We also have introduced some deprecation notices for features and methods that
53+
are going to disappear in version 2 of the driver, which we plan to release
54+
before the end of the year.
55+
56+
New major features in this release to support the MongoDB 2.2 release:
57+
58+
- Support for the aggregation framework through the aggregate() helper.
59+
- Support for read preferences and read preference tags (See:
60+
http://docs.mongodb.org/manual/applications/replication/#replica-set-read-preference)
61+
62+
Known issues (to be addressed before 1.3.0):
63+
64+
- Authentication has not been implemented it, so this release will only work
65+
for installations without authentication enabled.
66+
- Support for connections to multiple mongos nodes is not implemented yet.
67+
- It has not been tested on anything but Linux.
68+
69+
The rest of the standard changelog:
70+
4471
** Bug
4572
* [PHP-293] - listCollections
4673
* [PHP-300] - execute crashes with array() as argument
@@ -52,6 +79,8 @@
5279
* [PHP-445] - Cannot use mongo.default_host with Mongo constructor options
5380
* [PHP-446] - Uncaught exception 'MongoCursorException' with message 'couldn't send query: ' when find()ing items on an empty collection
5481
* [PHP-454] - Memory leak when many inserts
82+
* Note: More might have been fixed, but those issues need to be verified
83+
first.
5584

5685
** Improvement
5786
* [PHP-270] - ext/mongo classes should return meaningful results from Reflection API

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.3.0beta1-dev"
21+
#define PHP_MONGO_VERSION "1.3.0beta1"
2222
#define PHP_MONGO_EXTNAME "mongo"
2323

2424
#include "mcon/types.h"

tests/MongoTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
class MongoTest extends PHPUnit_Framework_TestCase
77
{
88
public function testVersion() {
9-
$this->assertEquals("1.3.0beta1-dev", Mongo::VERSION);
9+
$this->assertEquals("1.3.0beta1", Mongo::VERSION);
1010
}
1111

1212
/**

0 commit comments

Comments
 (0)