Skip to content

Commit 04055ab

Browse files
chore: release 5.0.2
Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Clément Vannicatte <[email protected]>
1 parent e85c9fe commit 04055ab

File tree

28 files changed

+120
-116
lines changed

28 files changed

+120
-116
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [5.0.2](https://github.com/algolia/algoliasearch-client-javascript/compare/5.0.1...5.0.2)
2+
3+
- [6cfc2d479](https://github.com/algolia/api-clients-automation/commit/6cfc2d479) chore(specs): update rendered title for search params ([#3553](https://github.com/algolia/api-clients-automation/pull/3553)) by [@shortcuts](https://github.com/shortcuts/)
4+
15
## [5.0.1](https://github.com/algolia/algoliasearch-client-javascript/compare/5.0.0...5.0.1)
26

37
- [40c5d47bd](https://github.com/algolia/api-clients-automation/commit/40c5d47bd) fix(specs): delete user token processing time ([#3525](https://github.com/algolia/api-clients-automation/pull/3525)) by [@kai687](https://github.com/kai687/)

packages/algoliasearch/lite/src/liteClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import type { GetRecommendationsResponse } from '../model/getRecommendationsResp
2525
import type { SearchMethodParams } from '../model/searchMethodParams';
2626
import type { SearchResponses } from '../model/searchResponses';
2727

28-
export const apiClientVersion = '5.0.1';
28+
export const apiClientVersion = '5.0.2';
2929

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

packages/algoliasearch/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "algoliasearch",
3-
"version": "5.0.1",
3+
"version": "5.0.2",
44
"description": "A fully-featured and blazing-fast JavaScript API client to interact with Algolia API.",
55
"repository": {
66
"type": "git",
@@ -63,14 +63,14 @@
6363
"test": "jest"
6464
},
6565
"dependencies": {
66-
"@algolia/client-abtesting": "5.0.1",
67-
"@algolia/client-analytics": "5.0.1",
68-
"@algolia/client-common": "5.0.1",
69-
"@algolia/client-personalization": "5.0.1",
70-
"@algolia/client-search": "5.0.1",
71-
"@algolia/recommend": "5.0.1",
72-
"@algolia/requester-browser-xhr": "5.0.1",
73-
"@algolia/requester-node-http": "5.0.1"
66+
"@algolia/client-abtesting": "5.0.2",
67+
"@algolia/client-analytics": "5.0.2",
68+
"@algolia/client-common": "5.0.2",
69+
"@algolia/client-personalization": "5.0.2",
70+
"@algolia/client-search": "5.0.2",
71+
"@algolia/recommend": "5.0.2",
72+
"@algolia/requester-browser-xhr": "5.0.2",
73+
"@algolia/requester-node-http": "5.0.2"
7474
},
7575
"devDependencies": {
7676
"@babel/preset-env": "7.25.3",

packages/client-abtesting/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/client-abtesting",
3-
"version": "5.0.1",
3+
"version": "5.0.2",
44
"description": "JavaScript client for client-abtesting",
55
"repository": {
66
"type": "git",
@@ -42,9 +42,9 @@
4242
"clean": "rm -rf ./dist || true"
4343
},
4444
"dependencies": {
45-
"@algolia/client-common": "5.0.1",
46-
"@algolia/requester-browser-xhr": "5.0.1",
47-
"@algolia/requester-node-http": "5.0.1"
45+
"@algolia/client-common": "5.0.2",
46+
"@algolia/requester-browser-xhr": "5.0.2",
47+
"@algolia/requester-node-http": "5.0.2"
4848
},
4949
"devDependencies": {
5050
"@types/node": "22.2.0",

packages/client-abtesting/src/abtestingClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import type {
2929
} from '../model/clientMethodProps';
3030
import type { ListABTestsResponse } from '../model/listABTestsResponse';
3131

32-
export const apiClientVersion = '5.0.1';
32+
export const apiClientVersion = '5.0.2';
3333

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

packages/client-analytics/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/client-analytics",
3-
"version": "5.0.1",
3+
"version": "5.0.2",
44
"description": "JavaScript client for client-analytics",
55
"repository": {
66
"type": "git",
@@ -42,9 +42,9 @@
4242
"clean": "rm -rf ./dist || true"
4343
},
4444
"dependencies": {
45-
"@algolia/client-common": "5.0.1",
46-
"@algolia/requester-browser-xhr": "5.0.1",
47-
"@algolia/requester-node-http": "5.0.1"
45+
"@algolia/client-common": "5.0.2",
46+
"@algolia/requester-browser-xhr": "5.0.2",
47+
"@algolia/requester-node-http": "5.0.2"
4848
},
4949
"devDependencies": {
5050
"@types/node": "22.2.0",

packages/client-analytics/src/analyticsClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ import type { GetTopHitsResponse } from '../model/getTopHitsResponse';
6161
import type { GetTopSearchesResponse } from '../model/getTopSearchesResponse';
6262
import type { GetUsersCountResponse } from '../model/getUsersCountResponse';
6363

64-
export const apiClientVersion = '5.0.1';
64+
export const apiClientVersion = '5.0.2';
6565

6666
export const REGIONS = ['de', 'us'] as const;
6767
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.0.1",
3+
"version": "5.0.2",
44
"description": "Common package for the Algolia JavaScript API client.",
55
"repository": {
66
"type": "git",

packages/client-insights/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/client-insights",
3-
"version": "5.0.1",
3+
"version": "5.0.2",
44
"description": "JavaScript client for client-insights",
55
"repository": {
66
"type": "git",
@@ -42,9 +42,9 @@
4242
"clean": "rm -rf ./dist || true"
4343
},
4444
"dependencies": {
45-
"@algolia/client-common": "5.0.1",
46-
"@algolia/requester-browser-xhr": "5.0.1",
47-
"@algolia/requester-node-http": "5.0.1"
45+
"@algolia/client-common": "5.0.2",
46+
"@algolia/requester-browser-xhr": "5.0.2",
47+
"@algolia/requester-node-http": "5.0.2"
4848
},
4949
"devDependencies": {
5050
"@types/node": "22.2.0",

packages/client-insights/src/insightsClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import type {
2424
import type { EventsResponse } from '../model/eventsResponse';
2525
import type { InsightsEvents } from '../model/insightsEvents';
2626

27-
export const apiClientVersion = '5.0.1';
27+
export const apiClientVersion = '5.0.2';
2828

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

0 commit comments

Comments
 (0)