Skip to content

Commit c558016

Browse files
chore: release 5.31.0
Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Clément Vannicatte <[email protected]>
1 parent cb8d69e commit c558016

File tree

52 files changed

+283
-272
lines changed

Some content is hidden

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

52 files changed

+283
-272
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [5.31.0](https://github.com/algolia/algoliasearch-client-javascript/compare/5.30.0...5.31.0)
2+
3+
- [4c9416a9fe](https://github.com/algolia/api-clients-automation/commit/4c9416a9fe) fix(specs): update sourceRun docs ([#5057](https://github.com/algolia/api-clients-automation/pull/5057)) by [@DevinCodes](https://github.com/DevinCodes/)
4+
- [754efceb80](https://github.com/algolia/api-clients-automation/commit/754efceb80) fix(specs): allow one sided rule validity ([#5060](https://github.com/algolia/api-clients-automation/pull/5060)) by [@millotp](https://github.com/millotp/)
5+
- [2ba91d1df9](https://github.com/algolia/api-clients-automation/commit/2ba91d1df9) chore(deps): dependencies 2025-07-07 ([#5063](https://github.com/algolia/api-clients-automation/pull/5063)) by [@algolia-bot](https://github.com/algolia-bot/)
6+
- [fd5dcdf800](https://github.com/algolia/api-clients-automation/commit/fd5dcdf800) feat(javascript): generate abtesting v3 alpha client ([#4783](https://github.com/algolia/api-clients-automation/pull/4783)) by [@shortcuts](https://github.com/shortcuts/)
7+
18
## [5.30.0](https://github.com/algolia/algoliasearch-client-javascript/compare/5.29.0...5.30.0)
29

310
- [2ca05ef173](https://github.com/algolia/api-clients-automation/commit/2ca05ef173) chore(deps): dependencies 2025-06-23 ([#5016](https://github.com/algolia/api-clients-automation/pull/5016)) by [@algolia-bot](https://github.com/algolia-bot/)

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

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

6060
### Usage

package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@
3232
"path": "packages/algoliasearch/dist/lite/builds/browser.umd.js",
3333
"maxSize": "3.95KB"
3434
},
35+
{
36+
"path": "packages/abtesting/dist/builds/browser.umd.js",
37+
"maxSize": "4.25KB"
38+
},
3539
{
3640
"path": "packages/client-abtesting/dist/builds/browser.umd.js",
3741
"maxSize": "4.20KB"

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

5959
### Usage

packages/abtesting/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"version": "0.0.1-alpha.1",
2+
"version": "0.0.1-alpha.2",
33
"repository": {
44
"type": "git",
55
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
66
},
7-
"homepage": "https://github.com/algolia/algoliasearch-client-javascript/packages/abtesting#readme",
7+
"homepage": "https://github.com/algolia/algoliasearch-client-javascript/tree/main/packages/abtesting#readme",
88
"type": "module",
99
"license": "MIT",
1010
"author": "Algolia",
@@ -49,10 +49,10 @@
4949
"index.d.ts"
5050
],
5151
"dependencies": {
52-
"@algolia/client-common": "5.30.0",
53-
"@algolia/requester-browser-xhr": "5.30.0",
54-
"@algolia/requester-fetch": "5.30.0",
55-
"@algolia/requester-node-http": "5.30.0"
52+
"@algolia/client-common": "5.31.0",
53+
"@algolia/requester-browser-xhr": "5.31.0",
54+
"@algolia/requester-fetch": "5.31.0",
55+
"@algolia/requester-node-http": "5.31.0"
5656
},
5757
"devDependencies": {
5858
"@arethetypeswrong/cli": "0.18.2",

packages/abtesting/src/abtestingClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import type {
3434
StopABTestProps,
3535
} from '../model/clientMethodProps';
3636

37-
export const apiClientVersion = '0.0.1-alpha.1';
37+
export const apiClientVersion = '0.0.1-alpha.2';
3838

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

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

5959
### Usage

packages/advanced-personalization/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"version": "0.0.1-alpha.3",
2+
"version": "0.0.1-alpha.4",
33
"repository": {
44
"type": "git",
55
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
66
},
7-
"homepage": "https://github.com/algolia/algoliasearch-client-javascript/packages/advanced-personalization#readme",
7+
"homepage": "https://github.com/algolia/algoliasearch-client-javascript/tree/main/packages/advanced-personalization#readme",
88
"type": "module",
99
"license": "MIT",
1010
"author": "Algolia",
@@ -49,10 +49,10 @@
4949
"index.d.ts"
5050
],
5151
"dependencies": {
52-
"@algolia/client-common": "5.30.0",
53-
"@algolia/requester-browser-xhr": "5.30.0",
54-
"@algolia/requester-fetch": "5.30.0",
55-
"@algolia/requester-node-http": "5.30.0"
52+
"@algolia/client-common": "5.31.0",
53+
"@algolia/requester-browser-xhr": "5.31.0",
54+
"@algolia/requester-fetch": "5.31.0",
55+
"@algolia/requester-node-http": "5.31.0"
5656
},
5757
"devDependencies": {
5858
"@arethetypeswrong/cli": "0.18.2",

packages/advanced-personalization/src/advancedPersonalizationClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import type {
3434
GetUsersProps,
3535
} from '../model/clientMethodProps';
3636

37-
export const apiClientVersion = '0.0.1-alpha.3';
37+
export const apiClientVersion = '0.0.1-alpha.4';
3838

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

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

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

6060
### Usage

0 commit comments

Comments
 (0)