Skip to content

Commit

Permalink
chore: spread release revert (generated)
Browse files Browse the repository at this point in the history
algolia/api-clients-automation#3918

Co-authored-by: algolia-bot <[email protected]>
Co-authored-by: Clément Vannicatte <[email protected]>
  • Loading branch information
algolia-bot and shortcuts committed Oct 8, 2024
1 parent 83f0cf7 commit 3c10984
Show file tree
Hide file tree
Showing 41 changed files with 361 additions and 344 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [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/)

## [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 @@ -40,11 +40,11 @@ All of our clients comes with type definition, and are available for both browse


```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 @@ -53,10 +53,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 package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"bundlesize": "0.18.2",
"execa": "9.4.0",
"lerna": "8.1.8",
"rollup": "4.22.5",
"rollup": "4.24.0",
"semver": "7.6.3",
"typescript": "5.6.2"
},
Expand Down
10 changes: 5 additions & 5 deletions packages/algoliasearch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ All of our clients comes with type definition, and are available for both browse


```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 @@ -53,10 +53,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 @@ -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.7.0';
export const apiClientVersion = '5.8.0';

function getDefaultHosts(appId: string): Host[] {
return (
Expand Down
26 changes: 13 additions & 13 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,26 +73,26 @@
"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",
"publint": "0.2.11",
"rollup": "4.22.5",
"rollup": "4.24.0",
"tsup": "8.3.0",
"typescript": "5.6.2",
"vitest": "2.1.1",
"vitest": "2.1.2",
"vitest-environment-miniflare": "2.14.3"
},
"engines": {
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 @@ -42,19 +42,19 @@ All of our clients comes with type definition, and are available for both browse


```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
12 changes: 6 additions & 6 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,16 +49,16 @@
"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",
"@types/node": "22.7.4",
"publint": "0.2.11",
"rollup": "4.22.5",
"rollup": "4.24.0",
"tsup": "8.3.0",
"typescript": "5.6.2"
},
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.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 @@ -42,19 +42,19 @@ All of our clients comes with type definition, and are available for both browse


```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
12 changes: 6 additions & 6 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,16 +49,16 @@
"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",
"@types/node": "22.7.4",
"publint": "0.2.11",
"rollup": "4.22.5",
"rollup": "4.24.0",
"tsup": "8.3.0",
"typescript": "5.6.2"
},
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.7.0';
export const apiClientVersion = '5.8.0';

export const REGIONS = ['de', 'us'] as const;
export type Region = (typeof REGIONS)[number];
Expand Down
4 changes: 2 additions & 2 deletions 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 Expand Up @@ -41,7 +41,7 @@
"ts-node": "10.9.2",
"tsup": "8.3.0",
"typescript": "5.6.2",
"vitest": "2.1.1"
"vitest": "2.1.2"
},
"engines": {
"node": ">= 14.0.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/client-common/src/transporter/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function serializeQueryParameters(parameters: QueryParameters): string {
Object.prototype.toString.call(parameters[key]) === '[object Array]'
? parameters[key].join(',')
: parameters[key],
).replaceAll('+', '%20')}`,
).replace(/\+/g, '%20')}`,
)
.join('&');
}
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 @@ -40,19 +40,19 @@ All of our clients comes with type definition, and are available for both browse


```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
12 changes: 6 additions & 6 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,16 +49,16 @@
"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",
"@types/node": "22.7.4",
"publint": "0.2.11",
"rollup": "4.22.5",
"rollup": "4.24.0",
"tsup": "8.3.0",
"typescript": "5.6.2"
},
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.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 @@ -42,19 +42,19 @@ All of our clients comes with type definition, and are available for both browse


```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
12 changes: 6 additions & 6 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,16 +49,16 @@
"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",
"@types/node": "22.7.4",
"publint": "0.2.11",
"rollup": "4.22.5",
"rollup": "4.24.0",
"tsup": "8.3.0",
"typescript": "5.6.2"
},
Expand Down
Loading

0 comments on commit 3c10984

Please sign in to comment.