Skip to content

Commit 3c10984

Browse files
chore: spread release revert (generated)
algolia/api-clients-automation#3918 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Clément Vannicatte <[email protected]>
1 parent 83f0cf7 commit 3c10984

File tree

41 files changed

+361
-344
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+361
-344
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## [5.8.0](https://github.com/algolia/algoliasearch-client-javascript/compare/5.7.0...5.8.0)
2+
3+
- [ad8e3d224](https://github.com/algolia/api-clients-automation/commit/ad8e3d224) fix(specs): update analytics and abtesting max pagination query limit ([#3696](https://github.com/algolia/api-clients-automation/pull/3696)) by [@febeck](https://github.com/febeck/)
4+
- [bed119166](https://github.com/algolia/api-clients-automation/commit/bed119166) feat(specs): add support for widgets / banners in search for the csharp client ([#3870](https://github.com/algolia/api-clients-automation/pull/3870)) by [@Kalmar99](https://github.com/Kalmar99/)
5+
- [844e57f35](https://github.com/algolia/api-clients-automation/commit/844e57f35) fix(specs): correct typos is Search API ([#3898](https://github.com/algolia/api-clients-automation/pull/3898)) by [@gazconroy](https://github.com/gazconroy/)
6+
- [3c4c87619](https://github.com/algolia/api-clients-automation/commit/3c4c87619) chore(deps): dependencies 2024-10-07 ([#3876](https://github.com/algolia/api-clients-automation/pull/3876)) by [@algolia-bot](https://github.com/algolia-bot/)
7+
- [3d5828d61](https://github.com/algolia/api-clients-automation/commit/3d5828d61) fix(javascript): node 14 compatibility ([#3897](https://github.com/algolia/api-clients-automation/pull/3897)) by [@shortcuts](https://github.com/shortcuts/)
8+
19
## [5.7.0](https://github.com/algolia/algoliasearch-client-javascript/compare/5.6.1...5.7.0)
210

311
- [788483537](https://github.com/algolia/api-clients-automation/commit/788483537) chore(clients): add workflow to auto-close PR ([#3834](https://github.com/algolia/api-clients-automation/pull/3834)) by [@shortcuts](https://github.com/shortcuts/)

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ All of our clients comes with type definition, and are available for both browse
4040

4141

4242
```bash
43-
yarn add algoliasearch@5.7.0
43+
yarn add algoliasearch@5.8.0
4444
# or
45-
npm install algoliasearch@5.7.0
45+
npm install algoliasearch@5.8.0
4646
# or
47-
pnpm add algoliasearch@5.7.0
47+
pnpm add algoliasearch@5.8.0
4848
```
4949

5050
### Without a package manager
@@ -53,10 +53,10 @@ Add the following JavaScript snippet to the <head> of your website:
5353

5454
```html
5555
// for the full client
56-
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.7.0/dist/algoliasearch.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.8.0/dist/algoliasearch.umd.js"></script>
5757

5858
// for the lite client
59-
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.7.0/dist/lite/builds/browser.umd.js"></script>
59+
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.8.0/dist/lite/builds/browser.umd.js"></script>
6060
```
6161

6262
### Usage

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"bundlesize": "0.18.2",
2222
"execa": "9.4.0",
2323
"lerna": "8.1.8",
24-
"rollup": "4.22.5",
24+
"rollup": "4.24.0",
2525
"semver": "7.6.3",
2626
"typescript": "5.6.2"
2727
},

packages/algoliasearch/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ All of our clients comes with type definition, and are available for both browse
4040

4141

4242
```bash
43-
yarn add algoliasearch@5.7.0
43+
yarn add algoliasearch@5.8.0
4444
# or
45-
npm install algoliasearch@5.7.0
45+
npm install algoliasearch@5.8.0
4646
# or
47-
pnpm add algoliasearch@5.7.0
47+
pnpm add algoliasearch@5.8.0
4848
```
4949

5050
### Without a package manager
@@ -53,10 +53,10 @@ Add the following JavaScript snippet to the <head> of your website:
5353

5454
```html
5555
// for the full client
56-
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.7.0/dist/algoliasearch.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.8.0/dist/algoliasearch.umd.js"></script>
5757

5858
// for the lite client
59-
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.7.0/dist/lite/builds/browser.umd.js"></script>
59+
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.8.0/dist/lite/builds/browser.umd.js"></script>
6060
```
6161

6262
### Usage

packages/algoliasearch/lite/src/liteClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import type { SearchMethodParams } from '../model/searchMethodParams';
2222
import type { SearchResponse } from '../model/searchResponse';
2323
import type { SearchResponses } from '../model/searchResponses';
2424

25-
export const apiClientVersion = '5.7.0';
25+
export const apiClientVersion = '5.8.0';
2626

2727
function getDefaultHosts(appId: string): Host[] {
2828
return (

packages/algoliasearch/package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "5.7.0",
2+
"version": "5.8.0",
33
"repository": {
44
"type": "git",
55
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
@@ -73,26 +73,26 @@
7373
"lite.d.ts"
7474
],
7575
"dependencies": {
76-
"@algolia/client-abtesting": "5.7.0",
77-
"@algolia/client-analytics": "5.7.0",
78-
"@algolia/client-common": "5.7.0",
79-
"@algolia/client-personalization": "5.7.0",
80-
"@algolia/client-search": "5.7.0",
81-
"@algolia/recommend": "5.7.0",
82-
"@algolia/requester-browser-xhr": "5.7.0",
83-
"@algolia/requester-fetch": "5.7.0",
84-
"@algolia/requester-node-http": "5.7.0"
76+
"@algolia/client-abtesting": "5.8.0",
77+
"@algolia/client-analytics": "5.8.0",
78+
"@algolia/client-common": "5.8.0",
79+
"@algolia/client-personalization": "5.8.0",
80+
"@algolia/client-search": "5.8.0",
81+
"@algolia/recommend": "5.8.0",
82+
"@algolia/requester-browser-xhr": "5.8.0",
83+
"@algolia/requester-fetch": "5.8.0",
84+
"@algolia/requester-node-http": "5.8.0"
8585
},
8686
"devDependencies": {
87-
"@algolia/requester-testing": "5.7.0",
87+
"@algolia/requester-testing": "5.8.0",
8888
"@arethetypeswrong/cli": "0.16.4",
8989
"@types/node": "22.7.4",
9090
"jsdom": "25.0.1",
9191
"publint": "0.2.11",
92-
"rollup": "4.22.5",
92+
"rollup": "4.24.0",
9393
"tsup": "8.3.0",
9494
"typescript": "5.6.2",
95-
"vitest": "2.1.1",
95+
"vitest": "2.1.2",
9696
"vitest-environment-miniflare": "2.14.3"
9797
},
9898
"engines": {

packages/client-abtesting/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,19 +42,19 @@ All of our clients comes with type definition, and are available for both browse
4242

4343

4444
```bash
45-
yarn add @algolia/client-abtesting@5.7.0
45+
yarn add @algolia/client-abtesting@5.8.0
4646
# or
47-
npm install @algolia/client-abtesting@5.7.0
47+
npm install @algolia/client-abtesting@5.8.0
4848
# or
49-
pnpm add @algolia/client-abtesting@5.7.0
49+
pnpm add @algolia/client-abtesting@5.8.0
5050
```
5151

5252
### Without a package manager
5353

5454
Add the following JavaScript snippet to the <head> of your website:
5555

5656
```html
57-
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-abtesting@5.7.0/dist/builds/browser.umd.js"></script>
57+
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-abtesting@5.8.0/dist/builds/browser.umd.js"></script>
5858
```
5959

6060
### Usage

packages/client-abtesting/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "5.7.0",
2+
"version": "5.8.0",
33
"repository": {
44
"type": "git",
55
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
@@ -49,16 +49,16 @@
4949
"index.d.ts"
5050
],
5151
"dependencies": {
52-
"@algolia/client-common": "5.7.0",
53-
"@algolia/requester-browser-xhr": "5.7.0",
54-
"@algolia/requester-fetch": "5.7.0",
55-
"@algolia/requester-node-http": "5.7.0"
52+
"@algolia/client-common": "5.8.0",
53+
"@algolia/requester-browser-xhr": "5.8.0",
54+
"@algolia/requester-fetch": "5.8.0",
55+
"@algolia/requester-node-http": "5.8.0"
5656
},
5757
"devDependencies": {
5858
"@arethetypeswrong/cli": "0.16.4",
5959
"@types/node": "22.7.4",
6060
"publint": "0.2.11",
61-
"rollup": "4.22.5",
61+
"rollup": "4.24.0",
6262
"tsup": "8.3.0",
6363
"typescript": "5.6.2"
6464
},

packages/client-abtesting/src/abtestingClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import type { ListABTestsResponse } from '../model/listABTestsResponse';
2727
import type { ScheduleABTestResponse } from '../model/scheduleABTestResponse';
2828
import type { ScheduleABTestsRequest } from '../model/scheduleABTestsRequest';
2929

30-
export const apiClientVersion = '5.7.0';
30+
export const apiClientVersion = '5.8.0';
3131

3232
export const REGIONS = ['de', 'us'] as const;
3333
export type Region = (typeof REGIONS)[number];

packages/client-analytics/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,19 +42,19 @@ All of our clients comes with type definition, and are available for both browse
4242

4343

4444
```bash
45-
yarn add @algolia/client-analytics@5.7.0
45+
yarn add @algolia/client-analytics@5.8.0
4646
# or
47-
npm install @algolia/client-analytics@5.7.0
47+
npm install @algolia/client-analytics@5.8.0
4848
# or
49-
pnpm add @algolia/client-analytics@5.7.0
49+
pnpm add @algolia/client-analytics@5.8.0
5050
```
5151

5252
### Without a package manager
5353

5454
Add the following JavaScript snippet to the <head> of your website:
5555

5656
```html
57-
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-analytics@5.7.0/dist/builds/browser.umd.js"></script>
57+
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-analytics@5.8.0/dist/builds/browser.umd.js"></script>
5858
```
5959

6060
### Usage

0 commit comments

Comments
 (0)