Skip to content

Commit b4b21bb

Browse files
chore: release 5.4.2
Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Clément Vannicatte <[email protected]>
1 parent 9fe7186 commit b4b21bb

File tree

27 files changed

+145
-141
lines changed

27 files changed

+145
-141
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [5.4.2](https://github.com/algolia/algoliasearch-client-javascript/compare/5.4.1...5.4.2)
2+
3+
- [274fae19b](https://github.com/algolia/api-clients-automation/commit/274fae19b) fix(javascript): umd export name ([#3701](https://github.com/algolia/api-clients-automation/pull/3701)) by [@shortcuts](https://github.com/shortcuts/)
4+
15
## [5.4.1](https://github.com/algolia/algoliasearch-client-javascript/compare/5.4.0...5.4.1)
26

37
- [d4df544d6](https://github.com/algolia/api-clients-automation/commit/d4df544d6) fix(specs): remove usage [skip-bc] ([#3691](https://github.com/algolia/api-clients-automation/pull/3691)) by [@kai687](https://github.com/kai687/)

packages/algoliasearch/lite/src/liteClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import type { SearchMethodParams } from '../model/searchMethodParams';
2222
import type { SearchResponse } from '../model/searchResponse';
2323
import type { SearchResponses } from '../model/searchResponses';
2424

25-
export const apiClientVersion = '5.4.1';
25+
export const apiClientVersion = '5.4.2';
2626

2727
function getDefaultHosts(appId: string): Host[] {
2828
return (

packages/algoliasearch/package.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "5.4.1",
2+
"version": "5.4.2",
33
"repository": {
44
"type": "git",
55
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
@@ -69,18 +69,18 @@
6969
"lite.d.ts"
7070
],
7171
"dependencies": {
72-
"@algolia/client-abtesting": "5.4.1",
73-
"@algolia/client-analytics": "5.4.1",
74-
"@algolia/client-common": "5.4.1",
75-
"@algolia/client-personalization": "5.4.1",
76-
"@algolia/client-search": "5.4.1",
77-
"@algolia/recommend": "5.4.1",
78-
"@algolia/requester-browser-xhr": "5.4.1",
79-
"@algolia/requester-fetch": "5.4.1",
80-
"@algolia/requester-node-http": "5.4.1"
72+
"@algolia/client-abtesting": "5.4.2",
73+
"@algolia/client-analytics": "5.4.2",
74+
"@algolia/client-common": "5.4.2",
75+
"@algolia/client-personalization": "5.4.2",
76+
"@algolia/client-search": "5.4.2",
77+
"@algolia/recommend": "5.4.2",
78+
"@algolia/requester-browser-xhr": "5.4.2",
79+
"@algolia/requester-fetch": "5.4.2",
80+
"@algolia/requester-node-http": "5.4.2"
8181
},
8282
"devDependencies": {
83-
"@algolia/requester-testing": "5.4.1",
83+
"@algolia/requester-testing": "5.4.2",
8484
"@arethetypeswrong/cli": "0.15.4",
8585
"@types/node": "22.5.1",
8686
"jsdom": "25.0.0",

packages/client-abtesting/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "5.4.1",
2+
"version": "5.4.2",
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.4.1",
52-
"@algolia/requester-browser-xhr": "5.4.1",
53-
"@algolia/requester-fetch": "5.4.1",
54-
"@algolia/requester-node-http": "5.4.1"
51+
"@algolia/client-common": "5.4.2",
52+
"@algolia/requester-browser-xhr": "5.4.2",
53+
"@algolia/requester-fetch": "5.4.2",
54+
"@algolia/requester-node-http": "5.4.2"
5555
},
5656
"devDependencies": {
5757
"@arethetypeswrong/cli": "0.15.4",

packages/client-abtesting/src/abtestingClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import type { ListABTestsResponse } from '../model/listABTestsResponse';
2727
import type { ScheduleABTestResponse } from '../model/scheduleABTestResponse';
2828
import type { ScheduleABTestsRequest } from '../model/scheduleABTestsRequest';
2929

30-
export const apiClientVersion = '5.4.1';
30+
export const apiClientVersion = '5.4.2';
3131

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

packages/client-analytics/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "5.4.1",
2+
"version": "5.4.2",
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.4.1",
52-
"@algolia/requester-browser-xhr": "5.4.1",
53-
"@algolia/requester-fetch": "5.4.1",
54-
"@algolia/requester-node-http": "5.4.1"
51+
"@algolia/client-common": "5.4.2",
52+
"@algolia/requester-browser-xhr": "5.4.2",
53+
"@algolia/requester-fetch": "5.4.2",
54+
"@algolia/requester-node-http": "5.4.2"
5555
},
5656
"devDependencies": {
5757
"@arethetypeswrong/cli": "0.15.4",

packages/client-analytics/src/analyticsClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ import type { GetTopHitsResponse } from '../model/getTopHitsResponse';
5757
import type { GetTopSearchesResponse } from '../model/getTopSearchesResponse';
5858
import type { GetUsersCountResponse } from '../model/getUsersCountResponse';
5959

60-
export const apiClientVersion = '5.4.1';
60+
export const apiClientVersion = '5.4.2';
6161

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

packages/client-insights/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "5.4.1",
2+
"version": "5.4.2",
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.4.1",
52-
"@algolia/requester-browser-xhr": "5.4.1",
53-
"@algolia/requester-fetch": "5.4.1",
54-
"@algolia/requester-node-http": "5.4.1"
51+
"@algolia/client-common": "5.4.2",
52+
"@algolia/requester-browser-xhr": "5.4.2",
53+
"@algolia/requester-fetch": "5.4.2",
54+
"@algolia/requester-node-http": "5.4.2"
5555
},
5656
"devDependencies": {
5757
"@arethetypeswrong/cli": "0.15.4",

packages/client-insights/src/insightsClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import type {
2020
import type { EventsResponse } from '../model/eventsResponse';
2121
import type { InsightsEvents } from '../model/insightsEvents';
2222

23-
export const apiClientVersion = '5.4.1';
23+
export const apiClientVersion = '5.4.2';
2424

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

packages/client-personalization/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "5.4.1",
2+
"version": "5.4.2",
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.4.1",
52-
"@algolia/requester-browser-xhr": "5.4.1",
53-
"@algolia/requester-fetch": "5.4.1",
54-
"@algolia/requester-node-http": "5.4.1"
51+
"@algolia/client-common": "5.4.2",
52+
"@algolia/requester-browser-xhr": "5.4.2",
53+
"@algolia/requester-fetch": "5.4.2",
54+
"@algolia/requester-node-http": "5.4.2"
5555
},
5656
"devDependencies": {
5757
"@arethetypeswrong/cli": "0.15.4",

packages/client-personalization/src/personalizationClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import type { GetUserTokenResponse } from '../model/getUserTokenResponse';
2323
import type { PersonalizationStrategyParams } from '../model/personalizationStrategyParams';
2424
import type { SetPersonalizationStrategyResponse } from '../model/setPersonalizationStrategyResponse';
2525

26-
export const apiClientVersion = '5.4.1';
26+
export const apiClientVersion = '5.4.2';
2727

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

packages/client-query-suggestions/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "5.4.1",
2+
"version": "5.4.2",
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.4.1",
52-
"@algolia/requester-browser-xhr": "5.4.1",
53-
"@algolia/requester-fetch": "5.4.1",
54-
"@algolia/requester-node-http": "5.4.1"
51+
"@algolia/client-common": "5.4.2",
52+
"@algolia/requester-browser-xhr": "5.4.2",
53+
"@algolia/requester-fetch": "5.4.2",
54+
"@algolia/requester-node-http": "5.4.2"
5555
},
5656
"devDependencies": {
5757
"@arethetypeswrong/cli": "0.15.4",

packages/client-query-suggestions/src/querySuggestionsClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import type { ConfigurationResponse } from '../model/configurationResponse';
2727
import type { ConfigurationWithIndex } from '../model/configurationWithIndex';
2828
import type { LogFile } from '../model/logFile';
2929

30-
export const apiClientVersion = '5.4.1';
30+
export const apiClientVersion = '5.4.2';
3131

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

packages/client-search/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "5.4.1",
2+
"version": "5.4.2",
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.4.1",
52-
"@algolia/requester-browser-xhr": "5.4.1",
53-
"@algolia/requester-fetch": "5.4.1",
54-
"@algolia/requester-node-http": "5.4.1"
51+
"@algolia/client-common": "5.4.2",
52+
"@algolia/requester-browser-xhr": "5.4.2",
53+
"@algolia/requester-fetch": "5.4.2",
54+
"@algolia/requester-node-http": "5.4.2"
5555
},
5656
"devDependencies": {
5757
"@arethetypeswrong/cli": "0.15.4",

packages/client-search/src/searchClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ import type { UpdatedAtWithObjectIdResponse } from '../model/updatedAtWithObject
128128
import type { UpdatedRuleResponse } from '../model/updatedRuleResponse';
129129
import type { UserId } from '../model/userId';
130130

131-
export const apiClientVersion = '5.4.1';
131+
export const apiClientVersion = '5.4.2';
132132

133133
function getDefaultHosts(appId: string): Host[] {
134134
return (

packages/ingestion/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.4.1",
2+
"version": "1.4.2",
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.4.1",
52-
"@algolia/requester-browser-xhr": "5.4.1",
53-
"@algolia/requester-fetch": "5.4.1",
54-
"@algolia/requester-node-http": "5.4.1"
51+
"@algolia/client-common": "5.4.2",
52+
"@algolia/requester-browser-xhr": "5.4.2",
53+
"@algolia/requester-fetch": "5.4.2",
54+
"@algolia/requester-node-http": "5.4.2"
5555
},
5656
"devDependencies": {
5757
"@arethetypeswrong/cli": "0.15.4",

packages/ingestion/src/ingestionClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ import type { TransformationTryResponse } from '../model/transformationTryRespon
107107
import type { TransformationUpdateResponse } from '../model/transformationUpdateResponse';
108108
import type { Trigger } from '../model/trigger';
109109

110-
export const apiClientVersion = '1.4.1';
110+
export const apiClientVersion = '1.4.2';
111111

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

packages/monitoring/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.4.1",
2+
"version": "1.4.2",
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.4.1",
52-
"@algolia/requester-browser-xhr": "5.4.1",
53-
"@algolia/requester-fetch": "5.4.1",
54-
"@algolia/requester-node-http": "5.4.1"
51+
"@algolia/client-common": "5.4.2",
52+
"@algolia/requester-browser-xhr": "5.4.2",
53+
"@algolia/requester-fetch": "5.4.2",
54+
"@algolia/requester-node-http": "5.4.2"
5555
},
5656
"devDependencies": {
5757
"@arethetypeswrong/cli": "0.15.4",

packages/monitoring/src/monitoringClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import type { InventoryResponse } from '../model/inventoryResponse';
2929
import type { LatencyResponse } from '../model/latencyResponse';
3030
import type { StatusResponse } from '../model/statusResponse';
3131

32-
export const apiClientVersion = '1.4.1';
32+
export const apiClientVersion = '1.4.2';
3333

3434
function getDefaultHosts(): Host[] {
3535
return [{ url: 'status.algolia.com', accept: 'readWrite', protocol: 'https' }];

packages/recommend/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "5.4.1",
2+
"version": "5.4.2",
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.4.1",
52-
"@algolia/requester-browser-xhr": "5.4.1",
53-
"@algolia/requester-fetch": "5.4.1",
54-
"@algolia/requester-node-http": "5.4.1"
51+
"@algolia/client-common": "5.4.2",
52+
"@algolia/requester-browser-xhr": "5.4.2",
53+
"@algolia/requester-fetch": "5.4.2",
54+
"@algolia/requester-node-http": "5.4.2"
5555
},
5656
"devDependencies": {
5757
"@arethetypeswrong/cli": "0.15.4",

packages/recommend/src/recommendClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import type { GetRecommendationsResponse } from '../model/getRecommendationsResp
2828
import type { RecommendRule } from '../model/recommendRule';
2929
import type { SearchRecommendRulesResponse } from '../model/searchRecommendRulesResponse';
3030

31-
export const apiClientVersion = '5.4.1';
31+
export const apiClientVersion = '5.4.2';
3232

3333
function getDefaultHosts(appId: string): Host[] {
3434
return (

packages/requester-browser-xhr/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/requester-browser-xhr",
3-
"version": "5.4.1",
3+
"version": "5.4.2",
44
"description": "Promise-based request library for browser using xhr.",
55
"repository": {
66
"type": "git",
@@ -30,7 +30,7 @@
3030
"test:bundle": "publint . && attw --pack . --ignore-rules cjs-resolves-to-esm"
3131
},
3232
"dependencies": {
33-
"@algolia/client-common": "5.4.1"
33+
"@algolia/client-common": "5.4.2"
3434
},
3535
"devDependencies": {
3636
"@arethetypeswrong/cli": "0.16.1",

packages/requester-fetch/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/requester-fetch",
3-
"version": "5.4.1",
3+
"version": "5.4.2",
44
"description": "Promise-based request library using Fetch.",
55
"repository": {
66
"type": "git",
@@ -46,7 +46,7 @@
4646
"test:bundle": "publint . && attw --pack ."
4747
},
4848
"dependencies": {
49-
"@algolia/client-common": "5.4.1"
49+
"@algolia/client-common": "5.4.2"
5050
},
5151
"devDependencies": {
5252
"@arethetypeswrong/cli": "0.16.1",

packages/requester-node-http/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/requester-node-http",
3-
"version": "5.4.1",
3+
"version": "5.4.2",
44
"description": "Promise-based request library for node using the native http module.",
55
"repository": {
66
"type": "git",
@@ -34,7 +34,7 @@
3434
"test:bundle": "publint . && attw --pack ."
3535
},
3636
"dependencies": {
37-
"@algolia/client-common": "5.4.1"
37+
"@algolia/client-common": "5.4.2"
3838
},
3939
"devDependencies": {
4040
"@arethetypeswrong/cli": "0.16.1",

0 commit comments

Comments
 (0)