Skip to content

Commit

Permalink
chore: release 5.13.0
Browse files Browse the repository at this point in the history
Co-authored-by: algolia-bot <accounts+algolia-api-client-bot@algolia.com>
Co-authored-by: Pierre Millot <pierre.millot@algolia.com>
  • Loading branch information
algolia-bot and millotp committed Nov 6, 2024
1 parent 61a0077 commit b50469b
Show file tree
Hide file tree
Showing 41 changed files with 220 additions and 211 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [5.13.0](https://github.com/algolia/algoliasearch-client-javascript/compare/5.12.0...5.13.0)

- [f598e77b1](https://github.com/algolia/api-clients-automation/commit/f598e77b1) fix(javascript): allow import from dist ([#4060](https://github.com/algolia/api-clients-automation/pull/4060)) by [@shortcuts](https://github.com/shortcuts/)
- [801241e12](https://github.com/algolia/api-clients-automation/commit/801241e12) fix(specs): add secrets payload for updates ([#4061](https://github.com/algolia/api-clients-automation/pull/4061)) by [@shortcuts](https://github.com/shortcuts/)
- [625421783](https://github.com/algolia/api-clients-automation/commit/625421783) fix(clients): update browse iterator ([#4058](https://github.com/algolia/api-clients-automation/pull/4058)) by [@Fluf22](https://github.com/Fluf22/)
- [ff2d23c14](https://github.com/algolia/api-clients-automation/commit/ff2d23c14) chore(deps): dependencies 2024-11-04 ([#4065](https://github.com/algolia/api-clients-automation/pull/4065)) by [@algolia-bot](https://github.com/algolia-bot/)
- [bf9173f47](https://github.com/algolia/api-clients-automation/commit/bf9173f47) feat(scripts): compute eligibility dates ([#4064](https://github.com/algolia/api-clients-automation/pull/4064)) by [@shortcuts](https://github.com/shortcuts/)
- [a38ceecc8](https://github.com/algolia/api-clients-automation/commit/a38ceecc8) feat(specs): add composition API ([#4056](https://github.com/algolia/api-clients-automation/pull/4056)) by [@e-krebs](https://github.com/e-krebs/)

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

- [be40cf61d](https://github.com/algolia/api-clients-automation/commit/be40cf61d) feat(specs): add secrets authentications to ingestion ([#4054](https://github.com/algolia/api-clients-automation/pull/4054)) by [@shortcuts](https://github.com/shortcuts/)
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ All of our clients comes with type definition, and are available for both browse
### With a package manager

```bash
yarn add algoliasearch@5.12.0
yarn add algoliasearch@5.13.0
# or
npm install algoliasearch@5.12.0
npm install algoliasearch@5.13.0
# or
pnpm add algoliasearch@5.12.0
pnpm add algoliasearch@5.13.0
```

### Without a package manager
Expand All @@ -51,10 +51,10 @@ Add the following JavaScript snippet to the <head> of your website:

```html
// for the full client
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.12.0/dist/algoliasearch.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.13.0/dist/algoliasearch.umd.js"></script>

// for the lite client
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.12.0/dist/lite/builds/browser.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.13.0/dist/lite/builds/browser.umd.js"></script>
```

### Usage
Expand Down
2 changes: 1 addition & 1 deletion bundlesize.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
},
{
"path": "packages/client-composition/dist/builds/browser.umd.js",
"maxSize": "4.05KB"
"maxSize": "4.55KB"
},
{
"path": "packages/client-insights/dist/builds/browser.umd.js",
Expand Down
10 changes: 5 additions & 5 deletions packages/algoliasearch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ All of our clients comes with type definition, and are available for both browse
### With a package manager

```bash
yarn add algoliasearch@5.12.0
yarn add algoliasearch@5.13.0
# or
npm install algoliasearch@5.12.0
npm install algoliasearch@5.13.0
# or
pnpm add algoliasearch@5.12.0
pnpm add algoliasearch@5.13.0
```

### Without a package manager
Expand All @@ -51,10 +51,10 @@ Add the following JavaScript snippet to the <head> of your website:

```html
// for the full client
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.12.0/dist/algoliasearch.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.13.0/dist/algoliasearch.umd.js"></script>

// for the lite client
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.12.0/dist/lite/builds/browser.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.13.0/dist/lite/builds/browser.umd.js"></script>
```

### Usage
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 @@ -24,7 +24,7 @@ import type {
import type { SearchForFacetValuesResponse } from '../model/searchForFacetValuesResponse';
import type { SearchResponse } from '../model/searchResponse';

export const apiClientVersion = '5.12.0';
export const apiClientVersion = '5.13.0';

function getDefaultHosts(appId: string): Host[] {
return (
Expand Down
30 changes: 15 additions & 15 deletions packages/algoliasearch/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.12.0",
"version": "5.13.0",
"repository": {
"type": "git",
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
Expand Down Expand Up @@ -73,22 +73,22 @@
"lite.d.ts"
],
"dependencies": {
"@algolia/client-abtesting": "5.12.0",
"@algolia/client-analytics": "5.12.0",
"@algolia/client-common": "5.12.0",
"@algolia/client-insights": "5.12.0",
"@algolia/client-personalization": "5.12.0",
"@algolia/client-query-suggestions": "5.12.0",
"@algolia/client-search": "5.12.0",
"@algolia/ingestion": "1.12.0",
"@algolia/monitoring": "1.12.0",
"@algolia/recommend": "5.12.0",
"@algolia/requester-browser-xhr": "5.12.0",
"@algolia/requester-fetch": "5.12.0",
"@algolia/requester-node-http": "5.12.0"
"@algolia/client-abtesting": "5.13.0",
"@algolia/client-analytics": "5.13.0",
"@algolia/client-common": "5.13.0",
"@algolia/client-insights": "5.13.0",
"@algolia/client-personalization": "5.13.0",
"@algolia/client-query-suggestions": "5.13.0",
"@algolia/client-search": "5.13.0",
"@algolia/ingestion": "1.13.0",
"@algolia/monitoring": "1.13.0",
"@algolia/recommend": "5.13.0",
"@algolia/requester-browser-xhr": "5.13.0",
"@algolia/requester-fetch": "5.13.0",
"@algolia/requester-node-http": "5.13.0"
},
"devDependencies": {
"@algolia/requester-testing": "5.12.0",
"@algolia/requester-testing": "5.13.0",
"@arethetypeswrong/cli": "0.16.4",
"@types/node": "22.8.7",
"jsdom": "25.0.1",
Expand Down
8 changes: 4 additions & 4 deletions packages/client-abtesting/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,19 @@ All of our clients comes with type definition, and are available for both browse
### With a package manager

```bash
yarn add @algolia/client-abtesting@5.12.0
yarn add @algolia/client-abtesting@5.13.0
# or
npm install @algolia/client-abtesting@5.12.0
npm install @algolia/client-abtesting@5.13.0
# or
pnpm add @algolia/client-abtesting@5.12.0
pnpm add @algolia/client-abtesting@5.13.0
```

### Without a package manager

Add the following JavaScript snippet to the <head> of your website:

```html
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-abtesting@5.12.0/dist/builds/browser.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-abtesting@5.13.0/dist/builds/browser.umd.js"></script>
```

### Usage
Expand Down
10 changes: 5 additions & 5 deletions packages/client-abtesting/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.12.0",
"version": "5.13.0",
"repository": {
"type": "git",
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
Expand Down Expand Up @@ -48,10 +48,10 @@
"index.d.ts"
],
"dependencies": {
"@algolia/client-common": "5.12.0",
"@algolia/requester-browser-xhr": "5.12.0",
"@algolia/requester-fetch": "5.12.0",
"@algolia/requester-node-http": "5.12.0"
"@algolia/client-common": "5.13.0",
"@algolia/requester-browser-xhr": "5.13.0",
"@algolia/requester-fetch": "5.13.0",
"@algolia/requester-node-http": "5.13.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.16.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 @@ -29,7 +29,7 @@ import type {
StopABTestProps,
} from '../model/clientMethodProps';

export const apiClientVersion = '5.12.0';
export const apiClientVersion = '5.13.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/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,19 @@ All of our clients comes with type definition, and are available for both browse
### With a package manager

```bash
yarn add @algolia/client-analytics@5.12.0
yarn add @algolia/client-analytics@5.13.0
# or
npm install @algolia/client-analytics@5.12.0
npm install @algolia/client-analytics@5.13.0
# or
pnpm add @algolia/client-analytics@5.12.0
pnpm add @algolia/client-analytics@5.13.0
```

### Without a package manager

Add the following JavaScript snippet to the <head> of your website:

```html
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-analytics@5.12.0/dist/builds/browser.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-analytics@5.13.0/dist/builds/browser.umd.js"></script>
```

### Usage
Expand Down
10 changes: 5 additions & 5 deletions packages/client-analytics/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.12.0",
"version": "5.13.0",
"repository": {
"type": "git",
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
Expand Down Expand Up @@ -48,10 +48,10 @@
"index.d.ts"
],
"dependencies": {
"@algolia/client-common": "5.12.0",
"@algolia/requester-browser-xhr": "5.12.0",
"@algolia/requester-fetch": "5.12.0",
"@algolia/requester-node-http": "5.12.0"
"@algolia/client-common": "5.13.0",
"@algolia/requester-browser-xhr": "5.13.0",
"@algolia/requester-fetch": "5.13.0",
"@algolia/requester-node-http": "5.13.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.16.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 @@ -58,7 +58,7 @@ import type {
GetUsersCountProps,
} from '../model/clientMethodProps';

export const apiClientVersion = '5.12.0';
export const apiClientVersion = '5.13.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.12.0",
"version": "5.13.0",
"description": "Common package for the Algolia JavaScript API client.",
"repository": {
"type": "git",
Expand Down
8 changes: 4 additions & 4 deletions packages/client-composition/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@
"index.d.ts"
],
"dependencies": {
"@algolia/client-common": "5.12.0",
"@algolia/requester-browser-xhr": "5.12.0",
"@algolia/requester-fetch": "5.12.0",
"@algolia/requester-node-http": "5.12.0"
"@algolia/client-common": "5.13.0",
"@algolia/requester-browser-xhr": "5.13.0",
"@algolia/requester-fetch": "5.13.0",
"@algolia/requester-node-http": "5.13.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.16.4",
Expand Down
8 changes: 4 additions & 4 deletions packages/client-insights/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,19 @@ All of our clients comes with type definition, and are available for both browse
### With a package manager

```bash
yarn add @algolia/client-insights@5.12.0
yarn add @algolia/client-insights@5.13.0
# or
npm install @algolia/client-insights@5.12.0
npm install @algolia/client-insights@5.13.0
# or
pnpm add @algolia/client-insights@5.12.0
pnpm add @algolia/client-insights@5.13.0
```

### Without a package manager

Add the following JavaScript snippet to the <head> of your website:

```html
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-insights@5.12.0/dist/builds/browser.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-insights@5.13.0/dist/builds/browser.umd.js"></script>
```

### Usage
Expand Down
10 changes: 5 additions & 5 deletions packages/client-insights/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.12.0",
"version": "5.13.0",
"repository": {
"type": "git",
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
Expand Down Expand Up @@ -48,10 +48,10 @@
"index.d.ts"
],
"dependencies": {
"@algolia/client-common": "5.12.0",
"@algolia/requester-browser-xhr": "5.12.0",
"@algolia/requester-fetch": "5.12.0",
"@algolia/requester-node-http": "5.12.0"
"@algolia/client-common": "5.13.0",
"@algolia/requester-browser-xhr": "5.13.0",
"@algolia/requester-fetch": "5.13.0",
"@algolia/requester-node-http": "5.13.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.16.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 @@ -21,7 +21,7 @@ import type {
DeleteUserTokenProps,
} from '../model/clientMethodProps';

export const apiClientVersion = '5.12.0';
export const apiClientVersion = '5.13.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/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,19 @@ All of our clients comes with type definition, and are available for both browse
### With a package manager

```bash
yarn add @algolia/client-personalization@5.12.0
yarn add @algolia/client-personalization@5.13.0
# or
npm install @algolia/client-personalization@5.12.0
npm install @algolia/client-personalization@5.13.0
# or
pnpm add @algolia/client-personalization@5.12.0
pnpm add @algolia/client-personalization@5.13.0
```

### Without a package manager

Add the following JavaScript snippet to the <head> of your website:

```html
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-personalization@5.12.0/dist/builds/browser.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-personalization@5.13.0/dist/builds/browser.umd.js"></script>
```

### Usage
Expand Down
10 changes: 5 additions & 5 deletions packages/client-personalization/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.12.0",
"version": "5.13.0",
"repository": {
"type": "git",
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
Expand Down Expand Up @@ -48,10 +48,10 @@
"index.d.ts"
],
"dependencies": {
"@algolia/client-common": "5.12.0",
"@algolia/requester-browser-xhr": "5.12.0",
"@algolia/requester-fetch": "5.12.0",
"@algolia/requester-node-http": "5.12.0"
"@algolia/client-common": "5.13.0",
"@algolia/requester-browser-xhr": "5.13.0",
"@algolia/requester-fetch": "5.13.0",
"@algolia/requester-node-http": "5.13.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.16.4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import type {
GetUserTokenProfileProps,
} from '../model/clientMethodProps';

export const apiClientVersion = '5.12.0';
export const apiClientVersion = '5.13.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/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,19 @@ All of our clients comes with type definition, and are available for both browse
### With a package manager

```bash
yarn add @algolia/client-query-suggestions@5.12.0
yarn add @algolia/client-query-suggestions@5.13.0
# or
npm install @algolia/client-query-suggestions@5.12.0
npm install @algolia/client-query-suggestions@5.13.0
# or
pnpm add @algolia/client-query-suggestions@5.12.0
pnpm add @algolia/client-query-suggestions@5.13.0
```

### Without a package manager

Add the following JavaScript snippet to the <head> of your website:

```html
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-query-suggestions@5.12.0/dist/builds/browser.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-query-suggestions@5.13.0/dist/builds/browser.umd.js"></script>
```

### Usage
Expand Down
Loading

0 comments on commit b50469b

Please sign in to comment.