Skip to content

Commit

Permalink
chore: prepare release 2023-04-20 (#1479)
Browse files Browse the repository at this point in the history
  • Loading branch information
shortcuts authored Apr 20, 2023
1 parent b45a459 commit b13204d
Show file tree
Hide file tree
Showing 10 changed files with 41 additions and 20 deletions.
5 changes: 5 additions & 0 deletions clients/algoliasearch-client-go/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [4.0.0-alpha.6](https://github.com/algolia/algoliasearch-client-go/compare/4.0.0-alpha.5...4.0.0-alpha.6)

- [ad21cc75](https://github.com/algolia/api-clients-automation/commit/ad21cc75) feat(specs): add predict segment size to responses [PRED-1277] ([#1478](https://github.com/algolia/api-clients-automation/pull/1478)) by [@bengreenbank](https://github.com/bengreenbank/)
- [13e7d170](https://github.com/algolia/api-clients-automation/commit/13e7d170) feat(specs): add `neuralSearch` options ([#1474](https://github.com/algolia/api-clients-automation/pull/1474)) by [@shortcuts](https://github.com/shortcuts/)

## [4.0.0-alpha.5](https://github.com/algolia/algoliasearch-client-go/compare/4.0.0-alpha.4...4.0.0-alpha.5)

- [9a65a533](https://github.com/algolia/api-clients-automation/commit/9a65a533) feat(specs): add `size` to predict segment response ([#1434](https://github.com/algolia/api-clients-automation/pull/1434)) by [@bengreenbank](https://github.com/bengreenbank/)
Expand Down
5 changes: 5 additions & 0 deletions clients/algoliasearch-client-java-2/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## [4.0.0-SNAPSHOT](https://github.com/algolia/algoliasearch-client-java-2/compare/4.0.0-SNAPSHOT...4.0.0-SNAPSHOT)

- [ad21cc75](https://github.com/algolia/api-clients-automation/commit/ad21cc75) feat(specs): add predict segment size to responses [PRED-1277] ([#1478](https://github.com/algolia/api-clients-automation/pull/1478)) by [@bengreenbank](https://github.com/bengreenbank/)
- [13e7d170](https://github.com/algolia/api-clients-automation/commit/13e7d170) feat(specs): add `neuralSearch` options ([#1474](https://github.com/algolia/api-clients-automation/pull/1474)) by [@shortcuts](https://github.com/shortcuts/)

## [4.0.0-SNAPSHOT](https://github.com/algolia/algoliasearch-client-java-2/compare/4.0.0-SNAPSHOT...4.0.0-SNAPSHOT)

- [9a65a533](https://github.com/algolia/api-clients-automation/commit/9a65a533) feat(specs): add `size` to predict segment response ([#1434](https://github.com/algolia/api-clients-automation/pull/1434)) by [@bengreenbank](https://github.com/bengreenbank/)
- [0ed9eb22](https://github.com/algolia/api-clients-automation/commit/0ed9eb22) fix(specs): add `input` in GET tasks ([#1472](https://github.com/algolia/api-clients-automation/pull/1472)) by [@shortcuts](https://github.com/shortcuts/)
- [692aa2d8](https://github.com/algolia/api-clients-automation/commit/692aa2d8) fix(specs): add transform event type ([#1470](https://github.com/algolia/api-clients-automation/pull/1470)) by [@millotp](https://github.com/millotp/)
Expand Down
6 changes: 6 additions & 0 deletions clients/algoliasearch-client-javascript/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [5.0.0-alpha.59](https://github.com/algolia/algoliasearch-client-javascript/compare/5.0.0-alpha.58...5.0.0-alpha.59)

- [ad21cc75](https://github.com/algolia/api-clients-automation/commit/ad21cc75) feat(specs): add predict segment size to responses [PRED-1277] ([#1478](https://github.com/algolia/api-clients-automation/pull/1478)) by [@bengreenbank](https://github.com/bengreenbank/)
- [13e7d170](https://github.com/algolia/api-clients-automation/commit/13e7d170) feat(specs): add `neuralSearch` options ([#1474](https://github.com/algolia/api-clients-automation/pull/1474)) by [@shortcuts](https://github.com/shortcuts/)
- [fb9dc333](https://github.com/algolia/api-clients-automation/commit/fb9dc333) fix(javascript): remove `mode` from Fetch requester ([#1475](https://github.com/algolia/api-clients-automation/pull/1475)) by [@shortcuts](https://github.com/shortcuts/)

## [5.0.0-alpha.58](https://github.com/algolia/algoliasearch-client-javascript/compare/5.0.0-alpha.57...5.0.0-alpha.58)

- [9a65a533](https://github.com/algolia/api-clients-automation/commit/9a65a533) feat(specs): add `size` to predict segment response ([#1434](https://github.com/algolia/api-clients-automation/pull/1434)) by [@bengreenbank](https://github.com/bengreenbank/)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@algolia/client-common",
"version": "5.0.0-alpha.58",
"version": "5.0.0-alpha.59",
"description": "Common package for the Algolia JavaScript API client.",
"repository": "algolia/algoliasearch-client-javascript",
"license": "MIT",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@algolia/requester-browser-xhr",
"version": "5.0.0-alpha.58",
"version": "5.0.0-alpha.59",
"description": "Promise-based request library for browser using xhr.",
"repository": "algolia/algoliasearch-client-javascript",
"license": "MIT",
Expand All @@ -19,7 +19,7 @@
"test": "jest"
},
"dependencies": {
"@algolia/client-common": "5.0.0-alpha.58"
"@algolia/client-common": "5.0.0-alpha.59"
},
"devDependencies": {
"@types/jest": "29.5.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@algolia/requester-fetch",
"version": "5.0.0-alpha.58",
"version": "5.0.0-alpha.59",
"description": "Promise-based request library using Fetch.",
"repository": "algolia/algoliasearch-client-javascript",
"license": "MIT",
Expand All @@ -19,7 +19,7 @@
"test": "jest"
},
"dependencies": {
"@algolia/client-common": "5.0.0-alpha.58"
"@algolia/client-common": "5.0.0-alpha.59"
},
"devDependencies": {
"@types/jest": "29.5.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@algolia/requester-node-http",
"version": "5.0.0-alpha.58",
"version": "5.0.0-alpha.59",
"description": "Promise-based request library for node using the native http module.",
"repository": "algolia/algoliasearch-client-javascript",
"license": "MIT",
Expand All @@ -19,7 +19,7 @@
"test": "jest"
},
"dependencies": {
"@algolia/client-common": "5.0.0-alpha.58"
"@algolia/client-common": "5.0.0-alpha.59"
},
"devDependencies": {
"@types/jest": "29.5.0",
Expand Down
5 changes: 5 additions & 0 deletions clients/algoliasearch-client-php/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [4.0.0-alpha.57](https://github.com/algolia/algoliasearch-client-php/compare/4.0.0-alpha.56...4.0.0-alpha.57)

- [ad21cc75](https://github.com/algolia/api-clients-automation/commit/ad21cc75) feat(specs): add predict segment size to responses [PRED-1277] ([#1478](https://github.com/algolia/api-clients-automation/pull/1478)) by [@bengreenbank](https://github.com/bengreenbank/)
- [13e7d170](https://github.com/algolia/api-clients-automation/commit/13e7d170) feat(specs): add `neuralSearch` options ([#1474](https://github.com/algolia/api-clients-automation/pull/1474)) by [@shortcuts](https://github.com/shortcuts/)

## [4.0.0-alpha.56](https://github.com/algolia/algoliasearch-client-php/compare/4.0.0-alpha.55...4.0.0-alpha.56)

- [9a65a533](https://github.com/algolia/api-clients-automation/commit/9a65a533) feat(specs): add `size` to predict segment response ([#1434](https://github.com/algolia/api-clients-automation/pull/1434)) by [@bengreenbank](https://github.com/bengreenbank/)
Expand Down
6 changes: 3 additions & 3 deletions config/clients.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"folder": "clients/algoliasearch-client-javascript",
"npmNamespace": "@algolia",
"gitRepoId": "algoliasearch-client-javascript",
"utilsPackageVersion": "5.0.0-alpha.58",
"utilsPackageVersion": "5.0.0-alpha.59",
"modelFolder": "model",
"apiFolder": "src",
"customGenerator": "algolia-javascript",
Expand All @@ -27,7 +27,7 @@
"php": {
"folder": "clients/algoliasearch-client-php",
"gitRepoId": "algoliasearch-client-php",
"packageVersion": "4.0.0-alpha.56",
"packageVersion": "4.0.0-alpha.57",
"modelFolder": "lib/Model",
"customGenerator": "algolia-php",
"apiFolder": "lib/Api",
Expand All @@ -39,7 +39,7 @@
"go": {
"folder": "clients/algoliasearch-client-go",
"gitRepoId": "algoliasearch-client-go",
"packageVersion": "4.0.0-alpha.5",
"packageVersion": "4.0.0-alpha.6",
"modelFolder": "algolia/models",
"apiFolder": "algolia/api",
"customGenerator": "algolia-go",
Expand Down
20 changes: 10 additions & 10 deletions config/openapitools.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,63 +6,63 @@
"output": "#{cwd}/clients/algoliasearch-client-javascript/packages/algoliasearch",
"reservedWordsMappings": "queryParameters=queryParameters,requestOptions=requestOptions,delete=delete",
"additionalProperties": {
"packageVersion": "5.0.0-alpha.58"
"packageVersion": "5.0.0-alpha.59"
}
},
"javascript-search": {
"output": "#{cwd}/clients/algoliasearch-client-javascript/packages/client-search",
"reservedWordsMappings": "queryParameters=queryParameters,requestOptions=requestOptions,delete=delete",
"additionalProperties": {
"packageVersion": "5.0.0-alpha.58"
"packageVersion": "5.0.0-alpha.59"
}
},
"javascript-recommend": {
"output": "#{cwd}/clients/algoliasearch-client-javascript/packages/recommend",
"reservedWordsMappings": "queryParameters=queryParameters,delete=delete",
"additionalProperties": {
"packageVersion": "5.0.0-alpha.58"
"packageVersion": "5.0.0-alpha.59"
}
},
"javascript-personalization": {
"output": "#{cwd}/clients/algoliasearch-client-javascript/packages/client-personalization",
"additionalProperties": {
"packageVersion": "5.0.0-alpha.58"
"packageVersion": "5.0.0-alpha.59"
}
},
"javascript-analytics": {
"output": "#{cwd}/clients/algoliasearch-client-javascript/packages/client-analytics",
"additionalProperties": {
"packageVersion": "5.0.0-alpha.58"
"packageVersion": "5.0.0-alpha.59"
}
},
"javascript-insights": {
"output": "#{cwd}/clients/algoliasearch-client-javascript/packages/client-insights",
"additionalProperties": {
"packageVersion": "5.0.0-alpha.58"
"packageVersion": "5.0.0-alpha.59"
}
},
"javascript-abtesting": {
"output": "#{cwd}/clients/algoliasearch-client-javascript/packages/client-abtesting",
"additionalProperties": {
"packageVersion": "5.0.0-alpha.58"
"packageVersion": "5.0.0-alpha.59"
}
},
"javascript-query-suggestions": {
"output": "#{cwd}/clients/algoliasearch-client-javascript/packages/client-query-suggestions",
"additionalProperties": {
"packageVersion": "5.0.0-alpha.58"
"packageVersion": "5.0.0-alpha.59"
}
},
"javascript-predict": {
"output": "#{cwd}/clients/algoliasearch-client-javascript/packages/predict",
"additionalProperties": {
"packageVersion": "1.0.0-alpha.58"
"packageVersion": "1.0.0-alpha.59"
}
},
"javascript-ingestion": {
"output": "#{cwd}/clients/algoliasearch-client-javascript/packages/ingestion",
"additionalProperties": {
"packageVersion": "1.0.0-alpha.32"
"packageVersion": "1.0.0-alpha.33"
}
},
"java-search": {
Expand Down

0 comments on commit b13204d

Please sign in to comment.