Skip to content

Commit 1c23972

Browse files
chore: release 5.15.0
Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Clément Vannicatte <[email protected]>
1 parent 49fc82b commit 1c23972

Some content is hidden

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

45 files changed

+577
-827
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## [5.15.0](https://github.com/algolia/algoliasearch-client-javascript/compare/5.14.2...5.15.0)
2+
3+
- [0787a3d2a](https://github.com/algolia/api-clients-automation/commit/0787a3d2a) chore(scripts): change dist folder and bump ([#4113](https://github.com/algolia/api-clients-automation/pull/4113)) by [@millotp](https://github.com/millotp/)
4+
- [f246995a7](https://github.com/algolia/api-clients-automation/commit/f246995a7) chore(deps): dependencies 2024-11-18 ([#4109](https://github.com/algolia/api-clients-automation/pull/4109)) by [@algolia-bot](https://github.com/algolia-bot/)
5+
- [ff954678e](https://github.com/algolia/api-clients-automation/commit/ff954678e) fix(playground): add formatter for python ([#4125](https://github.com/algolia/api-clients-automation/pull/4125)) by [@millotp](https://github.com/millotp/)
6+
- [da4169e1b](https://github.com/algolia/api-clients-automation/commit/da4169e1b) fix(specs): do not cache searchCompositionRules ([#4127](https://github.com/algolia/api-clients-automation/pull/4127)) by [@e-krebs](https://github.com/e-krebs/)
7+
- [08669e2b3](https://github.com/algolia/api-clients-automation/commit/08669e2b3) feat(specs): default authMode to WithinHeaders for Composition Client ([#4129](https://github.com/algolia/api-clients-automation/pull/4129)) by [@e-krebs](https://github.com/e-krebs/)
8+
- [f97e44ce0](https://github.com/algolia/api-clients-automation/commit/f97e44ce0) fix(cts): add tests for HTML error ([#4097](https://github.com/algolia/api-clients-automation/pull/4097)) by [@millotp](https://github.com/millotp/)
9+
110
## [5.14.2](https://github.com/algolia/algoliasearch-client-javascript/compare/5.14.0...5.14.2)
211

312
- [b97a88beb](https://github.com/algolia/api-clients-automation/commit/b97a88beb) fix(javascript): add support for private package publish ([#4106](https://github.com/algolia/api-clients-automation/pull/4106)) by [@shortcuts](https://github.com/shortcuts/)

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

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

6060
### Usage

bundlesize.config.json

Lines changed: 0 additions & 52 deletions
This file was deleted.

package.json

Lines changed: 54 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,69 @@
1010
"clean": "lerna run clean",
1111
"release:publish": "tsc --project scripts/tsconfig.json && node scripts/dist/publish.js",
1212
"test": "lerna run test $*",
13-
"test:size": "bundlesize",
13+
"test:size": "bundlewatch",
1414
"test:bundle": "lerna run test:bundle --verbose --include-dependencies"
1515
},
1616
"devDependencies": {
1717
"@types/node": "22.9.0",
18-
"bundlesize": "0.18.2",
18+
"bundlewatch": "0.4.0",
1919
"execa": "9.5.1",
2020
"lerna": "8.1.9",
2121
"rollup": "4.27.2",
2222
"typescript": "5.6.3"
2323
},
24+
"bundlewatch": {
25+
"files": [
26+
{
27+
"path": "packages/algoliasearch/dist/algoliasearch.umd.js",
28+
"maxSize": "18.15KB"
29+
},
30+
{
31+
"path": "packages/algoliasearch/dist/lite/builds/browser.umd.js",
32+
"maxSize": "3.95KB"
33+
},
34+
{
35+
"path": "packages/client-abtesting/dist/builds/browser.umd.js",
36+
"maxSize": "4.20KB"
37+
},
38+
{
39+
"path": "packages/client-analytics/dist/builds/browser.umd.js",
40+
"maxSize": "4.85KB"
41+
},
42+
{
43+
"path": "packages/client-composition/dist/builds/browser.umd.js",
44+
"maxSize": "4.55KB"
45+
},
46+
{
47+
"path": "packages/client-insights/dist/builds/browser.umd.js",
48+
"maxSize": "3.90KB"
49+
},
50+
{
51+
"path": "packages/client-personalization/dist/builds/browser.umd.js",
52+
"maxSize": "4.05KB"
53+
},
54+
{
55+
"path": "packages/client-query-suggestions/dist/builds/browser.umd.js",
56+
"maxSize": "4.05KB"
57+
},
58+
{
59+
"path": "packages/client-search/dist/builds/browser.umd.js",
60+
"maxSize": "7.25KB"
61+
},
62+
{
63+
"path": "packages/ingestion/dist/builds/browser.umd.js",
64+
"maxSize": "5.90KB"
65+
},
66+
{
67+
"path": "packages/monitoring/dist/builds/browser.umd.js",
68+
"maxSize": "3.95KB"
69+
},
70+
{
71+
"path": "packages/recommend/dist/builds/browser.umd.js",
72+
"maxSize": "4.15KB"
73+
}
74+
]
75+
},
2476
"engines": {
2577
"node": ">= 14.0.0",
2678
"yarn": "^4.0.0"

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

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

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

packages/algoliasearch/package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "5.14.2",
2+
"version": "5.15.0",
33
"repository": {
44
"type": "git",
55
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
@@ -73,22 +73,22 @@
7373
"lite.d.ts"
7474
],
7575
"dependencies": {
76-
"@algolia/client-abtesting": "5.14.2",
77-
"@algolia/client-analytics": "5.14.2",
78-
"@algolia/client-common": "5.14.2",
79-
"@algolia/client-insights": "5.14.2",
80-
"@algolia/client-personalization": "5.14.2",
81-
"@algolia/client-query-suggestions": "5.14.2",
82-
"@algolia/client-search": "5.14.2",
83-
"@algolia/ingestion": "1.14.2",
84-
"@algolia/monitoring": "1.14.2",
85-
"@algolia/recommend": "5.14.2",
86-
"@algolia/requester-browser-xhr": "5.14.2",
87-
"@algolia/requester-fetch": "5.14.2",
88-
"@algolia/requester-node-http": "5.14.2"
76+
"@algolia/client-abtesting": "5.15.0",
77+
"@algolia/client-analytics": "5.15.0",
78+
"@algolia/client-common": "5.15.0",
79+
"@algolia/client-insights": "5.15.0",
80+
"@algolia/client-personalization": "5.15.0",
81+
"@algolia/client-query-suggestions": "5.15.0",
82+
"@algolia/client-search": "5.15.0",
83+
"@algolia/ingestion": "1.15.0",
84+
"@algolia/monitoring": "1.15.0",
85+
"@algolia/recommend": "5.15.0",
86+
"@algolia/requester-browser-xhr": "5.15.0",
87+
"@algolia/requester-fetch": "5.15.0",
88+
"@algolia/requester-node-http": "5.15.0"
8989
},
9090
"devDependencies": {
91-
"@algolia/requester-testing": "5.14.2",
91+
"@algolia/requester-testing": "5.15.0",
9292
"@arethetypeswrong/cli": "0.17.0",
9393
"@types/node": "22.9.0",
9494
"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/client-abtesting@5.14.2
44+
yarn add @algolia/client-abtesting@5.15.0
4545
# or
46-
npm install @algolia/client-abtesting@5.14.2
46+
npm install @algolia/client-abtesting@5.15.0
4747
# or
48-
pnpm add @algolia/client-abtesting@5.14.2
48+
pnpm add @algolia/client-abtesting@5.15.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.14.2/dist/builds/browser.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-abtesting@5.15.0/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.14.2",
2+
"version": "5.15.0",
33
"repository": {
44
"type": "git",
55
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
@@ -48,10 +48,10 @@
4848
"index.d.ts"
4949
],
5050
"dependencies": {
51-
"@algolia/client-common": "5.14.2",
52-
"@algolia/requester-browser-xhr": "5.14.2",
53-
"@algolia/requester-fetch": "5.14.2",
54-
"@algolia/requester-node-http": "5.14.2"
51+
"@algolia/client-common": "5.15.0",
52+
"@algolia/requester-browser-xhr": "5.15.0",
53+
"@algolia/requester-fetch": "5.15.0",
54+
"@algolia/requester-node-http": "5.15.0"
5555
},
5656
"devDependencies": {
5757
"@arethetypeswrong/cli": "0.17.0",

packages/client-abtesting/src/abtestingClient.ts

Lines changed: 1 addition & 1 deletion
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.14.2';
34+
export const apiClientVersion = '5.15.0';
3535

3636
export const REGIONS = ['de', 'us'] as const;
3737
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/client-analytics@5.14.2
44+
yarn add @algolia/client-analytics@5.15.0
4545
# or
46-
npm install @algolia/client-analytics@5.14.2
46+
npm install @algolia/client-analytics@5.15.0
4747
# or
48-
pnpm add @algolia/client-analytics@5.14.2
48+
pnpm add @algolia/client-analytics@5.15.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.14.2/dist/builds/browser.umd.js"></script>
56+
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-analytics@5.15.0/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.14.2",
2+
"version": "5.15.0",
33
"repository": {
44
"type": "git",
55
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
@@ -48,10 +48,10 @@
4848
"index.d.ts"
4949
],
5050
"dependencies": {
51-
"@algolia/client-common": "5.14.2",
52-
"@algolia/requester-browser-xhr": "5.14.2",
53-
"@algolia/requester-fetch": "5.14.2",
54-
"@algolia/requester-node-http": "5.14.2"
51+
"@algolia/client-common": "5.15.0",
52+
"@algolia/requester-browser-xhr": "5.15.0",
53+
"@algolia/requester-fetch": "5.15.0",
54+
"@algolia/requester-node-http": "5.15.0"
5555
},
5656
"devDependencies": {
5757
"@arethetypeswrong/cli": "0.17.0",

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

0 commit comments

Comments
 (0)