|
8 | 8 | <summary>Mongo Database Driver</summary> |
9 | 9 | <description>This package provides an interface for communicating with the Mongo database in PHP.</description> |
10 | 10 | <lead> |
11 | | - <name>Kristina Chodorow</name> |
12 | | - <user>kristina</user> |
13 | | - |
14 | | - <active>yes</active> |
| 11 | + <name>Kristina Chodorow</name> |
| 12 | + <user>kristina</user> |
| 13 | + |
| 14 | + <active>yes</active> |
15 | 15 | </lead> |
16 | | - <date>2010-01-07</date> |
| 16 | + <date>2010-02-25</date> |
17 | 17 | <time>12:00:00</time> |
18 | 18 | <version> |
19 | | - <release>1.0.3</release> |
20 | | - <api>1.0.3</api> |
| 19 | + <release>1.0.4</release> |
| 20 | + <api>1.0.4</api> |
21 | 21 | </version> |
22 | 22 | <stability> |
23 | | - <release>stable</release> |
24 | | - <api>stable</api> |
| 23 | + <release>stable</release> |
| 24 | + <api>stable</api> |
25 | 25 | </stability> |
26 | 26 | <license uri="http://www.apache.org/licenses/LICENSE-2.0">Apache License</license> |
27 | 27 | <notes> |
28 | | - Fix Apache segfault |
29 | | - Cursor timeout |
30 | | - Faster array encoding |
| 28 | + Authenticate with any DB (not just admin) on login: "mongodb://username:password@host/db" |
| 29 | + Connection timeout option, see doc for Mongo::__construct |
| 30 | + Throws exception for non-UTF8 strings |
| 31 | + Added Mongo::listDBs function |
| 32 | + Added MongoCursor::addOption for $min and $max queries |
| 33 | + Tailable cursors fixed |
| 34 | + MongoDate segfault fix |
| 35 | + NEW - a bunch of mutex/threading stuff... if this doesn't work with your OS's |
| 36 | + threading library, please file a bug! |
31 | 37 | </notes> |
32 | 38 | <contents> |
33 | | - <dir baseinstalldir="/" name="/"> |
34 | | - <file role="src" name="config.m4" /> |
35 | | - <file role="src" name="config.w32" /> |
36 | | - <file role="doc" name="README.rdoc"/> |
37 | | - <file role="src" name="mongo.c"/> |
38 | | - <file role="src" name="php_mongo.h"/> |
39 | | - <file role="src" name="mongo_types.c"/> |
40 | | - <file role="src" name="mongo_types.h"/> |
41 | | - <file role="src" name="bson.c"/> |
42 | | - <file role="src" name="bson.h"/> |
43 | | - <file role="src" name="collection.c"/> |
44 | | - <file role="src" name="collection.h"/> |
45 | | - <file role="src" name="db.c"/> |
46 | | - <file role="src" name="db.h"/> |
47 | | - <file role="src" name="cursor.c"/> |
48 | | - <file role="src" name="cursor.h"/> |
49 | | - <file role="src" name="gridfs.c"/> |
50 | | - <file role="src" name="gridfs.h"/> |
51 | | - </dir> |
| 39 | + <dir baseinstalldir="/" name="/"> |
| 40 | + <file role="src" name="config.m4" /> |
| 41 | + <file role="src" name="config.w32" /> |
| 42 | + <file role="doc" name="README.rdoc"/> |
| 43 | + <file role="src" name="mongo.c"/> |
| 44 | + <file role="src" name="php_mongo.h"/> |
| 45 | + <file role="src" name="mongo_types.c"/> |
| 46 | + <file role="src" name="mongo_types.h"/> |
| 47 | + <file role="src" name="bson.c"/> |
| 48 | + <file role="src" name="bson.h"/> |
| 49 | + <file role="src" name="collection.c"/> |
| 50 | + <file role="src" name="collection.h"/> |
| 51 | + <file role="src" name="db.c"/> |
| 52 | + <file role="src" name="db.h"/> |
| 53 | + <file role="src" name="cursor.c"/> |
| 54 | + <file role="src" name="cursor.h"/> |
| 55 | + <file role="src" name="gridfs.c"/> |
| 56 | + <file role="src" name="gridfs.h"/> |
| 57 | + </dir> |
52 | 58 | </contents> |
53 | 59 | <dependencies> |
54 | | - <required> |
55 | | - <php> |
56 | | - <min>5.1.0</min> |
57 | | - </php> |
58 | | - <pearinstaller> |
59 | | - <min>1.4.3</min> |
60 | | - </pearinstaller> |
61 | | - </required> |
| 60 | + <required> |
| 61 | + <php> |
| 62 | + <min>5.1.0</min> |
| 63 | + </php> |
| 64 | + <pearinstaller> |
| 65 | + <min>1.4.3</min> |
| 66 | + </pearinstaller> |
| 67 | + </required> |
62 | 68 | </dependencies> |
63 | 69 | <providesextension>mongo</providesextension> |
64 | 70 | <extsrcrelease/> |
65 | 71 | <changelog> |
| 72 | + <release> |
| 73 | + <stability> |
| 74 | + <release>stable</release> |
| 75 | + <api>stable</api> |
| 76 | + </stability> |
| 77 | + <version> |
| 78 | + <release>1.0.4</release> |
| 79 | + <api>1.0.4</api> |
| 80 | + </version> |
| 81 | + <date>2010-02-25</date> |
| 82 | + <notes> |
| 83 | + Authenticate with any DB (not just admin) on login: "mongodb://username:password@host/db" |
| 84 | + Connection timeout option, see doc for Mongo::__construct |
| 85 | + Throws exception for non-UTF8 strings |
| 86 | + Added Mongo::listDBs function |
| 87 | + Added MongoCursor::addOption for $min and $max queries |
| 88 | + Tailable cursors fixed |
| 89 | + MongoDate segfault fix |
| 90 | + NEW - a bunch of mutex/threading stuff... if this doesn't work with your OS's |
| 91 | + threading library, please file a bug! |
| 92 | + </notes> |
| 93 | + </release> |
66 | 94 | <release> |
67 | 95 | <stability> |
68 | 96 | <release>stable</release> |
|
0 commit comments