Skip to content

Commit

Permalink
chore: release 5.9.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 Oct 17, 2024
1 parent 6c2f447 commit a633214
Show file tree
Hide file tree
Showing 39 changed files with 210 additions and 199 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## [5.9.0](https://github.com/algolia/algoliasearch-client-javascript/compare/5.8.1...5.9.0)

- [56164aab9](https://github.com/algolia/api-clients-automation/commit/56164aab9) fix(javascript): do not publish ts ([#3966](https://github.com/algolia/api-clients-automation/pull/3966)) by [@shortcuts](https://github.com/shortcuts/)
- [cd98290fa](https://github.com/algolia/api-clients-automation/commit/cd98290fa) fix(specs): Typo tolernace on words ([#3968](https://github.com/algolia/api-clients-automation/pull/3968)) by [@gazconroy](https://github.com/gazconroy/)
- [21d09d3d3](https://github.com/algolia/api-clients-automation/commit/21d09d3d3) feat(javascript): add every APIs ([#3942](https://github.com/algolia/api-clients-automation/pull/3942)) by [@shortcuts](https://github.com/shortcuts/)
- [5866c2954](https://github.com/algolia/api-clients-automation/commit/5866c2954) fix(specs): Add context to hitsPerPage ([#3969](https://github.com/algolia/api-clients-automation/pull/3969)) by [@gazconroy](https://github.com/gazconroy/)
- [95e4149a3](https://github.com/algolia/api-clients-automation/commit/95e4149a3) chore(deps): dependencies 2024-10-14 ([#3944](https://github.com/algolia/api-clients-automation/pull/3944)) by [@algolia-bot](https://github.com/algolia-bot/)
- [8b879dead](https://github.com/algolia/api-clients-automation/commit/8b879dead) fix(specs): alternativesAsExact is plurals and synonyms ([#3974](https://github.com/algolia/api-clients-automation/pull/3974)) by [@gazconroy](https://github.com/gazconroy/)
- [1a9b95e85](https://github.com/algolia/api-clients-automation/commit/1a9b95e85) fix(specs): Separators are non-alphanumeric characters ([#3978](https://github.com/algolia/api-clients-automation/pull/3978)) by [@gazconroy](https://github.com/gazconroy/)
- [519fd9840](https://github.com/algolia/api-clients-automation/commit/519fd9840) fix(specs): multiple clients fixes ([#3971](https://github.com/algolia/api-clients-automation/pull/3971)) by [@shortcuts](https://github.com/shortcuts/)

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

- [f516d0243](https://github.com/algolia/api-clients-automation/commit/f516d0243) fix(specs): Typos in API descriptions ([#3932](https://github.com/algolia/api-clients-automation/pull/3932)) by [@gazconroy](https://github.com/gazconroy/)
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.8.1
yarn add algoliasearch@5.9.0
# or
npm install algoliasearch@5.8.1
npm install algoliasearch@5.9.0
# or
pnpm add algoliasearch@5.8.1
pnpm add algoliasearch@5.9.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.8.1/dist/algoliasearch.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.9.0/dist/algoliasearch.umd.js"></script>

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

### Usage
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.8.1
yarn add algoliasearch@5.9.0
# or
npm install algoliasearch@5.8.1
npm install algoliasearch@5.9.0
# or
pnpm add algoliasearch@5.8.1
pnpm add algoliasearch@5.9.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.8.1/dist/algoliasearch.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.9.0/dist/algoliasearch.umd.js"></script>

// for the lite client
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.8.1/dist/lite/builds/browser.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.9.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.8.1';
export const apiClientVersion = '5.9.0';

function getDefaultHosts(appId: string): Host[] {
return (
Expand Down
28 changes: 14 additions & 14 deletions packages/algoliasearch/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.8.1",
"version": "5.9.0",
"repository": {
"type": "git",
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
Expand Down Expand Up @@ -73,21 +73,21 @@
"lite.d.ts"
],
"dependencies": {
"@algolia/client-abtesting": "5.8.1",
"@algolia/client-analytics": "5.8.1",
"@algolia/client-common": "5.8.1",
"@algolia/client-insights": "5.8.1",
"@algolia/client-personalization": "5.8.1",
"@algolia/client-query-suggestions": "5.8.1",
"@algolia/ingestion": "1.8.1",
"@algolia/monitoring": "1.8.1",
"@algolia/recommend": "5.8.1",
"@algolia/requester-browser-xhr": "5.8.1",
"@algolia/requester-fetch": "5.8.1",
"@algolia/requester-node-http": "5.8.1"
"@algolia/client-abtesting": "5.9.0",
"@algolia/client-analytics": "5.9.0",
"@algolia/client-common": "5.9.0",
"@algolia/client-insights": "5.9.0",
"@algolia/client-personalization": "5.9.0",
"@algolia/client-query-suggestions": "5.9.0",
"@algolia/ingestion": "1.9.0",
"@algolia/monitoring": "1.9.0",
"@algolia/recommend": "5.9.0",
"@algolia/requester-browser-xhr": "5.9.0",
"@algolia/requester-fetch": "5.9.0",
"@algolia/requester-node-http": "5.9.0"
},
"devDependencies": {
"@algolia/requester-testing": "5.8.1",
"@algolia/requester-testing": "5.9.0",
"@arethetypeswrong/cli": "0.16.4",
"@types/node": "22.7.5",
"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.8.1
yarn add @algolia/client-abtesting@5.9.0
# or
npm install @algolia/client-abtesting@5.8.1
npm install @algolia/client-abtesting@5.9.0
# or
pnpm add @algolia/client-abtesting@5.8.1
pnpm add @algolia/client-abtesting@5.9.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.8.1/dist/builds/browser.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-abtesting@5.9.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.8.1",
"version": "5.9.0",
"repository": {
"type": "git",
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
Expand Down Expand Up @@ -49,10 +49,10 @@
"index.d.ts"
],
"dependencies": {
"@algolia/client-common": "5.8.1",
"@algolia/requester-browser-xhr": "5.8.1",
"@algolia/requester-fetch": "5.8.1",
"@algolia/requester-node-http": "5.8.1"
"@algolia/client-common": "5.9.0",
"@algolia/requester-browser-xhr": "5.9.0",
"@algolia/requester-fetch": "5.9.0",
"@algolia/requester-node-http": "5.9.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.8.1';
export const apiClientVersion = '5.9.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.8.1
yarn add @algolia/client-analytics@5.9.0
# or
npm install @algolia/client-analytics@5.8.1
npm install @algolia/client-analytics@5.9.0
# or
pnpm add @algolia/client-analytics@5.8.1
pnpm add @algolia/client-analytics@5.9.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.8.1/dist/builds/browser.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-analytics@5.9.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.8.1",
"version": "5.9.0",
"repository": {
"type": "git",
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
Expand Down Expand Up @@ -49,10 +49,10 @@
"index.d.ts"
],
"dependencies": {
"@algolia/client-common": "5.8.1",
"@algolia/requester-browser-xhr": "5.8.1",
"@algolia/requester-fetch": "5.8.1",
"@algolia/requester-node-http": "5.8.1"
"@algolia/client-common": "5.9.0",
"@algolia/requester-browser-xhr": "5.9.0",
"@algolia/requester-fetch": "5.9.0",
"@algolia/requester-node-http": "5.9.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.8.1';
export const apiClientVersion = '5.9.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.8.1",
"version": "5.9.0",
"description": "Common package for the Algolia JavaScript API client.",
"repository": {
"type": "git",
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.8.1
yarn add @algolia/client-insights@5.9.0
# or
npm install @algolia/client-insights@5.8.1
npm install @algolia/client-insights@5.9.0
# or
pnpm add @algolia/client-insights@5.8.1
pnpm add @algolia/client-insights@5.9.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.8.1/dist/builds/browser.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-insights@5.9.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.8.1",
"version": "5.9.0",
"repository": {
"type": "git",
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
Expand Down Expand Up @@ -49,10 +49,10 @@
"index.d.ts"
],
"dependencies": {
"@algolia/client-common": "5.8.1",
"@algolia/requester-browser-xhr": "5.8.1",
"@algolia/requester-fetch": "5.8.1",
"@algolia/requester-node-http": "5.8.1"
"@algolia/client-common": "5.9.0",
"@algolia/requester-browser-xhr": "5.9.0",
"@algolia/requester-fetch": "5.9.0",
"@algolia/requester-node-http": "5.9.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.8.1';
export const apiClientVersion = '5.9.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.8.1
yarn add @algolia/client-personalization@5.9.0
# or
npm install @algolia/client-personalization@5.8.1
npm install @algolia/client-personalization@5.9.0
# or
pnpm add @algolia/client-personalization@5.8.1
pnpm add @algolia/client-personalization@5.9.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.8.1/dist/builds/browser.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-personalization@5.9.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.8.1",
"version": "5.9.0",
"repository": {
"type": "git",
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
Expand Down Expand Up @@ -49,10 +49,10 @@
"index.d.ts"
],
"dependencies": {
"@algolia/client-common": "5.8.1",
"@algolia/requester-browser-xhr": "5.8.1",
"@algolia/requester-fetch": "5.8.1",
"@algolia/requester-node-http": "5.8.1"
"@algolia/client-common": "5.9.0",
"@algolia/requester-browser-xhr": "5.9.0",
"@algolia/requester-fetch": "5.9.0",
"@algolia/requester-node-http": "5.9.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.8.1';
export const apiClientVersion = '5.9.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.8.1
yarn add @algolia/client-query-suggestions@5.9.0
# or
npm install @algolia/client-query-suggestions@5.8.1
npm install @algolia/client-query-suggestions@5.9.0
# or
pnpm add @algolia/client-query-suggestions@5.8.1
pnpm add @algolia/client-query-suggestions@5.9.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.8.1/dist/builds/browser.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-query-suggestions@5.9.0/dist/builds/browser.umd.js"></script>
```

### Usage
Expand Down
10 changes: 5 additions & 5 deletions packages/client-query-suggestions/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.8.1",
"version": "5.9.0",
"repository": {
"type": "git",
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
Expand Down Expand Up @@ -49,10 +49,10 @@
"index.d.ts"
],
"dependencies": {
"@algolia/client-common": "5.8.1",
"@algolia/requester-browser-xhr": "5.8.1",
"@algolia/requester-fetch": "5.8.1",
"@algolia/requester-node-http": "5.8.1"
"@algolia/client-common": "5.9.0",
"@algolia/requester-browser-xhr": "5.9.0",
"@algolia/requester-fetch": "5.9.0",
"@algolia/requester-node-http": "5.9.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.16.4",
Expand Down
Loading

0 comments on commit a633214

Please sign in to comment.