Skip to content

Commit cf1a259

Browse files
chore: release 5.20.0
Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Clément Vannicatte <[email protected]>
1 parent 95b4c7d commit cf1a259

Some content is hidden

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

46 files changed

+245
-231
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## [5.20.0](https://github.com/algolia/algoliasearch-client-javascript/compare/5.19.0...5.20.0)
2+
3+
- [5aa57630d6](https://github.com/algolia/api-clients-automation/commit/5aa57630d6) feat(specs): only use shortname in the source input ([#4287](https://github.com/algolia/api-clients-automation/pull/4287)) by [@millotp](https://github.com/millotp/)
4+
- [1e847f4caf](https://github.com/algolia/api-clients-automation/commit/1e847f4caf) fix(specs): move customRanking and keepDiacriticsOnCharacters to indexSettings ([#4324](https://github.com/algolia/api-clients-automation/pull/4324)) by [@millotp](https://github.com/millotp/)
5+
- [13742383ab](https://github.com/algolia/api-clients-automation/commit/13742383ab) chore(deps): dependencies 2025-01-13 ([#4325](https://github.com/algolia/api-clients-automation/pull/4325)) by [@algolia-bot](https://github.com/algolia-bot/)
6+
- [58cc5449f5](https://github.com/algolia/api-clients-automation/commit/58cc5449f5) fix(specs): optionalFilters additional explanation ([#4353](https://github.com/algolia/api-clients-automation/pull/4353)) by [@kai687](https://github.com/kai687/)
7+
- [3b129e01df](https://github.com/algolia/api-clients-automation/commit/3b129e01df) fix(specs): ingestion expected and received events type ([#4356](https://github.com/algolia/api-clients-automation/pull/4356)) by [@shortcuts](https://github.com/shortcuts/)
8+
- [22167b8e68](https://github.com/algolia/api-clients-automation/commit/22167b8e68) fix(specs): extend Analytics descriptions ([#4360](https://github.com/algolia/api-clients-automation/pull/4360)) by [@gazconroy](https://github.com/gazconroy/)
9+
- [5b14906c1e](https://github.com/algolia/api-clients-automation/commit/5b14906c1e) fix(specs): remove the processing outcome ([#4359](https://github.com/algolia/api-clients-automation/pull/4359)) by [@millotp](https://github.com/millotp/)
10+
- [952639f0fb](https://github.com/algolia/api-clients-automation/commit/952639f0fb) fix(specs): adjust style for banner descriptions ([#4362](https://github.com/algolia/api-clients-automation/pull/4362)) by [@kai687](https://github.com/kai687/)
11+
- [4ae9ccd89f](https://github.com/algolia/api-clients-automation/commit/4ae9ccd89f) chore(deps): dependencies 2025-01-20 ([#4365](https://github.com/algolia/api-clients-automation/pull/4365)) by [@algolia-bot](https://github.com/algolia-bot/)
12+
- [83f188d333](https://github.com/algolia/api-clients-automation/commit/83f188d333) feat(specs): rename composition to composition-full (private) and add composition (public) ([#4357](https://github.com/algolia/api-clients-automation/pull/4357)) by [@e-krebs](https://github.com/e-krebs/)
13+
- [e842e63d4e](https://github.com/algolia/api-clients-automation/commit/e842e63d4e) fix(javascript): use beta version ([#4385](https://github.com/algolia/api-clients-automation/pull/4385)) by [@shortcuts](https://github.com/shortcuts/)
14+
115
## [5.19.0](https://github.com/algolia/algoliasearch-client-javascript/compare/5.18.0...5.19.0)
216

317
- [f9d890bbc4](https://github.com/algolia/api-clients-automation/commit/f9d890bbc4) chore(deps): dependencies 2024-12-23 ([#4258](https://github.com/algolia/api-clients-automation/pull/4258)) by [@algolia-bot](https://github.com/algolia-bot/)

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

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

6060
### Usage

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
},
5959
{
6060
"path": "packages/client-search/dist/builds/browser.umd.js",
61-
"maxSize": "7.30KB"
61+
"maxSize": "7.35KB"
6262
},
6363
{
6464
"path": "packages/ingestion/dist/builds/browser.umd.js",

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

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

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

packages/algoliasearch/package.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "5.19.0",
2+
"version": "5.20.0",
33
"repository": {
44
"type": "git",
55
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
@@ -74,22 +74,22 @@
7474
"lite.d.ts"
7575
],
7676
"dependencies": {
77-
"@algolia/client-abtesting": "5.19.0",
78-
"@algolia/client-analytics": "5.19.0",
79-
"@algolia/client-common": "5.19.0",
80-
"@algolia/client-insights": "5.19.0",
81-
"@algolia/client-personalization": "5.19.0",
82-
"@algolia/client-query-suggestions": "5.19.0",
83-
"@algolia/client-search": "5.19.0",
84-
"@algolia/ingestion": "1.19.0",
85-
"@algolia/monitoring": "1.19.0",
86-
"@algolia/recommend": "5.19.0",
87-
"@algolia/requester-browser-xhr": "5.19.0",
88-
"@algolia/requester-fetch": "5.19.0",
89-
"@algolia/requester-node-http": "5.19.0"
77+
"@algolia/client-abtesting": "5.20.0",
78+
"@algolia/client-analytics": "5.20.0",
79+
"@algolia/client-common": "5.20.0",
80+
"@algolia/client-insights": "5.20.0",
81+
"@algolia/client-personalization": "5.20.0",
82+
"@algolia/client-query-suggestions": "5.20.0",
83+
"@algolia/client-search": "5.20.0",
84+
"@algolia/ingestion": "1.20.0",
85+
"@algolia/monitoring": "1.20.0",
86+
"@algolia/recommend": "5.20.0",
87+
"@algolia/requester-browser-xhr": "5.20.0",
88+
"@algolia/requester-fetch": "5.20.0",
89+
"@algolia/requester-node-http": "5.20.0"
9090
},
9191
"devDependencies": {
92-
"@algolia/requester-testing": "5.19.0",
92+
"@algolia/requester-testing": "5.20.0",
9393
"@arethetypeswrong/cli": "0.17.3",
9494
"@types/node": "22.10.7",
9595
"jsdom": "26.0.0",

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.19.0
44+
yarn add @algolia/client-abtesting@5.20.0
4545
# or
46-
npm install @algolia/client-abtesting@5.19.0
46+
npm install @algolia/client-abtesting@5.20.0
4747
# or
48-
pnpm add @algolia/client-abtesting@5.19.0
48+
pnpm add @algolia/client-abtesting@5.20.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.19.0/dist/builds/browser.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-abtesting@5.20.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.19.0",
2+
"version": "5.20.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.19.0",
53-
"@algolia/requester-browser-xhr": "5.19.0",
54-
"@algolia/requester-fetch": "5.19.0",
55-
"@algolia/requester-node-http": "5.19.0"
52+
"@algolia/client-common": "5.20.0",
53+
"@algolia/requester-browser-xhr": "5.20.0",
54+
"@algolia/requester-fetch": "5.20.0",
55+
"@algolia/requester-node-http": "5.20.0"
5656
},
5757
"devDependencies": {
5858
"@arethetypeswrong/cli": "0.17.3",

packages/client-abtesting/src/abtestingClient.ts

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

34-
export const apiClientVersion = '5.19.0';
34+
export const apiClientVersion = '5.20.0';
3535

3636
export const REGIONS = ['de', 'us'] as const;
3737
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.19.0
44+
yarn add @algolia/client-analytics@5.20.0
4545
# or
46-
npm install @algolia/client-analytics@5.19.0
46+
npm install @algolia/client-analytics@5.20.0
4747
# or
48-
pnpm add @algolia/client-analytics@5.19.0
48+
pnpm add @algolia/client-analytics@5.20.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.19.0/dist/builds/browser.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-analytics@5.20.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.19.0",
2+
"version": "5.20.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.19.0",
53-
"@algolia/requester-browser-xhr": "5.19.0",
54-
"@algolia/requester-fetch": "5.19.0",
55-
"@algolia/requester-node-http": "5.19.0"
52+
"@algolia/client-common": "5.20.0",
53+
"@algolia/requester-browser-xhr": "5.20.0",
54+
"@algolia/requester-fetch": "5.20.0",
55+
"@algolia/requester-node-http": "5.20.0"
5656
},
5757
"devDependencies": {
5858
"@arethetypeswrong/cli": "0.17.3",

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.19.0';
61+
export const apiClientVersion = '5.20.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.19.0",
3+
"version": "5.20.0",
44
"description": "Common package for the Algolia JavaScript API client.",
55
"repository": {
66
"type": "git",

packages/client-composition/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/[email protected].9
44+
yarn add @algolia/[email protected].10
4545
# or
46-
npm install @algolia/[email protected].9
46+
npm install @algolia/[email protected].10
4747
# or
48-
pnpm add @algolia/[email protected].9
48+
pnpm add @algolia/[email protected].10
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].9/dist/builds/browser.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/@algolia/[email protected].10/dist/builds/browser.umd.js"></script>
5757
```
5858

5959
### Usage

packages/client-composition/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.0.1-alpha.9",
2+
"version": "0.0.1-alpha.10",
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.19.0",
53-
"@algolia/requester-browser-xhr": "5.19.0",
54-
"@algolia/requester-fetch": "5.19.0",
55-
"@algolia/requester-node-http": "5.19.0"
52+
"@algolia/client-common": "5.20.0",
53+
"@algolia/requester-browser-xhr": "5.20.0",
54+
"@algolia/requester-fetch": "5.20.0",
55+
"@algolia/requester-node-http": "5.20.0"
5656
},
5757
"devDependencies": {
5858
"@arethetypeswrong/cli": "0.17.3",

packages/client-composition/src/compositionFullClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import type {
4141
WaitForCompositionTaskOptions,
4242
} from '../model/clientMethodProps';
4343

44-
export const apiClientVersion = '0.0.1-alpha.9';
44+
export const apiClientVersion = '0.0.1-alpha.10';
4545

4646
function getDefaultHosts(appId: string): Host[] {
4747
return (

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.19.0
44+
yarn add @algolia/client-insights@5.20.0
4545
# or
46-
npm install @algolia/client-insights@5.19.0
46+
npm install @algolia/client-insights@5.20.0
4747
# or
48-
pnpm add @algolia/client-insights@5.19.0
48+
pnpm add @algolia/client-insights@5.20.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.19.0/dist/builds/browser.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-insights@5.20.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.19.0",
2+
"version": "5.20.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.19.0",
53-
"@algolia/requester-browser-xhr": "5.19.0",
54-
"@algolia/requester-fetch": "5.19.0",
55-
"@algolia/requester-node-http": "5.19.0"
52+
"@algolia/client-common": "5.20.0",
53+
"@algolia/requester-browser-xhr": "5.20.0",
54+
"@algolia/requester-fetch": "5.20.0",
55+
"@algolia/requester-node-http": "5.20.0"
5656
},
5757
"devDependencies": {
5858
"@arethetypeswrong/cli": "0.17.3",

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.19.0';
24+
export const apiClientVersion = '5.20.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.19.0
44+
yarn add @algolia/client-personalization@5.20.0
4545
# or
46-
npm install @algolia/client-personalization@5.19.0
46+
npm install @algolia/client-personalization@5.20.0
4747
# or
48-
pnpm add @algolia/client-personalization@5.19.0
48+
pnpm add @algolia/client-personalization@5.20.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.19.0/dist/builds/browser.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-personalization@5.20.0/dist/builds/browser.umd.js"></script>
5757
```
5858

5959
### Usage

0 commit comments

Comments
 (0)