Skip to content

Commit 1b94e3a

Browse files
chore: release 5.0.0-beta.6
Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Clément Vannicatte <[email protected]>
1 parent e6e5a65 commit 1b94e3a

File tree

28 files changed

+122
-116
lines changed

28 files changed

+122
-116
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [5.0.0-beta.6](https://github.com/algolia/algoliasearch-client-javascript/compare/5.0.0-beta.5...5.0.0-beta.6)
2+
3+
- [632827bef](https://github.com/algolia/api-clients-automation/commit/632827bef) feat(javascript): legacy `getRecommendations` signature ([#3241](https://github.com/algolia/api-clients-automation/pull/3241)) by [@aymeric-giraudet](https://github.com/aymeric-giraudet/)
4+
- [07e074806](https://github.com/algolia/api-clients-automation/commit/07e074806) feat(clients): add recommend to algoliasearch ([#2860](https://github.com/algolia/api-clients-automation/pull/2860)) by [@shortcuts](https://github.com/shortcuts/)
5+
- [683ecb979](https://github.com/algolia/api-clients-automation/commit/683ecb979) fix(javascript): deprecated publish options ([#3220](https://github.com/algolia/api-clients-automation/pull/3220)) by [@shortcuts](https://github.com/shortcuts/)
6+
17
## [5.0.0-beta.5](https://github.com/algolia/algoliasearch-client-javascript/compare/5.0.0-beta.4...5.0.0-beta.5)
28

39
- [b7ae19f2b](https://github.com/algolia/api-clients-automation/commit/b7ae19f2b) feat(specs): add transformations endpoints to ingestion ([#3215](https://github.com/algolia/api-clients-automation/pull/3215)) by [@shortcuts](https://github.com/shortcuts/)

packages/algoliasearch/lite/src/liteClient.ts

+1-1
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.0-beta.4';
28+
export const apiClientVersion = '5.0.0-beta.5';
2929

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

packages/algoliasearch/package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "algoliasearch",
3-
"version": "5.0.0-beta.4",
3+
"version": "5.0.0-beta.5",
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.0-beta.4",
67-
"@algolia/client-analytics": "5.0.0-beta.4",
68-
"@algolia/client-common": "5.0.0-beta.5",
69-
"@algolia/client-personalization": "5.0.0-beta.4",
70-
"@algolia/client-search": "5.0.0-beta.4",
71-
"@algolia/recommend": "5.0.0-beta.4",
72-
"@algolia/requester-browser-xhr": "5.0.0-beta.5",
73-
"@algolia/requester-node-http": "5.0.0-beta.5"
66+
"@algolia/client-abtesting": "5.0.0-beta.5",
67+
"@algolia/client-analytics": "5.0.0-beta.5",
68+
"@algolia/client-common": "5.0.0-beta.6",
69+
"@algolia/client-personalization": "5.0.0-beta.5",
70+
"@algolia/client-search": "5.0.0-beta.5",
71+
"@algolia/recommend": "5.0.0-beta.5",
72+
"@algolia/requester-browser-xhr": "5.0.0-beta.6",
73+
"@algolia/requester-node-http": "5.0.0-beta.6"
7474
},
7575
"devDependencies": {
7676
"@babel/preset-env": "7.24.7",

packages/client-abtesting/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/client-abtesting",
3-
"version": "5.0.0-beta.4",
3+
"version": "5.0.0-beta.5",
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.0-beta.5",
46-
"@algolia/requester-browser-xhr": "5.0.0-beta.5",
47-
"@algolia/requester-node-http": "5.0.0-beta.5"
45+
"@algolia/client-common": "5.0.0-beta.6",
46+
"@algolia/requester-browser-xhr": "5.0.0-beta.6",
47+
"@algolia/requester-node-http": "5.0.0-beta.6"
4848
},
4949
"devDependencies": {
5050
"@types/node": "20.14.8",

packages/client-abtesting/src/abtestingClient.ts

+1-1
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.0-beta.4';
32+
export const apiClientVersion = '5.0.0-beta.5';
3333

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

packages/client-analytics/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/client-analytics",
3-
"version": "5.0.0-beta.4",
3+
"version": "5.0.0-beta.5",
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.0-beta.5",
46-
"@algolia/requester-browser-xhr": "5.0.0-beta.5",
47-
"@algolia/requester-node-http": "5.0.0-beta.5"
45+
"@algolia/client-common": "5.0.0-beta.6",
46+
"@algolia/requester-browser-xhr": "5.0.0-beta.6",
47+
"@algolia/requester-node-http": "5.0.0-beta.6"
4848
},
4949
"devDependencies": {
5050
"@types/node": "20.14.8",

packages/client-analytics/src/analyticsClient.ts

+1-1
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.0-beta.4';
64+
export const apiClientVersion = '5.0.0-beta.5';
6565

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

packages/client-insights/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@algolia/client-insights",
3-
"version": "5.0.0-beta.4",
3+
"version": "5.0.0-beta.5",
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.0-beta.5",
46-
"@algolia/requester-browser-xhr": "5.0.0-beta.5",
47-
"@algolia/requester-node-http": "5.0.0-beta.5"
45+
"@algolia/client-common": "5.0.0-beta.6",
46+
"@algolia/requester-browser-xhr": "5.0.0-beta.6",
47+
"@algolia/requester-node-http": "5.0.0-beta.6"
4848
},
4949
"devDependencies": {
5050
"@types/node": "20.14.8",

packages/client-insights/src/insightsClient.ts

+1-1
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.0-beta.4';
27+
export const apiClientVersion = '5.0.0-beta.5';
2828

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

packages/client-personalization/package.json

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

packages/client-personalization/src/personalizationClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import type { GetUserTokenResponse } from '../model/getUserTokenResponse';
2727
import type { PersonalizationStrategyParams } from '../model/personalizationStrategyParams';
2828
import type { SetPersonalizationStrategyResponse } from '../model/setPersonalizationStrategyResponse';
2929

30-
export const apiClientVersion = '5.0.0-beta.4';
30+
export const apiClientVersion = '5.0.0-beta.5';
3131

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

packages/client-query-suggestions/package.json

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import type { GetLogFile200Response } from '../model/getLogFile200Response';
3131
import type { QuerySuggestionsConfigurationResponse } from '../model/querySuggestionsConfigurationResponse';
3232
import type { QuerySuggestionsConfigurationWithIndex } from '../model/querySuggestionsConfigurationWithIndex';
3333

34-
export const apiClientVersion = '5.0.0-beta.4';
34+
export const apiClientVersion = '5.0.0-beta.5';
3535

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

packages/client-search/package.json

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

packages/client-search/src/searchClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ import type { UpdatedAtWithObjectIdResponse } from '../model/updatedAtWithObject
125125
import type { UpdatedRuleResponse } from '../model/updatedRuleResponse';
126126
import type { UserId } from '../model/userId';
127127

128-
export const apiClientVersion = '5.0.0-beta.4';
128+
export const apiClientVersion = '5.0.0-beta.5';
129129

130130
function getDefaultHosts(appId: string): Host[] {
131131
return (

packages/client-usage/package.json

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

packages/client-usage/src/usageClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import type {
2525
} from '../model/clientMethodProps';
2626
import type { GetUsage200Response } from '../model/getUsage200Response';
2727

28-
export const apiClientVersion = '0.0.2-beta.4';
28+
export const apiClientVersion = '0.0.2-beta.5';
2929

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

packages/ingestion/package.json

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

packages/ingestion/src/ingestionClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ import type { TransformationTryResponse } from '../model/transformationTryRespon
9494
import type { TransformationUpdateResponse } from '../model/transformationUpdateResponse';
9595
import type { Trigger } from '../model/trigger';
9696

97-
export const apiClientVersion = '1.0.0-beta.4';
97+
export const apiClientVersion = '1.0.0-beta.5';
9898

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

packages/monitoring/package.json

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

packages/monitoring/src/monitoringClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import type { InventoryResponse } from '../model/inventoryResponse';
3333
import type { LatencyResponse } from '../model/latencyResponse';
3434
import type { StatusResponse } from '../model/statusResponse';
3535

36-
export const apiClientVersion = '1.0.0-beta.4';
36+
export const apiClientVersion = '1.0.0-beta.5';
3737

3838
function getDefaultHosts(): Host[] {
3939
return [

packages/recommend/package.json

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

packages/recommend/src/recommendClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import type { GetRecommendationsResponse } from '../model/getRecommendationsResp
3333
import type { RecommendRule } from '../model/recommendRule';
3434
import type { SearchRecommendRulesResponse } from '../model/searchRecommendRulesResponse';
3535

36-
export const apiClientVersion = '5.0.0-beta.4';
36+
export const apiClientVersion = '5.0.0-beta.5';
3737

3838
function getDefaultHosts(appId: string): Host[] {
3939
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.0.0-beta.5",
3+
"version": "5.0.0-beta.6",
44
"description": "Promise-based request library for browser using xhr.",
55
"repository": {
66
"type": "git",
@@ -23,7 +23,7 @@
2323
"test": "jest"
2424
},
2525
"dependencies": {
26-
"@algolia/client-common": "5.0.0-beta.5"
26+
"@algolia/client-common": "5.0.0-beta.6"
2727
},
2828
"devDependencies": {
2929
"@babel/preset-env": "7.24.7",

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.0.0-beta.5",
3+
"version": "5.0.0-beta.6",
44
"description": "Promise-based request library using Fetch.",
55
"repository": {
66
"type": "git",
@@ -23,7 +23,7 @@
2323
"test": "jest"
2424
},
2525
"dependencies": {
26-
"@algolia/client-common": "5.0.0-beta.5"
26+
"@algolia/client-common": "5.0.0-beta.6"
2727
},
2828
"devDependencies": {
2929
"@babel/preset-env": "7.24.7",

0 commit comments

Comments
 (0)