Skip to content

Commit

Permalink
chore: release 5.3.0
Browse files Browse the repository at this point in the history
Co-authored-by: algolia-bot <[email protected]>
Co-authored-by: Clément Vannicatte <[email protected]>
  • Loading branch information
algolia-bot and shortcuts committed Sep 6, 2024
1 parent f05c7d9 commit 8b24e5d
Show file tree
Hide file tree
Showing 28 changed files with 125 additions and 116 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [5.3.0](https://github.com/algolia/algoliasearch-client-javascript/compare/5.2.5...5.3.0)

- [3b673cee4](https://github.com/algolia/api-clients-automation/commit/3b673cee4) fix(javascript): type definition and template cleanup ([#3656](https://github.com/algolia/api-clients-automation/pull/3656)) by [@shortcuts](https://github.com/shortcuts/)
- [2c65a8d11](https://github.com/algolia/api-clients-automation/commit/2c65a8d11) feat(clients): helper to switch API key in use ([#3616](https://github.com/algolia/api-clients-automation/pull/3616)) by [@Fluf22](https://github.com/Fluf22/)
- [f126366dc](https://github.com/algolia/api-clients-automation/commit/f126366dc) fix(specs): note on Analytics API server ([#3650](https://github.com/algolia/api-clients-automation/pull/3650)) by [@kai687](https://github.com/kai687/)
- [3d02b3164](https://github.com/algolia/api-clients-automation/commit/3d02b3164) feat(clients): add helper to check if an index exists ([#3646](https://github.com/algolia/api-clients-automation/pull/3646)) by [@millotp](https://github.com/millotp/)
- [a36746d65](https://github.com/algolia/api-clients-automation/commit/a36746d65) fix(specs): note on insights API server ([#3649](https://github.com/algolia/api-clients-automation/pull/3649)) by [@kai687](https://github.com/kai687/)
- [1f53716c6](https://github.com/algolia/api-clients-automation/commit/1f53716c6) fix(specs): don't extend $ref objects ([#3623](https://github.com/algolia/api-clients-automation/pull/3623)) by [@kai687](https://github.com/kai687/)

## [5.2.5](https://github.com/algolia/algoliasearch-client-javascript/compare/5.2.4...5.2.5)

- [ff0c99653](https://github.com/algolia/api-clients-automation/commit/ff0c99653) chore(javascript): use tsup bundler ([#3640](https://github.com/algolia/api-clients-automation/pull/3640)) by [@shortcuts](https://github.com/shortcuts/)
Expand Down
2 changes: 1 addition & 1 deletion packages/algoliasearch/lite/src/liteClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import type { SearchMethodParams } from '../model/searchMethodParams';
import type { SearchResponse } from '../model/searchResponse';
import type { SearchResponses } from '../model/searchResponses';

export const apiClientVersion = '5.2.5';
export const apiClientVersion = '5.3.0';

function getDefaultHosts(appId: string): Host[] {
return (
Expand Down
18 changes: 9 additions & 9 deletions packages/algoliasearch/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.2.5",
"version": "5.3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
Expand Down Expand Up @@ -65,14 +65,14 @@
"lite.d.ts"
],
"dependencies": {
"@algolia/client-abtesting": "5.2.5",
"@algolia/client-analytics": "5.2.5",
"@algolia/client-common": "5.2.5",
"@algolia/client-personalization": "5.2.5",
"@algolia/client-search": "5.2.5",
"@algolia/recommend": "5.2.5",
"@algolia/requester-browser-xhr": "5.2.5",
"@algolia/requester-node-http": "5.2.5"
"@algolia/client-abtesting": "5.3.0",
"@algolia/client-analytics": "5.3.0",
"@algolia/client-common": "5.3.0",
"@algolia/client-personalization": "5.3.0",
"@algolia/client-search": "5.3.0",
"@algolia/recommend": "5.3.0",
"@algolia/requester-browser-xhr": "5.3.0",
"@algolia/requester-node-http": "5.3.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.15.4",
Expand Down
8 changes: 4 additions & 4 deletions packages/client-abtesting/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.2.5",
"version": "5.3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
Expand Down Expand Up @@ -44,9 +44,9 @@
"index.d.ts"
],
"dependencies": {
"@algolia/client-common": "5.2.5",
"@algolia/requester-browser-xhr": "5.2.5",
"@algolia/requester-node-http": "5.2.5"
"@algolia/client-common": "5.3.0",
"@algolia/requester-browser-xhr": "5.3.0",
"@algolia/requester-node-http": "5.3.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.15.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/client-abtesting/src/abtestingClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import type { ListABTestsResponse } from '../model/listABTestsResponse';
import type { ScheduleABTestResponse } from '../model/scheduleABTestResponse';
import type { ScheduleABTestsRequest } from '../model/scheduleABTestsRequest';

export const apiClientVersion = '5.2.5';
export const apiClientVersion = '5.3.0';

export const REGIONS = ['de', 'us'] as const;
export type Region = (typeof REGIONS)[number];
Expand Down
8 changes: 4 additions & 4 deletions packages/client-analytics/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.2.5",
"version": "5.3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
Expand Down Expand Up @@ -44,9 +44,9 @@
"index.d.ts"
],
"dependencies": {
"@algolia/client-common": "5.2.5",
"@algolia/requester-browser-xhr": "5.2.5",
"@algolia/requester-node-http": "5.2.5"
"@algolia/client-common": "5.3.0",
"@algolia/requester-browser-xhr": "5.3.0",
"@algolia/requester-node-http": "5.3.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.15.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/client-analytics/src/analyticsClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ import type { GetTopHitsResponse } from '../model/getTopHitsResponse';
import type { GetTopSearchesResponse } from '../model/getTopSearchesResponse';
import type { GetUsersCountResponse } from '../model/getUsersCountResponse';

export const apiClientVersion = '5.2.5';
export const apiClientVersion = '5.3.0';

export const REGIONS = ['de', 'us'] as const;
export type Region = (typeof REGIONS)[number];
Expand Down
2 changes: 1 addition & 1 deletion packages/client-common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@algolia/client-common",
"version": "5.2.5",
"version": "5.3.0",
"description": "Common package for the Algolia JavaScript API client.",
"repository": {
"type": "git",
Expand Down
8 changes: 4 additions & 4 deletions packages/client-insights/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.2.5",
"version": "5.3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
Expand Down Expand Up @@ -44,9 +44,9 @@
"index.d.ts"
],
"dependencies": {
"@algolia/client-common": "5.2.5",
"@algolia/requester-browser-xhr": "5.2.5",
"@algolia/requester-node-http": "5.2.5"
"@algolia/client-common": "5.3.0",
"@algolia/requester-browser-xhr": "5.3.0",
"@algolia/requester-node-http": "5.3.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.15.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/client-insights/src/insightsClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import type {
import type { EventsResponse } from '../model/eventsResponse';
import type { InsightsEvents } from '../model/insightsEvents';

export const apiClientVersion = '5.2.5';
export const apiClientVersion = '5.3.0';

export const REGIONS = ['de', 'us'] as const;
export type Region = (typeof REGIONS)[number];
Expand Down
8 changes: 4 additions & 4 deletions packages/client-personalization/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.2.5",
"version": "5.3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
Expand Down Expand Up @@ -44,9 +44,9 @@
"index.d.ts"
],
"dependencies": {
"@algolia/client-common": "5.2.5",
"@algolia/requester-browser-xhr": "5.2.5",
"@algolia/requester-node-http": "5.2.5"
"@algolia/client-common": "5.3.0",
"@algolia/requester-browser-xhr": "5.3.0",
"@algolia/requester-node-http": "5.3.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.15.4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import type { GetUserTokenResponse } from '../model/getUserTokenResponse';
import type { PersonalizationStrategyParams } from '../model/personalizationStrategyParams';
import type { SetPersonalizationStrategyResponse } from '../model/setPersonalizationStrategyResponse';

export const apiClientVersion = '5.2.5';
export const apiClientVersion = '5.3.0';

export const REGIONS = ['eu', 'us'] as const;
export type Region = (typeof REGIONS)[number];
Expand Down
8 changes: 4 additions & 4 deletions packages/client-query-suggestions/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.2.5",
"version": "5.3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
Expand Down Expand Up @@ -44,9 +44,9 @@
"index.d.ts"
],
"dependencies": {
"@algolia/client-common": "5.2.5",
"@algolia/requester-browser-xhr": "5.2.5",
"@algolia/requester-node-http": "5.2.5"
"@algolia/client-common": "5.3.0",
"@algolia/requester-browser-xhr": "5.3.0",
"@algolia/requester-node-http": "5.3.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.15.4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import type { ConfigurationResponse } from '../model/configurationResponse';
import type { ConfigurationWithIndex } from '../model/configurationWithIndex';
import type { LogFile } from '../model/logFile';

export const apiClientVersion = '5.2.5';
export const apiClientVersion = '5.3.0';

export const REGIONS = ['eu', 'us'] as const;
export type Region = (typeof REGIONS)[number];
Expand Down
8 changes: 4 additions & 4 deletions packages/client-search/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.2.5",
"version": "5.3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
Expand Down Expand Up @@ -44,9 +44,9 @@
"index.d.ts"
],
"dependencies": {
"@algolia/client-common": "5.2.5",
"@algolia/requester-browser-xhr": "5.2.5",
"@algolia/requester-node-http": "5.2.5"
"@algolia/client-common": "5.3.0",
"@algolia/requester-browser-xhr": "5.3.0",
"@algolia/requester-node-http": "5.3.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.15.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/client-search/src/searchClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ import type { UpdatedAtWithObjectIdResponse } from '../model/updatedAtWithObject
import type { UpdatedRuleResponse } from '../model/updatedRuleResponse';
import type { UserId } from '../model/userId';

export const apiClientVersion = '5.2.5';
export const apiClientVersion = '5.3.0';

function getDefaultHosts(appId: string): Host[] {
return (
Expand Down
8 changes: 4 additions & 4 deletions packages/client-usage/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.2.5",
"version": "1.3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
Expand Down Expand Up @@ -44,9 +44,9 @@
"index.d.ts"
],
"dependencies": {
"@algolia/client-common": "5.2.5",
"@algolia/requester-browser-xhr": "5.2.5",
"@algolia/requester-node-http": "5.2.5"
"@algolia/client-common": "5.3.0",
"@algolia/requester-browser-xhr": "5.3.0",
"@algolia/requester-node-http": "5.3.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.15.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/client-usage/src/usageClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import type {
} from '../model/clientMethodProps';
import type { IndexUsage } from '../model/indexUsage';

export const apiClientVersion = '1.2.5';
export const apiClientVersion = '1.3.0';

function getDefaultHosts(): Host[] {
return [{ url: 'usage.algolia.com', accept: 'readWrite', protocol: 'https' }];
Expand Down
8 changes: 4 additions & 4 deletions packages/ingestion/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.2.5",
"version": "1.3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
Expand Down Expand Up @@ -44,9 +44,9 @@
"index.d.ts"
],
"dependencies": {
"@algolia/client-common": "5.2.5",
"@algolia/requester-browser-xhr": "5.2.5",
"@algolia/requester-node-http": "5.2.5"
"@algolia/client-common": "5.3.0",
"@algolia/requester-browser-xhr": "5.3.0",
"@algolia/requester-node-http": "5.3.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.15.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/ingestion/src/ingestionClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ import type { TransformationTryResponse } from '../model/transformationTryRespon
import type { TransformationUpdateResponse } from '../model/transformationUpdateResponse';
import type { Trigger } from '../model/trigger';

export const apiClientVersion = '1.2.5';
export const apiClientVersion = '1.3.0';

export const REGIONS = ['eu', 'us'] as const;
export type Region = (typeof REGIONS)[number];
Expand Down
8 changes: 4 additions & 4 deletions packages/monitoring/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.2.5",
"version": "1.3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
Expand Down Expand Up @@ -44,9 +44,9 @@
"index.d.ts"
],
"dependencies": {
"@algolia/client-common": "5.2.5",
"@algolia/requester-browser-xhr": "5.2.5",
"@algolia/requester-node-http": "5.2.5"
"@algolia/client-common": "5.3.0",
"@algolia/requester-browser-xhr": "5.3.0",
"@algolia/requester-node-http": "5.3.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.15.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/monitoring/src/monitoringClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import type { InventoryResponse } from '../model/inventoryResponse';
import type { LatencyResponse } from '../model/latencyResponse';
import type { StatusResponse } from '../model/statusResponse';

export const apiClientVersion = '1.2.5';
export const apiClientVersion = '1.3.0';

function getDefaultHosts(): Host[] {
return [{ url: 'status.algolia.com', accept: 'readWrite', protocol: 'https' }];
Expand Down
8 changes: 4 additions & 4 deletions packages/recommend/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.2.5",
"version": "5.3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
Expand Down Expand Up @@ -44,9 +44,9 @@
"index.d.ts"
],
"dependencies": {
"@algolia/client-common": "5.2.5",
"@algolia/requester-browser-xhr": "5.2.5",
"@algolia/requester-node-http": "5.2.5"
"@algolia/client-common": "5.3.0",
"@algolia/requester-browser-xhr": "5.3.0",
"@algolia/requester-node-http": "5.3.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.15.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/recommend/src/recommendClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import type { GetRecommendationsResponse } from '../model/getRecommendationsResp
import type { RecommendRule } from '../model/recommendRule';
import type { SearchRecommendRulesResponse } from '../model/searchRecommendRulesResponse';

export const apiClientVersion = '5.2.5';
export const apiClientVersion = '5.3.0';

function getDefaultHosts(appId: string): Host[] {
return (
Expand Down
4 changes: 2 additions & 2 deletions packages/requester-browser-xhr/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@algolia/requester-browser-xhr",
"version": "5.2.5",
"version": "5.3.0",
"description": "Promise-based request library for browser using xhr.",
"repository": {
"type": "git",
Expand Down Expand Up @@ -30,7 +30,7 @@
"test:bundle": "publint . && attw --pack . --ignore-rules cjs-resolves-to-esm"
},
"dependencies": {
"@algolia/client-common": "5.2.5"
"@algolia/client-common": "5.3.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.15.4",
Expand Down
4 changes: 2 additions & 2 deletions packages/requester-fetch/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@algolia/requester-fetch",
"version": "5.2.5",
"version": "5.3.0",
"description": "Promise-based request library using Fetch.",
"repository": {
"type": "git",
Expand Down Expand Up @@ -41,7 +41,7 @@
"test:bundle": "publint . && attw --pack ."
},
"dependencies": {
"@algolia/client-common": "5.2.5"
"@algolia/client-common": "5.3.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.15.4",
Expand Down
Loading

0 comments on commit 8b24e5d

Please sign in to comment.