From 046b438e9356d05a2f22f9d88ce3b9f748d4df38 Mon Sep 17 00:00:00 2001 From: algolia-bot Date: Wed, 21 Aug 2024 15:45:59 +0000 Subject: [PATCH] chore: release 4.2.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: algolia-bot Co-authored-by: Clément Vannicatte --- CHANGELOG.md | 11 +++++++++++ composer.json | 2 +- lib/Algolia.php | 2 +- lib/Api/AbtestingClient.php | 2 +- lib/Api/AnalyticsClient.php | 2 +- lib/Api/IngestionClient.php | 2 +- lib/Api/InsightsClient.php | 2 +- lib/Api/MonitoringClient.php | 2 +- lib/Api/PersonalizationClient.php | 2 +- lib/Api/QuerySuggestionsClient.php | 2 +- lib/Api/RecommendClient.php | 2 +- lib/Api/SearchClient.php | 2 +- lib/Api/UsageClient.php | 2 +- 13 files changed, 23 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a6df8442..cce87c9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## [4.2.0](https://github.com/algolia/algoliasearch-client-php/compare/4.1.0...4.2.0) + +- [4cbbce55c](https://github.com/algolia/api-clients-automation/commit/4cbbce55c) fix(clients): highlight and snippet results e2e ([#3567](https://github.com/algolia/api-clients-automation/pull/3567)) by [@shortcuts](https://github.com/shortcuts/) +- [7c7de04ab](https://github.com/algolia/api-clients-automation/commit/7c7de04ab) fix(specs): another wrong link ([#3570](https://github.com/algolia/api-clients-automation/pull/3570)) by [@kai687](https://github.com/kai687/) +- [f38a9ef12](https://github.com/algolia/api-clients-automation/commit/f38a9ef12) chore(specs): breaking change method names mapping table ([#3568](https://github.com/algolia/api-clients-automation/pull/3568)) by [@shortcuts](https://github.com/shortcuts/) +- [d0e4f4ed4](https://github.com/algolia/api-clients-automation/commit/d0e4f4ed4) feat(php): waitForTasks param for various SearchClient methods ([#3565](https://github.com/algolia/api-clients-automation/pull/3565)) by [@aykutersoy](https://github.com/aykutersoy/) +- [fbe8a2356](https://github.com/algolia/api-clients-automation/commit/fbe8a2356) fix(php): native return types for AbstractModel methods ([#3563](https://github.com/algolia/api-clients-automation/pull/3563)) by [@aykutersoy](https://github.com/aykutersoy/) +- [9dedfc90f](https://github.com/algolia/api-clients-automation/commit/9dedfc90f) fix(clients): mention `main` branch instead of `master` ([#3566](https://github.com/algolia/api-clients-automation/pull/3566)) by [@shortcuts](https://github.com/shortcuts/) +- [0e5ffb1e8](https://github.com/algolia/api-clients-automation/commit/0e5ffb1e8) fix(specs): broken link ([#3559](https://github.com/algolia/api-clients-automation/pull/3559)) by [@kai687](https://github.com/kai687/) +- [675fc78d0](https://github.com/algolia/api-clients-automation/commit/675fc78d0) fix(php): Deprecation warning fix for PHP 8.1+ ([#3562](https://github.com/algolia/api-clients-automation/pull/3562)) by [@aykutersoy](https://github.com/aykutersoy/) + ## [4.1.0](https://github.com/algolia/algoliasearch-client-php/compare/4.0.2...4.1.0) - [d53060d96](https://github.com/algolia/api-clients-automation/commit/d53060d96) feat(specs): add /schedule endpoint ([#3350](https://github.com/algolia/api-clients-automation/pull/3350)) by [@febeck](https://github.com/febeck/) diff --git a/composer.json b/composer.json index 0e54a9fb..66c28192 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "algolia/algoliasearch-client-php", - "version": "4.1.0", + "version": "4.2.0", "description": "API powering the features of Algolia.", "keywords": [ "openapitools", diff --git a/lib/Algolia.php b/lib/Algolia.php index 6e413e68..1c36b538 100644 --- a/lib/Algolia.php +++ b/lib/Algolia.php @@ -14,7 +14,7 @@ final class Algolia { - public const VERSION = '4.1.0'; + public const VERSION = '4.2.0'; /** * Holds an instance of the simple cache repository (PSR-16). diff --git a/lib/Api/AbtestingClient.php b/lib/Api/AbtestingClient.php index ce50eab3..ba97595c 100644 --- a/lib/Api/AbtestingClient.php +++ b/lib/Api/AbtestingClient.php @@ -21,7 +21,7 @@ */ class AbtestingClient { - public const VERSION = '4.1.0'; + public const VERSION = '4.2.0'; /** * @var ApiWrapperInterface diff --git a/lib/Api/AnalyticsClient.php b/lib/Api/AnalyticsClient.php index 9b6ea79f..814f39bf 100644 --- a/lib/Api/AnalyticsClient.php +++ b/lib/Api/AnalyticsClient.php @@ -19,7 +19,7 @@ */ class AnalyticsClient { - public const VERSION = '4.1.0'; + public const VERSION = '4.2.0'; /** * @var ApiWrapperInterface diff --git a/lib/Api/IngestionClient.php b/lib/Api/IngestionClient.php index ebb3a859..15ed7051 100644 --- a/lib/Api/IngestionClient.php +++ b/lib/Api/IngestionClient.php @@ -40,7 +40,7 @@ */ class IngestionClient { - public const VERSION = '4.1.0'; + public const VERSION = '4.2.0'; /** * @var ApiWrapperInterface diff --git a/lib/Api/InsightsClient.php b/lib/Api/InsightsClient.php index ece166b1..94e52a91 100644 --- a/lib/Api/InsightsClient.php +++ b/lib/Api/InsightsClient.php @@ -20,7 +20,7 @@ */ class InsightsClient { - public const VERSION = '4.1.0'; + public const VERSION = '4.2.0'; /** * @var ApiWrapperInterface diff --git a/lib/Api/MonitoringClient.php b/lib/Api/MonitoringClient.php index f0de9224..65dae178 100644 --- a/lib/Api/MonitoringClient.php +++ b/lib/Api/MonitoringClient.php @@ -19,7 +19,7 @@ */ class MonitoringClient { - public const VERSION = '4.1.0'; + public const VERSION = '4.2.0'; /** * @var ApiWrapperInterface diff --git a/lib/Api/PersonalizationClient.php b/lib/Api/PersonalizationClient.php index 404335bc..b3832a4c 100644 --- a/lib/Api/PersonalizationClient.php +++ b/lib/Api/PersonalizationClient.php @@ -20,7 +20,7 @@ */ class PersonalizationClient { - public const VERSION = '4.1.0'; + public const VERSION = '4.2.0'; /** * @var ApiWrapperInterface diff --git a/lib/Api/QuerySuggestionsClient.php b/lib/Api/QuerySuggestionsClient.php index f9bbcc95..8cf7e937 100644 --- a/lib/Api/QuerySuggestionsClient.php +++ b/lib/Api/QuerySuggestionsClient.php @@ -21,7 +21,7 @@ */ class QuerySuggestionsClient { - public const VERSION = '4.1.0'; + public const VERSION = '4.2.0'; /** * @var ApiWrapperInterface diff --git a/lib/Api/RecommendClient.php b/lib/Api/RecommendClient.php index 26cb1b0f..6b8a049f 100644 --- a/lib/Api/RecommendClient.php +++ b/lib/Api/RecommendClient.php @@ -21,7 +21,7 @@ */ class RecommendClient { - public const VERSION = '4.1.0'; + public const VERSION = '4.2.0'; /** * @var ApiWrapperInterface diff --git a/lib/Api/SearchClient.php b/lib/Api/SearchClient.php index 8a6f4879..e27ea73b 100644 --- a/lib/Api/SearchClient.php +++ b/lib/Api/SearchClient.php @@ -47,7 +47,7 @@ */ class SearchClient { - public const VERSION = '4.1.0'; + public const VERSION = '4.2.0'; /** * @var ApiWrapperInterface diff --git a/lib/Api/UsageClient.php b/lib/Api/UsageClient.php index a8bf65f3..1dfed146 100644 --- a/lib/Api/UsageClient.php +++ b/lib/Api/UsageClient.php @@ -19,7 +19,7 @@ */ class UsageClient { - public const VERSION = '4.1.0'; + public const VERSION = '4.2.0'; /** * @var ApiWrapperInterface