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.4 #186

Merged
merged 1 commit into from
Oct 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 CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ For more interactive discussions we have `#sdks` channel on our [Discord](https:

The simplest way to help is to report bugs or request new features.

We use Jira for issue tracking: [https://issues.couchbase.com/projects/PCBC/](https://issues.couchbase.com/projects/PCBC/)
We use Jira for issue tracking: [https://jira.issues.couchbase.com/projects/PCBC/](https://jira.issues.couchbase.com/projects/PCBC/)

To create an issue, or comment on an existing issue, you'll need to sign up
for an account. It's quick and painless (or if it's not, click on the
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

[![license](https://img.shields.io/github/license/couchbaselabs/couchbase-php-client?color=brightgreen)](https://opensource.org/licenses/Apache-2.0)

This repository contains source code of the Couchbase PHP SDK.
This repository contains source code of the Couchbase PHP SDK.

## Support and Feedback

If you find an issue, please file it in [our JIRA issue tracker](https://couchbase.com/issues/browse/PCBC). Also you are
If you find an issue, please file it in [our JIRA issue tracker](https://jira.issues.couchbase.com/browse/PCBC). Also you are
always welcome on [our forum](https://forums.couchbase.com/c/php-sdk) and [Discord](https://discord.com/invite/sQ5qbPZuTh).


Expand Down
36 changes: 32 additions & 4 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-07-24</date>
<date>2024-10-22</date>
<version>
<release>4.2.3</release>
<release>4.2.4</release>
<api>4.2.1</api>
</version>
<stability>
Expand All @@ -27,8 +27,19 @@
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
* 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>
<contents>
</contents>
Expand All @@ -45,6 +56,23 @@
<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-07-24</date>
<version>
Expand Down
1 change: 1 addition & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ endif()
target_include_directories(couchbase SYSTEM PRIVATE
${PHP_INCLUDE_DIRS}
${PROJECT_BINARY_DIR}/generated
${PROJECT_BINARY_DIR}/deps/couchbase-cxx-client/generated
${PROJECT_SOURCE_DIR}/deps/couchbase-cxx-client
${PROJECT_SOURCE_DIR}/deps/couchbase-cxx-client/third_party/cxx_function
${PROJECT_SOURCE_DIR}/deps/couchbase-cxx-client/third_party/expected/include)
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 @@ -19,7 +19,7 @@

#include <zend_modules.h>

#define PHP_COUCHBASE_VERSION "4.2.3"
#define PHP_COUCHBASE_VERSION "4.2.4"
#define PHP_COUCHBASE_EXTENSION_NAME "couchbase"

#ifdef __cplusplus
Expand Down
Loading