forked from mongodb/mongo-php-driver-legacy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.xml
435 lines (435 loc) · 11.5 KB
/
package.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
<?xml version="1.0" encoding="UTF-8"?>
<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
http://pear.php.net/dtd/tasks-1.0.xsd
http://pear.php.net/dtd/package-2.0
http://pear.php.net/dtd/package-2.0.xsd">
<name>mongo</name>
<channel>pecl.php.net</channel>
<summary>MongoDB database driver</summary>
<description>This package provides an interface for communicating with the MongoDB database in PHP.</description>
<lead>
<name>Kristina Chodorow</name>
<user>kristina</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2010-08-06</date>
<time>12:00:00</time>
<version>
<release>1.0.9</release>
<api>1.0.9</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.apache.org/licenses/LICENSE-2.0">Apache License</license>
<notes>
Added 64-bit integer handling: see docs MongoInt32, MongoInt64, and ini
options (Derick Rethans)
Replica set support
Added support for domain sockets
w and fsync options are customizable per operation
Added MongoCollection::ASCENDING and DESCENDING constants
</notes>
<contents>
<dir baseinstalldir="/" name="/">
<file role="src" name="config.m4" />
<file role="src" name="config.w32" />
<file role="doc" name="README.md"/>
<file role="src" name="mongo.c"/>
<file role="src" name="php_mongo.h"/>
<file role="src" name="mongo_types.c"/>
<file role="src" name="mongo_types.h"/>
<file role="src" name="bson.c"/>
<file role="src" name="bson.h"/>
<file role="src" name="collection.c"/>
<file role="src" name="collection.h"/>
<file role="src" name="db.c"/>
<file role="src" name="db.h"/>
<file role="src" name="cursor.c"/>
<file role="src" name="cursor.h"/>
<file role="src" name="gridfs.c"/>
<file role="src" name="gridfs.h"/>
</dir>
</contents>
<dependencies>
<required>
<php>
<min>5.1.0</min>
</php>
<pearinstaller>
<min>1.4.3</min>
</pearinstaller>
</required>
</dependencies>
<providesextension>mongo</providesextension>
<extsrcrelease/>
<changelog>
<release>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<version>
<release>1.0.9</release>
<api>1.0.9</api>
</version>
<date>2010-08-06</date>
<notes>
Added 64-bit integer handling: see docs MongoInt32, MongoInt64, and ini
options (Derick Rethans)
Replica set support
Added support for domain sockets
w and fsync options are customizable per operation
Added MongoCollection::ASCENDING and DESCENDING constants
</notes>
</release>
<release>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<version>
<release>1.0.8</release>
<api>1.0.8</api>
</version>
<date>2010-06-28</date>
<notes>
Added w and wtimeout. GridFS: added get, put, and delete methods, index
checks on all methods, added fields param to GridFS::findOne. Fixed some
error messages (authentication and BSON deserialization) and handling (for
large messages and field names passed as integers). Fixed a couple of double
frees and an incorrect cursor boundry condition. Added MongoId::__set_state
and MongoId::getHostname (to see the hostname hashed for unique ids).
</notes>
</release>
<release>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<version>
<release>1.0.7</release>
<api>1.0.7</api>
</version>
<date>2010-04-28</date>
<notes>
The bug fix release! A zillion bugfixes and the new static
MongoCursor::$timeout property for setting a default timeout for requests.
Bug fixes include count error handling, fixing double frees with BSON errors
and ensureIndex, a mutex fix for FreeBSD, catching socket connection errors
(William Volkman), database commands propagate exceptions, and cursor killing
is more efficient.
</notes>
</release>
<release>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<version>
<release>1.0.6</release>
<api>1.0.6</api>
</version>
<date>2010-03-24</date>
<notes>
Allow MongoCollection::ensureIndex to create 2D indexes.
Added MongoCursor::fields().
Fixed for big endian machines.
Removed debug statements.
</notes>
</release>
<release>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<version>
<release>1.0.5</release>
<api>1.0.5</api>
</version>
<date>2010-03-16</date>
<notes>
Mutex fixes (especially on Windows) and improvements (failures throw exceptions).
New Cursor::info() function, which gives the query, fields, namespace, limit, and
skip (by Cesar Rodas)
Added safe option for remove, update, batch, and gridfs insert methods.
Added keyf option for MongoCollection::group: pass a MongoCode instance as the
grouping key to use keyf.
Added comparison handlers for MongoId, allowing you to use, for example, in_array
with MongoIds.
</notes>
</release>
<release>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<version>
<release>1.0.4</release>
<api>1.0.4</api>
</version>
<date>2010-02-25</date>
<notes>
Authenticate with any DB (not just admin) on login: "mongodb://username:password@host/db"
Connection timeout option, see doc for Mongo::__construct
Throws exception for non-UTF8 strings
Added Mongo::listDBs function
Added MongoCursor::addOption for $min and $max queries
Tailable cursors fixed
MongoDate segfault fix
NEW - a bunch of mutex/threading stuff... if this doesn't work with your OS's
threading library, please file a bug!
</notes>
</release>
<release>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<version>
<release>1.0.3</release>
<api>1.0.3</api>
</version>
<date>2010-01-07</date>
<notes>
Fix Apache segfault
Cursor timeout
Faster array encoding
</notes>
</release>
<release>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<version>
<release>1.0.2</release>
<api>1.0.2</api>
</version>
<date>2009-12-17</date>
<notes>
Better Mongo::__construct parameters
Getters for Mongo, MongoDB, and MongoCollection
MongoId::getTimestamp
MongoCollection::ensureIndex takes dropDups and safe opts
</notes>
</release>
<release>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<version>
<release>1.0.1</release>
<api>1.0.1</api>
</version>
<date>2009-11-19</date>
<notes>
Big-endian support
MongoCollection::update can affect multiple documents
MongoCursor::count uses limit and skip, optionally
MongoDBRef supports $db
MongoMinKey and MongoMax Key
Cursor::immortal
Constants for binary types
MongoDB::authenticate
</notes>
</release>
<release>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<version>
<release>1.0.0</release>
<api>1.0.0</api>
</version>
<date>2009-09-29</date>
<notes>
Safe insert
Configurable special character
Error methods are on MongoDB, not Mongo
</notes>
</release>
<release>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<version>
<release>0.9.5</release>
<api>0.9.5</api>
</version>
<date>2009-08-20</date>
<notes>
Unbreak backwards compatibility
Arrays are saved as arrays only if they have ascending numeric indices, otherwise they're saved as objects
</notes>
</release>
<release>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<version>
<release>0.9.4</release>
<api>0.9.4</api>
</version>
<date>2009-08-18</date>
<notes>
Objects can be stored/retrieved
MongoCursor - errors throws exceptions, added snapshot() and $slaveOkay
MongoCollection::listCollections() returns collections
Long decoding support
Bug fixes
</notes>
</release>
<release>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<version>
<release>0.9.3</release>
<api>0.9.3</api>
</version>
<date>2009-07-10</date>
<notes>
added slaveOkay(), tailable(), and logReplay() to MongoCursor
empty array() defaults to array type, added MongoEmptyObj
MongoId serialize/unserialize
</notes>
</release>
<release>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<version>
<release>0.9.2</release>
<api>0.9.2</api>
</version>
<date>2009-06-17</date>
<notes>
Optimizations, bug fixes
Windows build
5.1 compatible
</notes>
</release>
<release>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<version>
<release>0.9.1</release>
<api>0.9.1</api>
</version>
<date>2009-05-28</date>
<notes>
Code cleanup
Speed improvement
Windows work
</notes>
</release>
<release>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<version>
<release>0.9.0</release>
<api>0.9.0</api>
</version>
<date>2009-05-19</date>
<notes>
Added classes
5.3 compatible
</notes>
</release>
<release>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<version>
<release>0.8.4</release>
<api>0.8.4</api>
</version>
<date>2009-04-09</date>
<notes>
Removed all config dependencies
</notes>
</release>
<release>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<version>
<release>0.8.3</release>
<api>0.8.2</api>
</version>
<date>2009-03-17</date>
<notes>
Added Code type
Improved config
Paired connections
Fixed some memory leaks
</notes>
</release>
<release>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<version>
<release>0.8.2</release>
<api>0.8.1</api>
</version>
<date>2009-03-09</date>
<notes>
Reorganized source tree
Better config
API improvements
OID string fix
</notes>
</release>
<release>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<version>
<release>0.8.1</release>
<api>0.8.1</api>
</version>
<date>2009-03-04</date>
<notes>
Persistent connections
Better authentication
MongoId, MongoDate, MongoRegex, and MongoBinData types
Batch insert
</notes>
</release>
<release>
<version>
<release>0.8.0</release>
<api>0.8.0</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<date>2009-02-24</date>
<license>Apache License</license>
<notes>Initial release.
Basic connection and interaction capabilities.</notes>
</release>
</changelog>
</package>
<!--
vim:et:ts=1:sw=1
-->