Skip to content

Commit 833d005

Browse files
chore: release 4.4.0
Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Clément Vannicatte <[email protected]>
1 parent 58c3703 commit 833d005

13 files changed

+23
-12
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## [4.4.0](https://github.com/algolia/algoliasearch-client-php/compare/4.3.5...4.4.0)
2+
3+
- [a254f03ef](https://github.com/algolia/api-clients-automation/commit/a254f03ef) fix(php): assign value when normalising request options ([#3659](https://github.com/algolia/api-clients-automation/pull/3659)) by [@aykutersoy](https://github.com/aykutersoy/)
4+
- [2c65a8d11](https://github.com/algolia/api-clients-automation/commit/2c65a8d11) feat(clients): helper to switch API key in use ([#3616](https://github.com/algolia/api-clients-automation/pull/3616)) by [@Fluf22](https://github.com/Fluf22/)
5+
- [050501501](https://github.com/algolia/api-clients-automation/commit/050501501) fix(php): add PHPStan for static code analysis ([#3655](https://github.com/algolia/api-clients-automation/pull/3655)) by [@millotp](https://github.com/millotp/)
6+
- [365030a81](https://github.com/algolia/api-clients-automation/commit/365030a81) fix(php): put banner after php tag ([#3653](https://github.com/algolia/api-clients-automation/pull/3653)) by [@millotp](https://github.com/millotp/)
7+
- [f126366dc](https://github.com/algolia/api-clients-automation/commit/f126366dc) fix(specs): note on Analytics API server ([#3650](https://github.com/algolia/api-clients-automation/pull/3650)) by [@kai687](https://github.com/kai687/)
8+
- [3d02b3164](https://github.com/algolia/api-clients-automation/commit/3d02b3164) feat(clients): add helper to check if an index exists ([#3646](https://github.com/algolia/api-clients-automation/pull/3646)) by [@millotp](https://github.com/millotp/)
9+
- [a36746d65](https://github.com/algolia/api-clients-automation/commit/a36746d65) fix(specs): note on insights API server ([#3649](https://github.com/algolia/api-clients-automation/pull/3649)) by [@kai687](https://github.com/kai687/)
10+
- [1f53716c6](https://github.com/algolia/api-clients-automation/commit/1f53716c6) fix(specs): don't extend $ref objects ([#3623](https://github.com/algolia/api-clients-automation/pull/3623)) by [@kai687](https://github.com/kai687/)
11+
112
## [4.3.5](https://github.com/algolia/algoliasearch-client-php/compare/4.3.4...4.3.5)
213

314
- [a9405b168](https://github.com/algolia/api-clients-automation/commit/a9405b168) fix(specs): usage api ([#3624](https://github.com/algolia/api-clients-automation/pull/3624)) by [@kai687](https://github.com/kai687/)

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "algolia/algoliasearch-client-php",
3-
"version": "4.3.5",
3+
"version": "4.4.0",
44
"description": "API powering the features of Algolia.",
55
"keywords": [
66
"openapitools",

lib/Algolia.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
final class Algolia
1616
{
17-
public const VERSION = '4.3.5';
17+
public const VERSION = '4.4.0';
1818

1919
/**
2020
* Holds an instance of the simple cache repository (PSR-16).

lib/Api/AbtestingClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*/
2222
class AbtestingClient
2323
{
24-
public const VERSION = '4.3.5';
24+
public const VERSION = '4.4.0';
2525

2626
/**
2727
* @var ApiWrapperInterface

lib/Api/AnalyticsClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
*/
2020
class AnalyticsClient
2121
{
22-
public const VERSION = '4.3.5';
22+
public const VERSION = '4.4.0';
2323

2424
/**
2525
* @var ApiWrapperInterface

lib/Api/IngestionClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
*/
4141
class IngestionClient
4242
{
43-
public const VERSION = '4.3.5';
43+
public const VERSION = '4.4.0';
4444

4545
/**
4646
* @var ApiWrapperInterface

lib/Api/InsightsClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*/
2121
class InsightsClient
2222
{
23-
public const VERSION = '4.3.5';
23+
public const VERSION = '4.4.0';
2424

2525
/**
2626
* @var ApiWrapperInterface

lib/Api/MonitoringClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
*/
2020
class MonitoringClient
2121
{
22-
public const VERSION = '4.3.5';
22+
public const VERSION = '4.4.0';
2323

2424
/**
2525
* @var ApiWrapperInterface

lib/Api/PersonalizationClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*/
2121
class PersonalizationClient
2222
{
23-
public const VERSION = '4.3.5';
23+
public const VERSION = '4.4.0';
2424

2525
/**
2626
* @var ApiWrapperInterface

lib/Api/QuerySuggestionsClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*/
2222
class QuerySuggestionsClient
2323
{
24-
public const VERSION = '4.3.5';
24+
public const VERSION = '4.4.0';
2525

2626
/**
2727
* @var ApiWrapperInterface

0 commit comments

Comments
 (0)