Skip to content

Commit d87430d

Browse files
authoredFeb 3, 2025
Preparing for 2.4.0 release (#277)
Signed-off-by: Kim Pepper <kim@pepper.id.au>
1 parent 672a6a1 commit d87430d

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed
 

‎CHANGELOG.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
44

5-
## [Unreleased]
5+
## [2.4.0]
66
### Added
77
- Generate endpoints from OpenSearch API Specification ([#194](https://github.com/opensearch-project/opensearch-php/pull/194))
88
- Added workflow for automated API update using OpenSearch API specification ([#209](https://github.com/opensearch-project/opensearch-php/pull/209))
@@ -44,8 +44,6 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
4444
- Updated opensearch-php APIs to reflect [opensearch-api-specification@07e329e](https://github.com/opensearch-project/opensearch-api-specification/commit/07e329e8d01fd0576de6a0a3c35412fd5a9163db)
4545
- Updated opensearch-php APIs to reflect [opensearch-api-specification@1db1840](https://github.com/opensearch-project/opensearch-api-specification/commit/1db184063a463c5180a2cc824b1efc1aeebfd5eb)
4646
- Updated opensearch-php APIs to reflect [opensearch-api-specification@cb320b5](https://github.com/opensearch-project/opensearch-api-specification/commit/cb320b5482551c4f28afa26ff0d1653332699722)
47-
### Security
48-
### Dependencies
4947

5048
## [2.3.0]
5149

@@ -75,7 +73,8 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
7573
- Fixed basic authentication being overridden by connection params in `ClientBuilder` ([#160](https://github.com/opensearch-project/opensearch-php/pull/160))
7674
- Fixed PHP warning in `Connection::tryDeserializeError()` for some error responses ([#167](https://github.com/opensearch-project/opensearch-php/issues/167))
7775

78-
[Unreleased]: https://github.com/opensearch-project/opensearch-php/compare/2.3.0...main
76+
[Unreleased]: https://github.com/opensearch-project/opensearch-php/compare/2.4.0...main
77+
[2.4.0]: https://github.com/opensearch-project/opensearch-php/compare/2.3.0...2.4.0
7978
[2.3.0]: https://github.com/opensearch-project/opensearch-php/compare/2.2.0...2.3.0
8079
[2.2.0]: https://github.com/opensearch-project/opensearch-php/compare/2.1.0...2.2.0
8180
[2.1.0]: https://github.com/opensearch-project/opensearch-php/compare/2.0.3...2.1.0

‎src/OpenSearch/Client.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
*/
6666
class Client
6767
{
68-
public const VERSION = '2.3.1';
68+
public const VERSION = '2.4.0';
6969

7070
/**
7171
* @var Transport

‎util/template/client-class

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ use OpenSearch\Namespaces\NamespaceBuilderInterface;
3434
class Client
3535
{
3636

37-
const VERSION = '2.3.1';
37+
const VERSION = '2.4.0';
3838

3939
/**
4040
* @var Transport

0 commit comments

Comments
 (0)