Skip to content

Commit 08494d0

Browse files
committed
Release 2.4.5
Change-Id: I97eaecec4be4d9b7db1f69f84746dd2f18172400 Reviewed-on: http://review.couchbase.org/90750 Tested-by: Build Bot <[email protected]> Reviewed-by: Sergey Avseyev <[email protected]>
1 parent 5f7755b commit 08494d0

File tree

2 files changed

+21
-10
lines changed

2 files changed

+21
-10
lines changed

package.xml

Lines changed: 20 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,16 @@
1111
<description>
1212
The PHP client library provides fast access to documents stored in a Couchbase Server.
1313
</description>
14-
<lead>
15-
<name>Brett Lawson</name>
16-
<user>brett19</user>
17-
<email>[email protected]</email>
18-
<active>no</active>
19-
</lead>
2014
<lead>
2115
<name>Sergey Avseyev</name>
2216
<user>avsej</user>
2317
<email>[email protected]</email>
2418
<active>yes</active>
2519
</lead>
2620

27-
<date>2018-02-12</date>
21+
<date>2018-03-09</date>
2822
<version>
29-
<release>2.4.4</release>
23+
<release>2.4.5</release>
3024
<api>2.3.0</api>
3125
</version>
3226
<stability>
@@ -36,7 +30,8 @@
3630
<license uri="http://www.apache.org/licenses/LICENSE-2.0">Apache V2
3731
</license>
3832
<notes>
39-
* PCBC-508: Add support for FTS advanced sorting
33+
* PCBC-527: Initial tracing implementation. The extension checks if libcouchbase has tracing support, and sets up hooks for fetch/persist operations to report encoding/decoding times. This functionality is preview and is not enabled by default.
34+
* PCBC-519: Implement log redaction. When `log_redaction=on` is specified in the connection string, the library will wrap sensitive data in the logs in special tags, which can be processed by the `cblogredaction` tool from the server distribution.
4035
</notes>
4136
<contents>
4237
<dir name="/">
@@ -185,6 +180,22 @@
185180
<providesextension>couchbase</providesextension>
186181
<extsrcrelease/>
187182
<changelog>
183+
<release>
184+
<date>2018-02-12</date>
185+
<version>
186+
<release>2.4.4</release>
187+
<api>2.3.0</api>
188+
</version>
189+
<stability>
190+
<release>stable</release>
191+
<api>stable</api>
192+
</stability>
193+
<license uri="http://www.apache.org/licenses/LICENSE-2.0">Apache V2
194+
</license>
195+
<notes>
196+
* PCBC-508: Add support for FTS advanced sorting
197+
</notes>
198+
</release>
188199
<release>
189200
<date>2018-01-04</date>
190201
<version>

php_couchbase.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#ifndef PHP_COUCHBASE_H_
1818
#define PHP_COUCHBASE_H_
1919

20-
#define PHP_COUCHBASE_VERSION "2.4.4"
20+
#define PHP_COUCHBASE_VERSION "2.4.5"
2121
#define PHP_COUCHBASE_EXTNAME "couchbase"
2222

2323
extern zend_module_entry couchbase_module_entry;

0 commit comments

Comments
 (0)