Skip to content

Commit a12b799

Browse files
committed
chore: release 5.8.1
Co-authored-by: algolia-bot <[email protected]>
1 parent b120cd2 commit a12b799

File tree

39 files changed

+197
-190
lines changed

39 files changed

+197
-190
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [5.8.1](https://github.com/algolia/algoliasearch-client-javascript/compare/5.8.0...5.8.1)
2+
3+
- [f516d0243](https://github.com/algolia/api-clients-automation/commit/f516d0243) fix(specs): Typos in API descriptions ([#3932](https://github.com/algolia/api-clients-automation/pull/3932)) by [@gazconroy](https://github.com/gazconroy/)
4+
- [434c99f80](https://github.com/algolia/api-clients-automation/commit/434c99f80) fix(specs): use the read transporter for browse ([#3938](https://github.com/algolia/api-clients-automation/pull/3938)) by [@millotp](https://github.com/millotp/)
5+
- [6b07138e7](https://github.com/algolia/api-clients-automation/commit/6b07138e7) chore: apply codacy fixes ([#3935](https://github.com/algolia/api-clients-automation/pull/3935)) by [@millotp](https://github.com/millotp/)
6+
- [45d433d0a](https://github.com/algolia/api-clients-automation/commit/45d433d0a) fix(specs): correct type for banners [skip-bc] ([#3939](https://github.com/algolia/api-clients-automation/pull/3939)) by [@millotp](https://github.com/millotp/)
7+
18
## [5.8.0](https://github.com/algolia/algoliasearch-client-javascript/compare/5.7.0...5.8.0)
29

310
- [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/)

README.md

Lines changed: 5 additions & 5 deletions
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-
41+
4242
# or
43-
npm install [email protected].0
43+
npm install [email protected].1
4444
# or
45-
45+
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/[email protected].0/dist/algoliasearch.umd.js"></script>
54+
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/dist/algoliasearch.umd.js"></script>
5555

5656
// for the lite client
57-
<script src="https://cdn.jsdelivr.net/npm/[email protected].0/dist/lite/builds/browser.umd.js"></script>
57+
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/dist/lite/builds/browser.umd.js"></script>
5858
```
5959

6060
### Usage

packages/algoliasearch/README.md

Lines changed: 5 additions & 5 deletions
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-
41+
4242
# or
43-
npm install [email protected].0
43+
npm install [email protected].1
4444
# or
45-
45+
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/[email protected].0/dist/algoliasearch.umd.js"></script>
54+
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/dist/algoliasearch.umd.js"></script>
5555

5656
// for the lite client
57-
<script src="https://cdn.jsdelivr.net/npm/[email protected].0/dist/lite/builds/browser.umd.js"></script>
57+
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/dist/lite/builds/browser.umd.js"></script>
5858
```
5959

6060
### Usage

packages/algoliasearch/lite/src/liteClient.ts

Lines changed: 1 addition & 1 deletion
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.8.0';
27+
export const apiClientVersion = '5.8.1';
2828

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

packages/algoliasearch/package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "5.8.0",
2+
"version": "5.8.1",
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.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"
76+
"@algolia/client-abtesting": "5.8.1",
77+
"@algolia/client-analytics": "5.8.1",
78+
"@algolia/client-common": "5.8.1",
79+
"@algolia/client-personalization": "5.8.1",
80+
"@algolia/client-search": "5.8.1",
81+
"@algolia/recommend": "5.8.1",
82+
"@algolia/requester-browser-xhr": "5.8.1",
83+
"@algolia/requester-fetch": "5.8.1",
84+
"@algolia/requester-node-http": "5.8.1"
8585
},
8686
"devDependencies": {
87-
"@algolia/requester-testing": "5.8.0",
87+
"@algolia/requester-testing": "5.8.1",
8888
"@arethetypeswrong/cli": "0.16.4",
8989
"@types/node": "22.7.4",
9090
"jsdom": "25.0.1",

packages/client-abtesting/README.md

Lines changed: 4 additions & 4 deletions
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/[email protected].0
44+
yarn add @algolia/[email protected].1
4545
# or
46-
npm install @algolia/[email protected].0
46+
npm install @algolia/[email protected].1
4747
# or
48-
pnpm add @algolia/[email protected].0
48+
pnpm add @algolia/[email protected].1
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/[email protected].0/dist/builds/browser.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/@algolia/[email protected].1/dist/builds/browser.umd.js"></script>
5757
```
5858

5959
### Usage

packages/client-abtesting/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "5.8.0",
2+
"version": "5.8.1",
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.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"
52+
"@algolia/client-common": "5.8.1",
53+
"@algolia/requester-browser-xhr": "5.8.1",
54+
"@algolia/requester-fetch": "5.8.1",
55+
"@algolia/requester-node-http": "5.8.1"
5656
},
5757
"devDependencies": {
5858
"@arethetypeswrong/cli": "0.16.4",

packages/client-abtesting/src/abtestingClient.ts

Lines changed: 1 addition & 1 deletion
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.8.0';
32+
export const apiClientVersion = '5.8.1';
3333

3434
export const REGIONS = ['de', 'us'] as const;
3535
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
@@ -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/[email protected].0
44+
yarn add @algolia/[email protected].1
4545
# or
46-
npm install @algolia/[email protected].0
46+
npm install @algolia/[email protected].1
4747
# or
48-
pnpm add @algolia/[email protected].0
48+
pnpm add @algolia/[email protected].1
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/[email protected].0/dist/builds/browser.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/@algolia/[email protected].1/dist/builds/browser.umd.js"></script>
5757
```
5858

5959
### Usage

packages/client-analytics/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "5.8.0",
2+
"version": "5.8.1",
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.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"
52+
"@algolia/client-common": "5.8.1",
53+
"@algolia/requester-browser-xhr": "5.8.1",
54+
"@algolia/requester-fetch": "5.8.1",
55+
"@algolia/requester-node-http": "5.8.1"
5656
},
5757
"devDependencies": {
5858
"@arethetypeswrong/cli": "0.16.4",

packages/client-analytics/src/analyticsClient.ts

Lines changed: 1 addition & 1 deletion
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.8.0';
61+
export const apiClientVersion = '5.8.1';
6262

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

packages/client-common/package.json

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

packages/client-insights/README.md

Lines changed: 4 additions & 4 deletions
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/[email protected].0
41+
yarn add @algolia/[email protected].1
4242
# or
43-
npm install @algolia/[email protected].0
43+
npm install @algolia/[email protected].1
4444
# or
45-
pnpm add @algolia/[email protected].0
45+
pnpm add @algolia/[email protected].1
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/[email protected].0/dist/builds/browser.umd.js"></script>
53+
<script src="https://cdn.jsdelivr.net/npm/@algolia/[email protected].1/dist/builds/browser.umd.js"></script>
5454
```
5555

5656
### Usage

packages/client-insights/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "5.8.0",
2+
"version": "5.8.1",
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.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"
52+
"@algolia/client-common": "5.8.1",
53+
"@algolia/requester-browser-xhr": "5.8.1",
54+
"@algolia/requester-fetch": "5.8.1",
55+
"@algolia/requester-node-http": "5.8.1"
5656
},
5757
"devDependencies": {
5858
"@arethetypeswrong/cli": "0.16.4",

packages/client-insights/src/insightsClient.ts

Lines changed: 1 addition & 1 deletion
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.8.0';
24+
export const apiClientVersion = '5.8.1';
2525

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

packages/client-personalization/README.md

Lines changed: 4 additions & 4 deletions
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/[email protected].0
44+
yarn add @algolia/[email protected].1
4545
# or
46-
npm install @algolia/[email protected].0
46+
npm install @algolia/[email protected].1
4747
# or
48-
pnpm add @algolia/[email protected].0
48+
pnpm add @algolia/[email protected].1
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/[email protected].0/dist/builds/browser.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/@algolia/[email protected].1/dist/builds/browser.umd.js"></script>
5757
```
5858

5959
### Usage

packages/client-personalization/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "5.8.0",
2+
"version": "5.8.1",
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.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"
52+
"@algolia/client-common": "5.8.1",
53+
"@algolia/requester-browser-xhr": "5.8.1",
54+
"@algolia/requester-fetch": "5.8.1",
55+
"@algolia/requester-node-http": "5.8.1"
5656
},
5757
"devDependencies": {
5858
"@arethetypeswrong/cli": "0.16.4",

packages/client-personalization/src/personalizationClient.ts

Lines changed: 1 addition & 1 deletion
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.8.0';
28+
export const apiClientVersion = '5.8.1';
2929

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

packages/client-query-suggestions/README.md

Lines changed: 4 additions & 4 deletions
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/[email protected].0
41+
yarn add @algolia/[email protected].1
4242
# or
43-
npm install @algolia/[email protected].0
43+
npm install @algolia/[email protected].1
4444
# or
45-
pnpm add @algolia/[email protected].0
45+
pnpm add @algolia/[email protected].1
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/[email protected].0/dist/builds/browser.umd.js"></script>
53+
<script src="https://cdn.jsdelivr.net/npm/@algolia/[email protected].1/dist/builds/browser.umd.js"></script>
5454
```
5555

5656
### Usage

packages/client-query-suggestions/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "5.8.0",
2+
"version": "5.8.1",
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.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"
52+
"@algolia/client-common": "5.8.1",
53+
"@algolia/requester-browser-xhr": "5.8.1",
54+
"@algolia/requester-fetch": "5.8.1",
55+
"@algolia/requester-node-http": "5.8.1"
5656
},
5757
"devDependencies": {
5858
"@arethetypeswrong/cli": "0.16.4",

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

Lines changed: 1 addition & 1 deletion
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.8.0';
33+
export const apiClientVersion = '5.8.1';
3434

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

0 commit comments

Comments
 (0)