forked from couchbase/php-couchbase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage2.xml
530 lines (509 loc) · 18.9 KB
/
package2.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
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
<?xml version="1.0"?>
<!DOCTYPE package SYSTEM "http://pear.php.net/dtd/package-1.0">
<package 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"
packagerversion="1.4.11" version="2.0"
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>couchbase</name>
<channel>pecl.php.net</channel>
<summary>Couchbase Server PHP extension</summary>
<description>
The PHP client library provides fast access to documents stored in
a Couchbase Server.
</description>
<lead>
<name>Brett Lawson</name>
<user>brett19</user>
<email>[email protected]</email>
<active>no</active>
</lead>
<lead>
<name>Sergey Avseyev</name>
<user>avsej</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2016-09-06</date>
<version>
<release>2.2.2</release>
<api>2.2.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.apache.org/licenses/LICENSE-2.0">Apache V2
</license>
<notes>
This is the GA release of the 2.2.2 SDK. It is a maitenance release
with several fixes:
Changes:
* PCBC-410: consolidate libcouchbase and extension loggers, and expose them through PHP logger
* PCBC-409: bubble errors from server on view upsert
* PCBC-417: do not send duplicated requests for multi-get
* PCBC-423: report N1QL error details via logger
* Documentation updates and bug fixes
</notes>
<contents>
<dir name="/">
<file role="doc" name="LICENSE"/>
<file role="doc" name="README.md"/>
<file role="doc" name="fastlz/LICENSE.txt"/>
<file role="src" name="bucket.c"/>
<file role="src" name="bucket.h"/>
<file role="src" name="cas.c"/>
<file role="src" name="cas.h"/>
<file role="src" name="cbft.c"/>
<file role="src" name="cluster.c"/>
<file role="src" name="cluster.h"/>
<file role="src" name="config.m4"/>
<file role="src" name="config.w32"/>
<file role="src" name="couchbase.c"/>
<file role="src" name="couchbase.h"/>
<file role="src" name="counter.c"/>
<file role="src" name="datainfo.h"/>
<file role="src" name="docfrag.c"/>
<file role="src" name="docfrag.h"/>
<file role="src" name="durability.c"/>
<file role="src" name="exception.c"/>
<file role="src" name="exception.h"/>
<file role="src" name="fastlz/fastlz.c"/>
<file role="src" name="fastlz/fastlz.h"/>
<file role="src" name="get.c"/>
<file role="src" name="http.c"/>
<file role="src" name="metadoc.c"/>
<file role="src" name="metadoc.h"/>
<file role="src" name="n1ix_create.c"/>
<file role="src" name="n1ix_drop.c"/>
<file role="src" name="n1ix_list.c"/>
<file role="src" name="n1ix_spec.c"/>
<file role="src" name="n1ix_spec.h"/>
<file role="src" name="n1ql.c"/>
<file role="src" name="opcookie.c"/>
<file role="src" name="opcookie.h"/>
<file role="src" name="paramparser.c"/>
<file role="src" name="paramparser.h"/>
<file role="src" name="php_couchbase.h"/>
<file role="src" name="phpstubstr.h"/>
<file role="src" name="remove.c"/>
<file role="src" name="store.c"/>
<file role="src" name="subdoc.c"/>
<file role="src" name="token.c"/>
<file role="src" name="token.h"/>
<file role="src" name="touch.c"/>
<file role="src" name="transcoding.c"/>
<file role="src" name="transcoding.h"/>
<file role="src" name="unlock.c"/>
<file role="src" name="zap.h"/>
<file role="src" name="log.c"/>
<file role="src" name="log.h"/>
</dir>
</contents>
<dependencies>
<required>
<php>
<min>5.3.0</min>
</php>
<pearinstaller>
<min>1.4.8</min>
</pearinstaller>
</required>
<optional>
<package>
<name>igbinary</name>
<channel>pecl.php.net</channel>
<providesextension>igbinary</providesextension>
</package>
</optional>
</dependencies>
<providesextension>couchbase</providesextension>
<extsrcrelease/>
<changelog>
<release>
<date>2016-08-08</date>
<version>
<release>2.2.1</release>
<api>2.2.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.apache.org/licenses/LICENSE-2.0">Apache V2
</license>
<notes>
This is the GA release of the 2.2.1 SDK. It is a maitenance release
with several fixes:
Changes:
* PCBC-416: fix segfault on multi-get for duplicated keys.
* PCBC-414: return $this from N1qlQuery methods
* Documentation updates and bug fixes
</notes>
</release>
<release>
<date>2016-07-06</date>
<version>
<release>2.2.0</release>
<api>2.2.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.apache.org/licenses/LICENSE-2.0">Apache V2
</license>
<notes>
This is the GA release of the 2.2.0 SDK. It includes more features
to support new Couchbase Server 4.5 release and bug fixes.
Changes:
* PCBC-393: Support for enhanced durability
* PCBC-398: expose methods for parameterized N1QL queries
* PCBC-382: cluster level authentication
* Expose meta for N1QL and Search queries
* Documentation updates and bug fixes
</notes>
</release>
<release>
<date>2016-06-29</date>
<version>
<release>2.2.0beta4</release>
<api>2.2.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.apache.org/licenses/LICENSE-2.0">Apache V2
</license>
<notes>
This is the fourth beta release of the 2.2.0 SDK. It includes more features
to support new Couchbase Server 4.5 release and bug fixes.
Changes:
* PCBC-380: support AT_PLUS consistency
* PCBC-381: support for Full Text Search queries
* Various minor fixes and improvements
</notes>
</release>
<release>
<date>2016-05-25</date>
<version>
<release>2.2.0beta3</release>
<api>2.2.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.apache.org/licenses/LICENSE-2.0">Apache V2
</license>
<notes>
This is third beta release of 2.2.0 SDK. It includes more features
to support upcoming Couchbase Server release, stability fixes and
smaller improvements.
Changes:
* PCBC-379: Support for Subdocument API
* PCBC-385: Support for Index Management
* PCBC-394: Expose CAS as a bytestring
* PCBC-392: Client announce its version in the server logs
* PCBC-397: Additive connection string options are not clobbered anymore
* PCBC-395: Type checks properly enforced for booleans
* Various minor changes
</notes>
</release>
<release>
<date>2016-04-19</date>
<version>
<release>2.2.0beta2</release>
<api>2.2.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.apache.org/licenses/LICENSE-2.0">Apache V2
</license>
<notes>
This is a minor update to the PHP 2.2.0 Beta SDK.
It includes fixes in package manifest and build script.
</notes>
</release>
<release>
<date>2016-04-19</date>
<version>
<release>2.2.0beta1</release>
<api>2.2.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.apache.org/licenses/LICENSE-2.0">Apache V2
</license>
<notes>
This is a major update to the PHP 2.2 SDK.
Changes:
* PCBC-360: refactoring to support PHP 7
* PCBC-376: reentrant transcoders
* PCBC-369: allow to use system fastlz
* PCBC-373: ensure view query values are properly url encoded
* Various minor changes
</notes>
</release>
<release>
<date>2015-11-04</date>
<version>
<release>2.1.0</release>
<api>2.1.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<notes>
This is a minor update to the PHP 2.1 SDK.
Changes:
* PCBC-356: Added support for N1QL prepared statements.
* PCBC-363: Fix issue related to passing invalid ID arguments.
* PCBC-366: Correct issue with legacy transcoder compression.
* Various minor changes
</notes>
</release>
<release>
<date>2014-04-28</date>
<version>
<release>2.0.0dp1</release>
<api>2.0.0dp1</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<notes>
First developer preview release of 2.0 version of PHP client.
</notes>
</release>
<release>
<date>2014-06-24</date>
<version>
<release>2.0.0dp2</release>
<api>2.0.0dp2</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<notes>
This is a minor update to the existing PHP 2.0 developer
preview.
New features in a nutshell:
* Cluster constructor now accepts a Couchbase Connection String.
* Support for cross-SDK compatible data-type flags.
* Client-side support for SSL connections.
</notes>
</release>
<release>
<date>2014-08-21</date>
<version>
<release>2.0.0beta</release>
<api>2.0.0beta</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<notes>
This is a minor update to the existing PHP 2.0 developer preview
2.
Changes:
* Added uncommited by stable management APIs.
* Made minor changes to various methods to allow easier use.
</notes>
</release>
<release>
<date>2014-09-16</date>
<version>
<release>2.0.0beta2</release>
<api>2.0.0beta2</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<notes>
This is a minor update to the existing PHP 2.0 beta.
Changes:
* Added support for cross-sdk data storage/retrieval.
* Added method to debug generated view queries.
* Fixed numerous minor bugs since beta.
</notes>
</release>
<release>
<date>2014-09-19</date>
<version>
<release>2.0.0</release>
<api>2.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<notes>
This is the first GA release of the new 2.0 PHP SDK.
No changes since release 2.0.0beta2.
</notes>
</release>
<release>
<date>2014-11-04</date>
<version>
<release>2.0.1</release>
<api>2.0.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<notes>
This is a patch update to the PHP 2.0 SDK.
Changes:
* PCBC-303: Allow JSON decoding as associative array.
* Added missing append/prepend forwarders.
* Fixed various issues with query creation and execution.
* Corrected various build issues.
</notes>
</release>
<release>
<date>2014-12-02</date>
<version>
<release>2.0.2</release>
<api>2.0.2</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<notes>
This is a patch update to the PHP 2.0 SDK.
Changes:
* PCBC-310: Corrected segfault occuring in some cases when
running under Apache and IIS.
* Updated PHP script executer to provide accurate error
information in Exception stack traces.
* Refactored code base for better maintainability.
</notes>
</release>
<release>
<date>2015-01-05</date>
<version>
<release>2.0.3</release>
<api>2.0.3</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<notes>
This is a patch update to the PHP 2.0 SDK.
Changes:
* PCBC-318: Fix append/prepend operations failing on new libcouchbase.
* PCBC-319: Correct segfault when using persist_to/replicate_to.
* Corrected typo in N1QL query interface.
</notes>
</release>
<release>
<date>2015-02-03</date>
<version>
<release>2.0.4</release>
<api>2.0.4</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<notes>
This is a patch update to the PHP 2.0 SDK.
Changes:
* PCBC-321: Corrected issue when passing incorrect option parameter type.
* Corrected issue related to setting timeouts.
* PCBC-317: Updated N1QL querying to support DP4.
* Fixed issue with design document management methods.
</notes>
</release>
<release>
<date>2015-03-03</date>
<version>
<release>2.0.5</release>
<api>2.0.5</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<notes>
This is a patch update to the PHP 2.0 SDK.
Changes:
* Orphan: Corrected issue where durability checking may not propagate errors.
* PCBC-327: group_level semantics now support server 3.x.
* Orphan: Corrected issue with some ViewQuery methods.
* PCBC-326: Zero-length strings no longer decode as NULL.
</notes>
</release>
<release>
<date>2015-04-07</date>
<version>
<release>2.0.6</release>
<api>2.0.6</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<notes>
This is a patch update to the PHP 2.0 SDK.
Changes:
* PCBC-331: CouchbaseBucketManager now has a flush operation to clear a bucket.
* Orphan: Minor fix to view management return values.
* Orphan: ViewQuery::group_level now can be chained as expected.
* PCBC-334: PHP 5.4 transcoder compatibility issues have been fixed.
* PHP 5.3 support has been deprecated and PHP 5.6 is now fully supported.
* Corrected various memory leaks and segfaults.
</notes>
</release>
<release>
<date>2015-04-22</date>
<version>
<release>2.0.7</release>
<api>2.0.7</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<notes>
This is a patch update to the PHP 2.0 SDK.
Changes:
* PCBC-339: Add support for using N1QL with CB Server 4.0.0.
* PCBC-343: Added missing touch method to CouchbaseBucket.
</notes>
</release>
<release>
<date>2015-11-04</date>
<version>
<release>2.1.0</release>
<api>2.1.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<notes>
This is a minor update to the PHP SDK.
Changes:
* PCBC-356: Added support for N1QL prepared statements.
* PCBC-363: Fix issue related to passing invalid ID arguments.
* PCBC-366: Correct issue with legacy transcoder compression.
* Various minor changes
</notes>
</release>
</changelog>
</package>