Skip to content

Commit 8a575ac

Browse files
committed
chore: release 5.8.0
Co-authored-by: algolia-bot <[email protected]>
1 parent 2a4a4b5 commit 8a575ac

File tree

39 files changed

+200
-190
lines changed

39 files changed

+200
-190
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
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+
- [ed6f4ba0e](https://github.com/algolia/api-clients-automation/commit/ed6f4ba0e) chore(javascript): use oxlint ([#3895](https://github.com/algolia/api-clients-automation/pull/3895)) by [@shortcuts](https://github.com/shortcuts/)
9+
- [f554e09c3](https://github.com/algolia/api-clients-automation/commit/f554e09c3) chore: revert and fix release ([#3922](https://github.com/algolia/api-clients-automation/pull/3922)) by [@millotp](https://github.com/millotp/)
10+
111
## [5.7.0](https://github.com/algolia/algoliasearch-client-javascript/compare/5.6.1...5.7.0)
212

313
- [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

+5-5
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ All of our clients comes with type definition, and are available for both browse
3838
### With a package manager
3939

4040
```bash
41-
yarn add algoliasearch@5.7.0
41+
yarn add algoliasearch@5.8.0
4242
# or
43-
npm install algoliasearch@5.7.0
43+
npm install algoliasearch@5.8.0
4444
# or
45-
pnpm add algoliasearch@5.7.0
45+
pnpm add algoliasearch@5.8.0
4646
```
4747

4848
### Without a package manager
@@ -51,10 +51,10 @@ Add the following JavaScript snippet to the <head> of your website:
5151

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

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

6060
### Usage

packages/algoliasearch/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ All of our clients comes with type definition, and are available for both browse
3838
### With a package manager
3939

4040
```bash
41-
yarn add algoliasearch@5.7.0
41+
yarn add algoliasearch@5.8.0
4242
# or
43-
npm install algoliasearch@5.7.0
43+
npm install algoliasearch@5.8.0
4444
# or
45-
pnpm add algoliasearch@5.7.0
45+
pnpm add algoliasearch@5.8.0
4646
```
4747

4848
### Without a package manager
@@ -51,10 +51,10 @@ Add the following JavaScript snippet to the <head> of your website:
5151

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

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

6060
### Usage

packages/algoliasearch/lite/src/liteClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import type {
2424
import type { SearchForFacetValuesResponse } from '../model/searchForFacetValuesResponse';
2525
import type { SearchResponse } from '../model/searchResponse';
2626

27-
export const apiClientVersion = '5.7.0';
27+
export const apiClientVersion = '5.8.0';
2828

2929
function getDefaultHosts(appId: string): Host[] {
3030
return (

packages/algoliasearch/package.json

+11-11
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,18 +73,18 @@
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",

packages/client-abtesting/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,19 @@ All of our clients comes with type definition, and are available for both browse
4141
### With a package manager
4242

4343
```bash
44-
yarn add @algolia/client-abtesting@5.7.0
44+
yarn add @algolia/client-abtesting@5.8.0
4545
# or
46-
npm install @algolia/client-abtesting@5.7.0
46+
npm install @algolia/client-abtesting@5.8.0
4747
# or
48-
pnpm add @algolia/client-abtesting@5.7.0
48+
pnpm add @algolia/client-abtesting@5.8.0
4949
```
5050

5151
### Without a package manager
5252

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

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

5959
### Usage

packages/client-abtesting/package.json

+5-5
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,10 +49,10 @@
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",

packages/client-abtesting/src/abtestingClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import type {
2929
StopABTestProps,
3030
} from '../model/clientMethodProps';
3131

32-
export const apiClientVersion = '5.7.0';
32+
export const apiClientVersion = '5.8.0';
3333

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

packages/client-analytics/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,19 @@ All of our clients comes with type definition, and are available for both browse
4141
### With a package manager
4242

4343
```bash
44-
yarn add @algolia/client-analytics@5.7.0
44+
yarn add @algolia/client-analytics@5.8.0
4545
# or
46-
npm install @algolia/client-analytics@5.7.0
46+
npm install @algolia/client-analytics@5.8.0
4747
# or
48-
pnpm add @algolia/client-analytics@5.7.0
48+
pnpm add @algolia/client-analytics@5.8.0
4949
```
5050

5151
### Without a package manager
5252

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

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

5959
### Usage

packages/client-analytics/package.json

+5-5
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,10 +49,10 @@
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",

packages/client-analytics/src/analyticsClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ import type {
5858
GetUsersCountProps,
5959
} from '../model/clientMethodProps';
6060

61-
export const apiClientVersion = '5.7.0';
61+
export const apiClientVersion = '5.8.0';
6262

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

packages/client-common/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/client-common",
3-
"version": "5.7.0",
3+
"version": "5.8.0",
44
"description": "Common package for the Algolia JavaScript API client.",
55
"repository": {
66
"type": "git",

packages/client-insights/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -38,19 +38,19 @@ All of our clients comes with type definition, and are available for both browse
3838
### With a package manager
3939

4040
```bash
41-
yarn add @algolia/client-insights@5.7.0
41+
yarn add @algolia/client-insights@5.8.0
4242
# or
43-
npm install @algolia/client-insights@5.7.0
43+
npm install @algolia/client-insights@5.8.0
4444
# or
45-
pnpm add @algolia/client-insights@5.7.0
45+
pnpm add @algolia/client-insights@5.8.0
4646
```
4747

4848
### Without a package manager
4949

5050
Add the following JavaScript snippet to the <head> of your website:
5151

5252
```html
53-
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-insights@5.7.0/dist/builds/browser.umd.js"></script>
53+
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-insights@5.8.0/dist/builds/browser.umd.js"></script>
5454
```
5555

5656
### Usage

packages/client-insights/package.json

+5-5
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,10 +49,10 @@
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",

packages/client-insights/src/insightsClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import type {
2121
DeleteUserTokenProps,
2222
} from '../model/clientMethodProps';
2323

24-
export const apiClientVersion = '5.7.0';
24+
export const apiClientVersion = '5.8.0';
2525

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

packages/client-personalization/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,19 @@ All of our clients comes with type definition, and are available for both browse
4141
### With a package manager
4242

4343
```bash
44-
yarn add @algolia/client-personalization@5.7.0
44+
yarn add @algolia/client-personalization@5.8.0
4545
# or
46-
npm install @algolia/client-personalization@5.7.0
46+
npm install @algolia/client-personalization@5.8.0
4747
# or
48-
pnpm add @algolia/client-personalization@5.7.0
48+
pnpm add @algolia/client-personalization@5.8.0
4949
```
5050

5151
### Without a package manager
5252

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

5555
```html
56-
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-personalization@5.7.0/dist/builds/browser.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-personalization@5.8.0/dist/builds/browser.umd.js"></script>
5757
```
5858

5959
### Usage

packages/client-personalization/package.json

+5-5
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,10 +49,10 @@
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",

packages/client-personalization/src/personalizationClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import type {
2525
GetUserTokenProfileProps,
2626
} from '../model/clientMethodProps';
2727

28-
export const apiClientVersion = '5.7.0';
28+
export const apiClientVersion = '5.8.0';
2929

3030
export const REGIONS = ['eu', 'us'] as const;
3131
export type Region = (typeof REGIONS)[number];

packages/client-query-suggestions/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -38,19 +38,19 @@ All of our clients comes with type definition, and are available for both browse
3838
### With a package manager
3939

4040
```bash
41-
yarn add @algolia/client-query-suggestions@5.7.0
41+
yarn add @algolia/client-query-suggestions@5.8.0
4242
# or
43-
npm install @algolia/client-query-suggestions@5.7.0
43+
npm install @algolia/client-query-suggestions@5.8.0
4444
# or
45-
pnpm add @algolia/client-query-suggestions@5.7.0
45+
pnpm add @algolia/client-query-suggestions@5.8.0
4646
```
4747

4848
### Without a package manager
4949

5050
Add the following JavaScript snippet to the <head> of your website:
5151

5252
```html
53-
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-query-suggestions@5.7.0/dist/builds/browser.umd.js"></script>
53+
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-query-suggestions@5.8.0/dist/builds/browser.umd.js"></script>
5454
```
5555

5656
### Usage

packages/client-query-suggestions/package.json

+5-5
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,10 +49,10 @@
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",

packages/client-query-suggestions/src/querySuggestionsClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import type {
3030
UpdateConfigProps,
3131
} from '../model/clientMethodProps';
3232

33-
export const apiClientVersion = '5.7.0';
33+
export const apiClientVersion = '5.8.0';
3434

3535
export const REGIONS = ['eu', 'us'] as const;
3636
export type Region = (typeof REGIONS)[number];

0 commit comments

Comments
 (0)