Skip to content

Commit dbd54ee

Browse files
chore: release 2025-07-08 [skip ci]
Co-authored-by: Clément Vannicatte <[email protected]>
1 parent ecf8ffc commit dbd54ee

File tree

78 files changed

+125
-127
lines changed

Some content is hidden

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

78 files changed

+125
-127
lines changed

clients/algoliasearch-client-java/algoliasearch/src/main/java/com/algolia/BuildConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ private BuildConfig() {
66
// Empty.
77
}
88

9-
public static final String VERSION = "4.21.1";
9+
public static final String VERSION = "4.21.2";
1010
}

clients/algoliasearch-client-java/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.algolia
2-
VERSION_NAME=4.21.1
2+
VERSION_NAME=4.21.2
33

44
# POM
55
POM_DESCRIPTION=Java client for Algolia Search API

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

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

6060
### Usage

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

5959
### Usage

clients/algoliasearch-client-javascript/packages/abtesting/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,5 @@
6464
},
6565
"engines": {
6666
"node": ">= 14.0.0"
67-
},
68-
"stableVersion": "0.0.1-alpha.2"
67+
}
6968
}

clients/algoliasearch-client-javascript/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.2';
37+
export const apiClientVersion = '0.0.1-alpha.3';
3838

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

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

5959
### Usage

clients/algoliasearch-client-javascript/packages/advanced-personalization/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,5 @@
6464
},
6565
"engines": {
6666
"node": ">= 14.0.0"
67-
},
68-
"stableVersion": "0.0.1-alpha.4"
67+
}
6968
}

clients/algoliasearch-client-javascript/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.4';
37+
export const apiClientVersion = '0.0.1-alpha.5';
3838

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

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

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

6060
### Usage

0 commit comments

Comments
 (0)