Skip to content

Commit e9892d4

Browse files
committed
chore: prepare release 2022-07-05 [skip ci]
1 parent 9f79b81 commit e9892d4

File tree

8 files changed

+42
-18
lines changed

8 files changed

+42
-18
lines changed

clients/algoliasearch-client-java-2/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## [4.4.0-SNAPSHOT](https://github.com/algolia/algoliasearch-client-java-2/compare/4.3.0-SNAPSHOT...4.4.0-SNAPSHOT)
2+
3+
- [5a499849](https://github.com/algolia/api-clients-automation/commit/5a499849) fix(specs): add renderingContent to search response (#787) by [Pierre Millot]([email protected])
4+
- [23a72c39](https://github.com/algolia/api-clients-automation/commit/23a72c39) fix(specs): correct type for highlightResult and snippetResult (#783) by [Pierre Millot]([email protected])
5+
- [a11e84da](https://github.com/algolia/api-clients-automation/commit/a11e84da) fix(specs): fix missing params and types (#772) by [@shortcuts](https://github.com/shortcuts/)
6+
- [bc14a8c5](https://github.com/algolia/api-clients-automation/commit/bc14a8c5) feat(specs): Add tags to the settings and search params (#768) by [Clément Denoix]([email protected])
7+
- [ce95833f](https://github.com/algolia/api-clients-automation/commit/ce95833f) fix(java): rename one of methods for better dx APIC-539 (#763) by [Pierre Millot]([email protected])
8+
19
## [4.3.0-SNAPSHOT](https://github.com/algolia/algoliasearch-client-java-2/compare/4.2.4-SNAPSHOT...4.3.0-SNAPSHOT)
210

311
- [23a72c39](https://github.com/algolia/api-clients-automation/commit/23a72c39) fix(specs): correct type for highlightResult and snippetResult (#783)

clients/algoliasearch-client-javascript/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## [0.9.0](https://github.com/algolia/algoliasearch-client-javascript/compare/0.8.0...0.9.0)
2+
3+
- [5a499849](https://github.com/algolia/api-clients-automation/commit/5a499849) fix(specs): add renderingContent to search response (#787) by [Pierre Millot]([email protected])
4+
- [6b50ef0b](https://github.com/algolia/api-clients-automation/commit/6b50ef0b) feat(javascript): add `abtesting` client, better `init` usage (#784) by [@shortcuts](https://github.com/shortcuts/)
5+
- [23a72c39](https://github.com/algolia/api-clients-automation/commit/23a72c39) fix(specs): correct type for highlightResult and snippetResult (#783) by [Pierre Millot]([email protected])
6+
- [a11e84da](https://github.com/algolia/api-clients-automation/commit/a11e84da) fix(specs): fix missing params and types (#772) by [@shortcuts](https://github.com/shortcuts/)
7+
- [bc14a8c5](https://github.com/algolia/api-clients-automation/commit/bc14a8c5) feat(specs): Add tags to the settings and search params (#768) by [Clément Denoix]([email protected])
8+
- [77c80e20](https://github.com/algolia/api-clients-automation/commit/77c80e20) fix(javascript): add class-proposal plugin for `client-common` (#765) by [@shortcuts](https://github.com/shortcuts/)
9+
110
## [0.8.0](https://github.com/algolia/algoliasearch-client-javascript/compare/0.7.2...0.8.0)
211

312
- [23a72c39](https://github.com/algolia/api-clients-automation/commit/23a72c39) fix(specs): correct type for highlightResult and snippetResult (#783)

clients/algoliasearch-client-javascript/packages/client-common/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@experimental-api-clients-automation/client-common",
3-
"version": "0.8.0",
3+
"version": "0.9.0",
44
"description": "Common package for the Algolia JavaScript API client.",
55
"repository": "algolia/algoliasearch-client-javascript",
66
"license": "MIT",

clients/algoliasearch-client-javascript/packages/requester-browser-xhr/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@experimental-api-clients-automation/requester-browser-xhr",
3-
"version": "0.8.0",
3+
"version": "0.9.0",
44
"description": "Promise-based request library for browser using xhr.",
55
"repository": "algolia/algoliasearch-client-javascript",
66
"license": "MIT",
@@ -18,7 +18,7 @@
1818
"clean": "rm -rf dist/"
1919
},
2020
"dependencies": {
21-
"@experimental-api-clients-automation/client-common": "0.8.0"
21+
"@experimental-api-clients-automation/client-common": "0.9.0"
2222
},
2323
"devDependencies": {
2424
"@types/node": "16.11.43",

clients/algoliasearch-client-javascript/packages/requester-node-http/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@experimental-api-clients-automation/requester-node-http",
3-
"version": "0.8.0",
3+
"version": "0.9.0",
44
"description": "Promise-based request library for node using the native http module.",
55
"repository": "algolia/algoliasearch-client-javascript",
66
"license": "MIT",
@@ -17,7 +17,7 @@
1717
"clean": "rm -rf dist/"
1818
},
1919
"dependencies": {
20-
"@experimental-api-clients-automation/client-common": "0.8.0"
20+
"@experimental-api-clients-automation/client-common": "0.9.0"
2121
},
2222
"devDependencies": {
2323
"@types/node": "16.11.43",

clients/algoliasearch-client-php/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [4.0.0-alpha.6](https://github.com/algolia/algoliasearch-client-php/compare/4.0.0-alpha.5...4.0.0-alpha.6)
2+
3+
- [5a499849](https://github.com/algolia/api-clients-automation/commit/5a499849) fix(specs): add renderingContent to search response (#787) by [Pierre Millot]([email protected])
4+
- [23a72c39](https://github.com/algolia/api-clients-automation/commit/23a72c39) fix(specs): correct type for highlightResult and snippetResult (#783) by [Pierre Millot]([email protected])
5+
- [a11e84da](https://github.com/algolia/api-clients-automation/commit/a11e84da) fix(specs): fix missing params and types (#772) by [@shortcuts](https://github.com/shortcuts/)
6+
- [bc14a8c5](https://github.com/algolia/api-clients-automation/commit/bc14a8c5) feat(specs): Add tags to the settings and search params (#768) by [Clément Denoix]([email protected])
7+
18
## [4.0.0-alpha.5](https://github.com/algolia/algoliasearch-client-php/compare/4.0.0-alpha.4...4.0.0-alpha.5)
29

310
- [23a72c39](https://github.com/algolia/api-clients-automation/commit/23a72c39) fix(specs): correct type for highlightResult and snippetResult (#783)

config/clients.config.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"java": {
33
"folder": "clients/algoliasearch-client-java-2",
44
"gitRepoId": "algoliasearch-client-java-2",
5-
"packageVersion": "4.3.0-SNAPSHOT",
5+
"packageVersion": "4.4.0-SNAPSHOT",
66
"modelFolder": "algoliasearch-core/src/main/java/com/algolia/model",
77
"apiFolder": "algoliasearch-core/src/main/java/com/algolia/api",
88
"customGenerator": "algolia-java",
@@ -15,7 +15,7 @@
1515
"folder": "clients/algoliasearch-client-javascript",
1616
"npmNamespace": "@experimental-api-clients-automation",
1717
"gitRepoId": "algoliasearch-client-javascript",
18-
"utilsPackageVersion": "0.8.0",
18+
"utilsPackageVersion": "0.9.0",
1919
"modelFolder": "model",
2020
"apiFolder": "src",
2121
"customGenerator": "algolia-javascript",
@@ -27,7 +27,7 @@
2727
"php": {
2828
"folder": "clients/algoliasearch-client-php",
2929
"gitRepoId": "algoliasearch-client-php",
30-
"packageVersion": "4.0.0-alpha.5",
30+
"packageVersion": "4.0.0-alpha.6",
3131
"modelFolder": "lib/Model",
3232
"customGenerator": "algolia-php",
3333
"apiFolder": "lib/Api",

config/openapitools.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -6,63 +6,63 @@
66
"output": "#{cwd}/clients/algoliasearch-client-javascript/packages/algoliasearch",
77
"reservedWordsMappings": "queryParameters=queryParameters,requestOptions=requestOptions,delete=delete",
88
"additionalProperties": {
9-
"packageVersion": "0.8.0"
9+
"packageVersion": "0.9.0"
1010
}
1111
},
1212
"javascript-search": {
1313
"output": "#{cwd}/clients/algoliasearch-client-javascript/packages/client-search",
1414
"reservedWordsMappings": "queryParameters=queryParameters,requestOptions=requestOptions,delete=delete",
1515
"additionalProperties": {
16-
"packageVersion": "0.8.0"
16+
"packageVersion": "0.9.0"
1717
}
1818
},
1919
"javascript-recommend": {
2020
"output": "#{cwd}/clients/algoliasearch-client-javascript/packages/recommend",
2121
"reservedWordsMappings": "queryParameters=queryParameters,delete=delete",
2222
"additionalProperties": {
23-
"packageVersion": "0.8.0"
23+
"packageVersion": "0.9.0"
2424
}
2525
},
2626
"javascript-personalization": {
2727
"output": "#{cwd}/clients/algoliasearch-client-javascript/packages/client-personalization",
2828
"additionalProperties": {
29-
"packageVersion": "0.8.0"
29+
"packageVersion": "0.9.0"
3030
}
3131
},
3232
"javascript-analytics": {
3333
"output": "#{cwd}/clients/algoliasearch-client-javascript/packages/client-analytics",
3434
"additionalProperties": {
35-
"packageVersion": "0.8.0"
35+
"packageVersion": "0.9.0"
3636
}
3737
},
3838
"javascript-insights": {
3939
"output": "#{cwd}/clients/algoliasearch-client-javascript/packages/client-insights",
4040
"additionalProperties": {
41-
"packageVersion": "0.8.0"
41+
"packageVersion": "0.9.0"
4242
}
4343
},
4444
"javascript-abtesting": {
4545
"output": "#{cwd}/clients/algoliasearch-client-javascript/packages/client-abtesting",
4646
"additionalProperties": {
47-
"packageVersion": "0.8.0"
47+
"packageVersion": "0.9.0"
4848
}
4949
},
5050
"javascript-query-suggestions": {
5151
"output": "#{cwd}/clients/algoliasearch-client-javascript/packages/client-query-suggestions",
5252
"additionalProperties": {
53-
"packageVersion": "0.8.0"
53+
"packageVersion": "0.9.0"
5454
}
5555
},
5656
"javascript-sources": {
5757
"output": "#{cwd}/clients/algoliasearch-client-javascript/packages/client-sources",
5858
"additionalProperties": {
59-
"packageVersion": "0.8.0"
59+
"packageVersion": "0.9.0"
6060
}
6161
},
6262
"javascript-predict": {
6363
"output": "#{cwd}/clients/algoliasearch-client-javascript/packages/client-predict",
6464
"additionalProperties": {
65-
"packageVersion": "0.8.0"
65+
"packageVersion": "0.9.0"
6666
}
6767
},
6868
"java-search": {

0 commit comments

Comments
 (0)