Skip to content

Commit f4cc48d

Browse files
chore: release 5.18.0
Co-authored-by: algolia-bot <accounts+algolia-api-client-bot@algolia.com> Co-authored-by: Clément Vannicatte <vannicattec@gmail.com>
1 parent 5ea8250 commit f4cc48d

File tree

43 files changed

+225
-217
lines changed

Some content is hidden

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

43 files changed

+225
-217
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## [5.18.0](https://github.com/algolia/algoliasearch-client-javascript/compare/5.17.1...5.18.0)
2+
3+
- [966fe05ae6](https://github.com/algolia/api-clients-automation/commit/966fe05ae6) chore(deps): dependencies 2024-12-16 ([#4235](https://github.com/algolia/api-clients-automation/pull/4235)) by [@algolia-bot](https://github.com/algolia-bot/)
4+
- [0481473fe0](https://github.com/algolia/api-clients-automation/commit/0481473fe0) chore: trigger auto close pr ([#4250](https://github.com/algolia/api-clients-automation/pull/4250)) by [@shortcuts](https://github.com/shortcuts/)
5+
- [d6f48a40ce](https://github.com/algolia/api-clients-automation/commit/d6f48a40ce) feat(javascript): add `worker` build ([#4249](https://github.com/algolia/api-clients-automation/pull/4249)) by [@shortcuts](https://github.com/shortcuts/)
6+
- [679a8cdb60](https://github.com/algolia/api-clients-automation/commit/679a8cdb60) fix(specs): endpoint level timeout for ingestion ([#4251](https://github.com/algolia/api-clients-automation/pull/4251)) by [@shortcuts](https://github.com/shortcuts/)
7+
- [448aad70ee](https://github.com/algolia/api-clients-automation/commit/448aad70ee) feat(specs): update composition specs according to upcoming API changes ([#4234](https://github.com/algolia/api-clients-automation/pull/4234)) by [@e-krebs](https://github.com/e-krebs/)
8+
19
## [5.17.1](https://github.com/algolia/algoliasearch-client-javascript/compare/5.17.0...5.17.1)
210

311
- [cd59f445e](https://github.com/algolia/api-clients-automation/commit/cd59f445e) fix(specs): enable watcher for push ([#4229](https://github.com/algolia/api-clients-automation/pull/4229)) 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.17.1
41+
yarn add algoliasearch@5.18.0
4242
# or
43-
npm install algoliasearch@5.17.1
43+
npm install algoliasearch@5.18.0
4444
# or
45-
pnpm add algoliasearch@5.17.1
45+
pnpm add algoliasearch@5.18.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.17.1/dist/algoliasearch.umd.js"></script>
54+
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.18.0/dist/algoliasearch.umd.js"></script>
5555

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

6060
### Usage

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
},
6363
{
6464
"path": "packages/ingestion/dist/builds/browser.umd.js",
65-
"maxSize": "6.00KB"
65+
"maxSize": "6.05KB"
6666
},
6767
{
6868
"path": "packages/monitoring/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.17.1
41+
yarn add algoliasearch@5.18.0
4242
# or
43-
npm install algoliasearch@5.17.1
43+
npm install algoliasearch@5.18.0
4444
# or
45-
pnpm add algoliasearch@5.17.1
45+
pnpm add algoliasearch@5.18.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.17.1/dist/algoliasearch.umd.js"></script>
54+
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.18.0/dist/algoliasearch.umd.js"></script>
5555

5656
// for the lite client
57-
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.17.1/dist/lite/builds/browser.umd.js"></script>
57+
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.18.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.17.1';
27+
export const apiClientVersion = '5.18.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.17.1",
2+
"version": "5.18.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.17.1",
78-
"@algolia/client-analytics": "5.17.1",
79-
"@algolia/client-common": "5.17.1",
80-
"@algolia/client-insights": "5.17.1",
81-
"@algolia/client-personalization": "5.17.1",
82-
"@algolia/client-query-suggestions": "5.17.1",
83-
"@algolia/client-search": "5.17.1",
84-
"@algolia/ingestion": "1.17.1",
85-
"@algolia/monitoring": "1.17.1",
86-
"@algolia/recommend": "5.17.1",
87-
"@algolia/requester-browser-xhr": "5.17.1",
88-
"@algolia/requester-fetch": "5.17.1",
89-
"@algolia/requester-node-http": "5.17.1"
77+
"@algolia/client-abtesting": "5.18.0",
78+
"@algolia/client-analytics": "5.18.0",
79+
"@algolia/client-common": "5.18.0",
80+
"@algolia/client-insights": "5.18.0",
81+
"@algolia/client-personalization": "5.18.0",
82+
"@algolia/client-query-suggestions": "5.18.0",
83+
"@algolia/client-search": "5.18.0",
84+
"@algolia/ingestion": "1.18.0",
85+
"@algolia/monitoring": "1.18.0",
86+
"@algolia/recommend": "5.18.0",
87+
"@algolia/requester-browser-xhr": "5.18.0",
88+
"@algolia/requester-fetch": "5.18.0",
89+
"@algolia/requester-node-http": "5.18.0"
9090
},
9191
"devDependencies": {
92-
"@algolia/requester-testing": "5.17.1",
92+
"@algolia/requester-testing": "5.18.0",
9393
"@arethetypeswrong/cli": "0.17.1",
9494
"@types/node": "22.10.2",
9595
"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.17.1
44+
yarn add @algolia/client-abtesting@5.18.0
4545
# or
46-
npm install @algolia/client-abtesting@5.17.1
46+
npm install @algolia/client-abtesting@5.18.0
4747
# or
48-
pnpm add @algolia/client-abtesting@5.17.1
48+
pnpm add @algolia/client-abtesting@5.18.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.17.1/dist/builds/browser.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-abtesting@5.18.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.17.1",
2+
"version": "5.18.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.17.1",
53-
"@algolia/requester-browser-xhr": "5.17.1",
54-
"@algolia/requester-fetch": "5.17.1",
55-
"@algolia/requester-node-http": "5.17.1"
52+
"@algolia/client-common": "5.18.0",
53+
"@algolia/requester-browser-xhr": "5.18.0",
54+
"@algolia/requester-fetch": "5.18.0",
55+
"@algolia/requester-node-http": "5.18.0"
5656
},
5757
"devDependencies": {
5858
"@arethetypeswrong/cli": "0.17.1",

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.17.1';
34+
export const apiClientVersion = '5.18.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.17.1
44+
yarn add @algolia/client-analytics@5.18.0
4545
# or
46-
npm install @algolia/client-analytics@5.17.1
46+
npm install @algolia/client-analytics@5.18.0
4747
# or
48-
pnpm add @algolia/client-analytics@5.17.1
48+
pnpm add @algolia/client-analytics@5.18.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.17.1/dist/builds/browser.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-analytics@5.18.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.17.1",
2+
"version": "5.18.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.17.1",
53-
"@algolia/requester-browser-xhr": "5.17.1",
54-
"@algolia/requester-fetch": "5.17.1",
55-
"@algolia/requester-node-http": "5.17.1"
52+
"@algolia/client-common": "5.18.0",
53+
"@algolia/requester-browser-xhr": "5.18.0",
54+
"@algolia/requester-fetch": "5.18.0",
55+
"@algolia/requester-node-http": "5.18.0"
5656
},
5757
"devDependencies": {
5858
"@arethetypeswrong/cli": "0.17.1",

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.17.1';
61+
export const apiClientVersion = '5.18.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.17.1",
3+
"version": "5.18.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/client-composition@0.0.1-alpha.7
44+
yarn add @algolia/client-composition@0.0.1-alpha.8
4545
# or
46-
npm install @algolia/client-composition@0.0.1-alpha.7
46+
npm install @algolia/client-composition@0.0.1-alpha.8
4747
# or
48-
pnpm add @algolia/client-composition@0.0.1-alpha.7
48+
pnpm add @algolia/client-composition@0.0.1-alpha.8
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-composition@0.0.1-alpha.7/dist/builds/browser.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-composition@0.0.1-alpha.8/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.7",
2+
"version": "0.0.1-alpha.8",
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.17.1",
53-
"@algolia/requester-browser-xhr": "5.17.1",
54-
"@algolia/requester-fetch": "5.17.1",
55-
"@algolia/requester-node-http": "5.17.1"
52+
"@algolia/client-common": "5.18.0",
53+
"@algolia/requester-browser-xhr": "5.18.0",
54+
"@algolia/requester-fetch": "5.18.0",
55+
"@algolia/requester-node-http": "5.18.0"
5656
},
5757
"devDependencies": {
5858
"@arethetypeswrong/cli": "0.17.1",

packages/client-composition/src/compositionClient.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.7';
44+
export const apiClientVersion = '0.0.1-alpha.8';
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.17.1
44+
yarn add @algolia/client-insights@5.18.0
4545
# or
46-
npm install @algolia/client-insights@5.17.1
46+
npm install @algolia/client-insights@5.18.0
4747
# or
48-
pnpm add @algolia/client-insights@5.17.1
48+
pnpm add @algolia/client-insights@5.18.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.17.1/dist/builds/browser.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-insights@5.18.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.17.1",
2+
"version": "5.18.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.17.1",
53-
"@algolia/requester-browser-xhr": "5.17.1",
54-
"@algolia/requester-fetch": "5.17.1",
55-
"@algolia/requester-node-http": "5.17.1"
52+
"@algolia/client-common": "5.18.0",
53+
"@algolia/requester-browser-xhr": "5.18.0",
54+
"@algolia/requester-fetch": "5.18.0",
55+
"@algolia/requester-node-http": "5.18.0"
5656
},
5757
"devDependencies": {
5858
"@arethetypeswrong/cli": "0.17.1",

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

5959
### Usage

0 commit comments

Comments
 (0)