Skip to content

Commit

Permalink
chore: release 5.8.0
Browse files Browse the repository at this point in the history
Co-authored-by: algolia-bot <accounts+algolia-api-client-bot@algolia.com>
  • Loading branch information
algolia-bot committed Oct 8, 2024
1 parent 2a4a4b5 commit 8a575ac
Show file tree
Hide file tree
Showing 39 changed files with 200 additions and 190 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## [5.8.0](https://github.com/algolia/algoliasearch-client-javascript/compare/5.7.0...5.8.0)

- [ad8e3d224](https://github.com/algolia/api-clients-automation/commit/ad8e3d224) fix(specs): update analytics and abtesting max pagination query limit ([#3696](https://github.com/algolia/api-clients-automation/pull/3696)) by [@febeck](https://github.com/febeck/)
- [bed119166](https://github.com/algolia/api-clients-automation/commit/bed119166) feat(specs): add support for widgets / banners in search for the csharp client ([#3870](https://github.com/algolia/api-clients-automation/pull/3870)) by [@Kalmar99](https://github.com/Kalmar99/)
- [844e57f35](https://github.com/algolia/api-clients-automation/commit/844e57f35) fix(specs): correct typos is Search API ([#3898](https://github.com/algolia/api-clients-automation/pull/3898)) by [@gazconroy](https://github.com/gazconroy/)
- [3c4c87619](https://github.com/algolia/api-clients-automation/commit/3c4c87619) chore(deps): dependencies 2024-10-07 ([#3876](https://github.com/algolia/api-clients-automation/pull/3876)) by [@algolia-bot](https://github.com/algolia-bot/)
- [3d5828d61](https://github.com/algolia/api-clients-automation/commit/3d5828d61) fix(javascript): node 14 compatibility ([#3897](https://github.com/algolia/api-clients-automation/pull/3897)) by [@shortcuts](https://github.com/shortcuts/)
- [ed6f4ba0e](https://github.com/algolia/api-clients-automation/commit/ed6f4ba0e) chore(javascript): use oxlint ([#3895](https://github.com/algolia/api-clients-automation/pull/3895)) by [@shortcuts](https://github.com/shortcuts/)
- [f554e09c3](https://github.com/algolia/api-clients-automation/commit/f554e09c3) chore: revert and fix release ([#3922](https://github.com/algolia/api-clients-automation/pull/3922)) by [@millotp](https://github.com/millotp/)

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

- [788483537](https://github.com/algolia/api-clients-automation/commit/788483537) chore(clients): add workflow to auto-close PR ([#3834](https://github.com/algolia/api-clients-automation/pull/3834)) 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.7.0
yarn add algoliasearch@5.8.0
# or
npm install algoliasearch@5.7.0
npm install algoliasearch@5.8.0
# or
pnpm add algoliasearch@5.7.0
pnpm add algoliasearch@5.8.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.7.0/dist/algoliasearch.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.8.0/dist/algoliasearch.umd.js"></script>

// for the lite client
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.7.0/dist/lite/builds/browser.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.8.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.7.0
yarn add algoliasearch@5.8.0
# or
npm install algoliasearch@5.7.0
npm install algoliasearch@5.8.0
# or
pnpm add algoliasearch@5.7.0
pnpm add algoliasearch@5.8.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.7.0/dist/algoliasearch.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@5.8.0/dist/algoliasearch.umd.js"></script>

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

function getDefaultHosts(appId: string): Host[] {
return (
Expand Down
22 changes: 11 additions & 11 deletions packages/algoliasearch/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.7.0",
"version": "5.8.0",
"repository": {
"type": "git",
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
Expand Down Expand Up @@ -73,18 +73,18 @@
"lite.d.ts"
],
"dependencies": {
"@algolia/client-abtesting": "5.7.0",
"@algolia/client-analytics": "5.7.0",
"@algolia/client-common": "5.7.0",
"@algolia/client-personalization": "5.7.0",
"@algolia/client-search": "5.7.0",
"@algolia/recommend": "5.7.0",
"@algolia/requester-browser-xhr": "5.7.0",
"@algolia/requester-fetch": "5.7.0",
"@algolia/requester-node-http": "5.7.0"
"@algolia/client-abtesting": "5.8.0",
"@algolia/client-analytics": "5.8.0",
"@algolia/client-common": "5.8.0",
"@algolia/client-personalization": "5.8.0",
"@algolia/client-search": "5.8.0",
"@algolia/recommend": "5.8.0",
"@algolia/requester-browser-xhr": "5.8.0",
"@algolia/requester-fetch": "5.8.0",
"@algolia/requester-node-http": "5.8.0"
},
"devDependencies": {
"@algolia/requester-testing": "5.7.0",
"@algolia/requester-testing": "5.8.0",
"@arethetypeswrong/cli": "0.16.4",
"@types/node": "22.7.4",
"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.7.0
yarn add @algolia/client-abtesting@5.8.0
# or
npm install @algolia/client-abtesting@5.7.0
npm install @algolia/client-abtesting@5.8.0
# or
pnpm add @algolia/client-abtesting@5.7.0
pnpm add @algolia/client-abtesting@5.8.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.7.0/dist/builds/browser.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-abtesting@5.8.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.7.0",
"version": "5.8.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.7.0",
"@algolia/requester-browser-xhr": "5.7.0",
"@algolia/requester-fetch": "5.7.0",
"@algolia/requester-node-http": "5.7.0"
"@algolia/client-common": "5.8.0",
"@algolia/requester-browser-xhr": "5.8.0",
"@algolia/requester-fetch": "5.8.0",
"@algolia/requester-node-http": "5.8.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.7.0';
export const apiClientVersion = '5.8.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.7.0
yarn add @algolia/client-analytics@5.8.0
# or
npm install @algolia/client-analytics@5.7.0
npm install @algolia/client-analytics@5.8.0
# or
pnpm add @algolia/client-analytics@5.7.0
pnpm add @algolia/client-analytics@5.8.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.7.0/dist/builds/browser.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-analytics@5.8.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.7.0",
"version": "5.8.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.7.0",
"@algolia/requester-browser-xhr": "5.7.0",
"@algolia/requester-fetch": "5.7.0",
"@algolia/requester-node-http": "5.7.0"
"@algolia/client-common": "5.8.0",
"@algolia/requester-browser-xhr": "5.8.0",
"@algolia/requester-fetch": "5.8.0",
"@algolia/requester-node-http": "5.8.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.7.0';
export const apiClientVersion = '5.8.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.7.0",
"version": "5.8.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 @@ -38,19 +38,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.7.0
yarn add @algolia/client-insights@5.8.0
# or
npm install @algolia/client-insights@5.7.0
npm install @algolia/client-insights@5.8.0
# or
pnpm add @algolia/client-insights@5.7.0
pnpm add @algolia/client-insights@5.8.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.7.0/dist/builds/browser.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-insights@5.8.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.7.0",
"version": "5.8.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.7.0",
"@algolia/requester-browser-xhr": "5.7.0",
"@algolia/requester-fetch": "5.7.0",
"@algolia/requester-node-http": "5.7.0"
"@algolia/client-common": "5.8.0",
"@algolia/requester-browser-xhr": "5.8.0",
"@algolia/requester-fetch": "5.8.0",
"@algolia/requester-node-http": "5.8.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.7.0';
export const apiClientVersion = '5.8.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.7.0
yarn add @algolia/client-personalization@5.8.0
# or
npm install @algolia/client-personalization@5.7.0
npm install @algolia/client-personalization@5.8.0
# or
pnpm add @algolia/client-personalization@5.7.0
pnpm add @algolia/client-personalization@5.8.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.7.0/dist/builds/browser.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-personalization@5.8.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.7.0",
"version": "5.8.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.7.0",
"@algolia/requester-browser-xhr": "5.7.0",
"@algolia/requester-fetch": "5.7.0",
"@algolia/requester-node-http": "5.7.0"
"@algolia/client-common": "5.8.0",
"@algolia/requester-browser-xhr": "5.8.0",
"@algolia/requester-fetch": "5.8.0",
"@algolia/requester-node-http": "5.8.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.7.0';
export const apiClientVersion = '5.8.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 @@ -38,19 +38,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.7.0
yarn add @algolia/client-query-suggestions@5.8.0
# or
npm install @algolia/client-query-suggestions@5.7.0
npm install @algolia/client-query-suggestions@5.8.0
# or
pnpm add @algolia/client-query-suggestions@5.7.0
pnpm add @algolia/client-query-suggestions@5.8.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.7.0/dist/builds/browser.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@algolia/client-query-suggestions@5.8.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.7.0",
"version": "5.8.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.7.0",
"@algolia/requester-browser-xhr": "5.7.0",
"@algolia/requester-fetch": "5.7.0",
"@algolia/requester-node-http": "5.7.0"
"@algolia/client-common": "5.8.0",
"@algolia/requester-browser-xhr": "5.8.0",
"@algolia/requester-fetch": "5.8.0",
"@algolia/requester-node-http": "5.8.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.16.4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import type {
UpdateConfigProps,
} from '../model/clientMethodProps';

export const apiClientVersion = '5.7.0';
export const apiClientVersion = '5.8.0';

export const REGIONS = ['eu', 'us'] as const;
export type Region = (typeof REGIONS)[number];
Expand Down
Loading

0 comments on commit 8a575ac

Please sign in to comment.