Skip to content

Commit a633214

Browse files
chore: release 5.9.0
Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Clément Vannicatte <[email protected]>
1 parent 6c2f447 commit a633214

File tree

39 files changed

+210
-199
lines changed

39 files changed

+210
-199
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## [5.9.0](https://github.com/algolia/algoliasearch-client-javascript/compare/5.8.1...5.9.0)
2+
3+
- [56164aab9](https://github.com/algolia/api-clients-automation/commit/56164aab9) fix(javascript): do not publish ts ([#3966](https://github.com/algolia/api-clients-automation/pull/3966)) by [@shortcuts](https://github.com/shortcuts/)
4+
- [cd98290fa](https://github.com/algolia/api-clients-automation/commit/cd98290fa) fix(specs): Typo tolernace on words ([#3968](https://github.com/algolia/api-clients-automation/pull/3968)) by [@gazconroy](https://github.com/gazconroy/)
5+
- [21d09d3d3](https://github.com/algolia/api-clients-automation/commit/21d09d3d3) feat(javascript): add every APIs ([#3942](https://github.com/algolia/api-clients-automation/pull/3942)) by [@shortcuts](https://github.com/shortcuts/)
6+
- [5866c2954](https://github.com/algolia/api-clients-automation/commit/5866c2954) fix(specs): Add context to hitsPerPage ([#3969](https://github.com/algolia/api-clients-automation/pull/3969)) by [@gazconroy](https://github.com/gazconroy/)
7+
- [95e4149a3](https://github.com/algolia/api-clients-automation/commit/95e4149a3) chore(deps): dependencies 2024-10-14 ([#3944](https://github.com/algolia/api-clients-automation/pull/3944)) by [@algolia-bot](https://github.com/algolia-bot/)
8+
- [8b879dead](https://github.com/algolia/api-clients-automation/commit/8b879dead) fix(specs): alternativesAsExact is plurals and synonyms ([#3974](https://github.com/algolia/api-clients-automation/pull/3974)) by [@gazconroy](https://github.com/gazconroy/)
9+
- [1a9b95e85](https://github.com/algolia/api-clients-automation/commit/1a9b95e85) fix(specs): Separators are non-alphanumeric characters ([#3978](https://github.com/algolia/api-clients-automation/pull/3978)) by [@gazconroy](https://github.com/gazconroy/)
10+
- [519fd9840](https://github.com/algolia/api-clients-automation/commit/519fd9840) fix(specs): multiple clients fixes ([#3971](https://github.com/algolia/api-clients-automation/pull/3971)) by [@shortcuts](https://github.com/shortcuts/)
11+
112
## [5.8.1](https://github.com/algolia/algoliasearch-client-javascript/compare/5.8.0...5.8.1)
213

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

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.8.1
41+
yarn add algoliasearch@5.9.0
4242
# or
43-
npm install algoliasearch@5.8.1
43+
npm install algoliasearch@5.9.0
4444
# or
45-
pnpm add algoliasearch@5.8.1
45+
pnpm add algoliasearch@5.9.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.8.1/dist/algoliasearch.umd.js"></script>
54+
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.9.0/dist/algoliasearch.umd.js"></script>
5555

5656
// for the lite client
57-
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.8.1/dist/lite/builds/browser.umd.js"></script>
57+
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.9.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.8.1
41+
yarn add algoliasearch@5.9.0
4242
# or
43-
npm install algoliasearch@5.8.1
43+
npm install algoliasearch@5.9.0
4444
# or
45-
pnpm add algoliasearch@5.8.1
45+
pnpm add algoliasearch@5.9.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.8.1/dist/algoliasearch.umd.js"></script>
54+
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.9.0/dist/algoliasearch.umd.js"></script>
5555

5656
// for the lite client
57-
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.8.1/dist/lite/builds/browser.umd.js"></script>
57+
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.9.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.8.1';
27+
export const apiClientVersion = '5.9.0';
2828

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

packages/algoliasearch/package.json

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "5.8.1",
2+
"version": "5.9.0",
33
"repository": {
44
"type": "git",
55
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
@@ -73,21 +73,21 @@
7373
"lite.d.ts"
7474
],
7575
"dependencies": {
76-
"@algolia/client-abtesting": "5.8.1",
77-
"@algolia/client-analytics": "5.8.1",
78-
"@algolia/client-common": "5.8.1",
79-
"@algolia/client-insights": "5.8.1",
80-
"@algolia/client-personalization": "5.8.1",
81-
"@algolia/client-query-suggestions": "5.8.1",
82-
"@algolia/ingestion": "1.8.1",
83-
"@algolia/monitoring": "1.8.1",
84-
"@algolia/recommend": "5.8.1",
85-
"@algolia/requester-browser-xhr": "5.8.1",
86-
"@algolia/requester-fetch": "5.8.1",
87-
"@algolia/requester-node-http": "5.8.1"
76+
"@algolia/client-abtesting": "5.9.0",
77+
"@algolia/client-analytics": "5.9.0",
78+
"@algolia/client-common": "5.9.0",
79+
"@algolia/client-insights": "5.9.0",
80+
"@algolia/client-personalization": "5.9.0",
81+
"@algolia/client-query-suggestions": "5.9.0",
82+
"@algolia/ingestion": "1.9.0",
83+
"@algolia/monitoring": "1.9.0",
84+
"@algolia/recommend": "5.9.0",
85+
"@algolia/requester-browser-xhr": "5.9.0",
86+
"@algolia/requester-fetch": "5.9.0",
87+
"@algolia/requester-node-http": "5.9.0"
8888
},
8989
"devDependencies": {
90-
"@algolia/requester-testing": "5.8.1",
90+
"@algolia/requester-testing": "5.9.0",
9191
"@arethetypeswrong/cli": "0.16.4",
9292
"@types/node": "22.7.5",
9393
"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.8.1
44+
yarn add @algolia/client-abtesting@5.9.0
4545
# or
46-
npm install @algolia/client-abtesting@5.8.1
46+
npm install @algolia/client-abtesting@5.9.0
4747
# or
48-
pnpm add @algolia/client-abtesting@5.8.1
48+
pnpm add @algolia/client-abtesting@5.9.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.8.1/dist/builds/browser.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-abtesting@5.9.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.8.1",
2+
"version": "5.9.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.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"
52+
"@algolia/client-common": "5.9.0",
53+
"@algolia/requester-browser-xhr": "5.9.0",
54+
"@algolia/requester-fetch": "5.9.0",
55+
"@algolia/requester-node-http": "5.9.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.8.1';
32+
export const apiClientVersion = '5.9.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.8.1
44+
yarn add @algolia/client-analytics@5.9.0
4545
# or
46-
npm install @algolia/client-analytics@5.8.1
46+
npm install @algolia/client-analytics@5.9.0
4747
# or
48-
pnpm add @algolia/client-analytics@5.8.1
48+
pnpm add @algolia/client-analytics@5.9.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.8.1/dist/builds/browser.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-analytics@5.9.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.8.1",
2+
"version": "5.9.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.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"
52+
"@algolia/client-common": "5.9.0",
53+
"@algolia/requester-browser-xhr": "5.9.0",
54+
"@algolia/requester-fetch": "5.9.0",
55+
"@algolia/requester-node-http": "5.9.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.8.1';
61+
export const apiClientVersion = '5.9.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.8.1",
3+
"version": "5.9.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
@@ -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-insights@5.8.1
44+
yarn add @algolia/client-insights@5.9.0
4545
# or
46-
npm install @algolia/client-insights@5.8.1
46+
npm install @algolia/client-insights@5.9.0
4747
# or
48-
pnpm add @algolia/client-insights@5.8.1
48+
pnpm add @algolia/client-insights@5.9.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-insights@5.8.1/dist/builds/browser.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-insights@5.9.0/dist/builds/browser.umd.js"></script>
5757
```
5858

5959
### Usage

packages/client-insights/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "5.8.1",
2+
"version": "5.9.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.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"
52+
"@algolia/client-common": "5.9.0",
53+
"@algolia/requester-browser-xhr": "5.9.0",
54+
"@algolia/requester-fetch": "5.9.0",
55+
"@algolia/requester-node-http": "5.9.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.8.1';
24+
export const apiClientVersion = '5.9.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.8.1
44+
yarn add @algolia/client-personalization@5.9.0
4545
# or
46-
npm install @algolia/client-personalization@5.8.1
46+
npm install @algolia/client-personalization@5.9.0
4747
# or
48-
pnpm add @algolia/client-personalization@5.8.1
48+
pnpm add @algolia/client-personalization@5.9.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.8.1/dist/builds/browser.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-personalization@5.9.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.8.1",
2+
"version": "5.9.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.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"
52+
"@algolia/client-common": "5.9.0",
53+
"@algolia/requester-browser-xhr": "5.9.0",
54+
"@algolia/requester-fetch": "5.9.0",
55+
"@algolia/requester-node-http": "5.9.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.8.1';
28+
export const apiClientVersion = '5.9.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
@@ -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-query-suggestions@5.8.1
44+
yarn add @algolia/client-query-suggestions@5.9.0
4545
# or
46-
npm install @algolia/client-query-suggestions@5.8.1
46+
npm install @algolia/client-query-suggestions@5.9.0
4747
# or
48-
pnpm add @algolia/client-query-suggestions@5.8.1
48+
pnpm add @algolia/client-query-suggestions@5.9.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-query-suggestions@5.8.1/dist/builds/browser.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-query-suggestions@5.9.0/dist/builds/browser.umd.js"></script>
5757
```
5858

5959
### 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.8.1",
2+
"version": "5.9.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.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"
52+
"@algolia/client-common": "5.9.0",
53+
"@algolia/requester-browser-xhr": "5.9.0",
54+
"@algolia/requester-fetch": "5.9.0",
55+
"@algolia/requester-node-http": "5.9.0"
5656
},
5757
"devDependencies": {
5858
"@arethetypeswrong/cli": "0.16.4",

0 commit comments

Comments
 (0)