Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update meta for 4.2.5 #191

Merged
merged 1 commit into from
Nov 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Couchbase/ExtensionNamespaceResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

class ExtensionNamespaceResolver
{
const COUCHBASE_EXTENSION_VERSION = "4_2_4";
const COUCHBASE_EXTENSION_VERSION = "4_2_5";

public static function defineExtensionNamespace()
{
Expand Down
83 changes: 56 additions & 27 deletions package.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2024-10-22</date>
<date>2024-11-22</date>
<version>
<release>4.2.4</release>
<release>4.2.5</release>
<api>4.2.1</api>
</version>
<stability>
Expand All @@ -27,19 +27,16 @@
Enhancements
============

* PCBC-832: Management API - Analytics Management (#177).

* Core updated to 1.0.3. Release notes:
https://docs.couchbase.com/cxx-sdk/current/project-docs/sdk-release-notes.html#version-1-0-3-22-october-2024
* PCBC-1004: Insert ABI version tag into PHP extension namespace (#187).
At this moment this feature is optional and does not break existing ABI.
The extension namespace will become versioned by default since 4.3.0.

Fixes
=====

* PCBC-1009: do not use IS_RESOURCE in function signatures.

* PCBC-1010: use explicit nullable types where applicable to avoid deprecation warning in PHP 8.4.
* PCBC-975: Fix expiry with upsertMulti

* Fix SearchQuery API docs link in API reference.
* PCBC-1017: Update user agent generation
</notes>
<contents>
</contents>
Expand All @@ -56,23 +53,55 @@
<providesextension>couchbase</providesextension>
<extsrcrelease/>
<changelog>
<date>2024-07-24</date>
<version>
<release>4.2.3</release>
<api>4.2.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.apache.org/licenses/LICENSE-2.0">Apache V2</license>
<notes>
Enhancements
============

* Core updated to 1.0.1. Release notes:
https://docs.couchbase.com/cxx-sdk/current/project-docs/sdk-release-notes.html#version-1-0-1-22-august-2024
</notes>
<release>
<date>2024-10-22</date>
<version>
<release>4.2.4</release>
<api>4.2.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.apache.org/licenses/LICENSE-2.0">Apache V2</license>
<notes>
Enhancements
============

* PCBC-832: Management API - Analytics Management (#177).

* Core updated to 1.0.3. Release notes:
https://docs.couchbase.com/cxx-sdk/current/project-docs/sdk-release-notes.html#version-1-0-3-22-october-2024

Fixes
=====

* PCBC-1009: do not use IS_RESOURCE in function signatures.

* PCBC-1010: use explicit nullable types where applicable to avoid deprecation warning in PHP 8.4.

* Fix SearchQuery API docs link in API reference.
</notes>
</release>
<release>
<date>2024-07-24</date>
<version>
<release>4.2.3</release>
<api>4.2.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.apache.org/licenses/LICENSE-2.0">Apache V2</license>
<notes>
Enhancements
============

* Core updated to 1.0.1. Release notes:
https://docs.couchbase.com/cxx-sdk/current/project-docs/sdk-release-notes.html#version-1-0-1-22-august-2024
</notes>
</release>
<release>
<date>2024-07-24</date>
<version>
Expand Down
2 changes: 1 addition & 1 deletion src/deps/couchbase-cxx-client
2 changes: 1 addition & 1 deletion src/php_couchbase.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#define PHP_COUCHBASE_EXTENSION_NAME "couchbase"
#endif

#define PHP_COUCHBASE_VERSION "4.2.4"
#define PHP_COUCHBASE_VERSION "4.2.5"

#ifdef __cplusplus
extern "C" {
Expand Down
Loading