Skip to content

Commit a159f76

Browse files
algolia-botmillotp
andauthored
chore: release v3.8.1 (#2412)
Co-authored-by: Pierre Millot <[email protected]>
1 parent 7a42e60 commit a159f76

File tree

10 files changed

+34
-25
lines changed

10 files changed

+34
-25
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## [3.8.1](https://github.com/algolia/docsearch/compare/v3.8.0...v3.8.1) (2024-12-16)
2+
3+
4+
### Bug Fixes
5+
6+
* use SearchParamsObject for searchParameters ([#2362](https://github.com/algolia/docsearch/issues/2362)) ([24c6b4d](https://github.com/algolia/docsearch/commit/24c6b4dbf7bd476683ddea6ba14f641dcca31895))
7+
8+
9+
110
# [3.8.0](https://github.com/algolia/docsearch/compare/v3.7.0...v3.8.0) (2024-11-12)
211

312
This version introduces a new type [DocSearchTransformClient](https://github.com/algolia/docsearch/blob/main/packages/docsearch-react/src/DocSearch.tsx#L19) to allow the `transformSearchClient` to use either the lite client, or the full algoliasearch client.

examples/demo/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@docsearch/react-example",
33
"description": "DocSearch v3 React example",
4-
"version": "3.8.0",
4+
"version": "3.8.1",
55
"private": true,
66
"license": "MIT",
77
"type": "module",
@@ -11,8 +11,8 @@
1111
"preview": "vite preview"
1212
},
1313
"dependencies": {
14-
"@docsearch/css": "3.8.0",
15-
"@docsearch/react": "3.8.0",
14+
"@docsearch/css": "3.8.1",
15+
"@docsearch/react": "3.8.1",
1616
"react": "^18.0.0",
1717
"react-dom": "^18.0.0"
1818
},

examples/js-demo/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@docsearch/js-example",
33
"description": "DocSearch v3 Vanilla JavaScript example",
4-
"version": "3.8.0",
4+
"version": "3.8.1",
55
"private": true,
66
"license": "MIT",
77
"scripts": {
@@ -10,8 +10,8 @@
1010
"preview": "vite preview"
1111
},
1212
"dependencies": {
13-
"@docsearch/css": "3.8.0",
14-
"@docsearch/js": "3.8.0"
13+
"@docsearch/css": "3.8.1",
14+
"@docsearch/js": "3.8.1"
1515
},
1616
"devDependencies": {
1717
"vite": "^5.4.10"

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"packages/*",
44
"examples/*"
55
],
6-
"version": "3.8.0",
6+
"version": "3.8.1",
77
"npmClient": "yarn"
88
}

packages/docsearch-css/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@docsearch/css",
33
"description": "Styles for DocSearch.",
4-
"version": "3.8.0",
4+
"version": "3.8.1",
55
"license": "MIT",
66
"homepage": "https://docsearch.algolia.com",
77
"repository": {

packages/docsearch-js/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@docsearch/js",
33
"description": "JavaScript package for DocSearch, the best search experience for docs.",
4-
"version": "3.8.0",
4+
"version": "3.8.1",
55
"license": "MIT",
66
"homepage": "https://docsearch.algolia.com",
77
"repository": {
@@ -33,7 +33,7 @@
3333
"watch": "watch \"yarn on:change\" --ignoreDirectoryPattern \"/dist/\""
3434
},
3535
"dependencies": {
36-
"@docsearch/react": "3.8.0",
36+
"@docsearch/react": "3.8.1",
3737
"preact": "^10.0.0"
3838
},
3939
"devDependencies": {

packages/docsearch-react/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@docsearch/react",
33
"description": "React package for DocSearch, the best search experience for docs.",
4-
"version": "3.8.0",
4+
"version": "3.8.1",
55
"license": "MIT",
66
"homepage": "https://docsearch.algolia.com",
77
"repository": {
@@ -38,7 +38,7 @@
3838
"dependencies": {
3939
"@algolia/autocomplete-core": "1.17.7",
4040
"@algolia/autocomplete-preset-algolia": "1.17.7",
41-
"@docsearch/css": "3.8.0",
41+
"@docsearch/css": "3.8.1",
4242
"algoliasearch": "^5.14.2"
4343
},
4444
"devDependencies": {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const version = '3.8.0';
1+
export const version = '3.8.1';

packages/website/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@docsearch/website",
3-
"version": "3.8.0",
3+
"version": "3.8.1",
44
"private": true,
55
"homepage": "https://docsearch.algolia.com/",
66
"scripts": {
@@ -17,7 +17,7 @@
1717
},
1818
"dependencies": {
1919
"@algolia/ui-library": "5.86.0",
20-
"@docsearch/react": "3.8.0",
20+
"@docsearch/react": "3.8.1",
2121
"@docusaurus/core": "3.6.1",
2222
"@docusaurus/preset-classic": "3.6.1",
2323
"@mdx-js/react": "^3.1.0",

yarn.lock

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2258,7 +2258,7 @@ __metadata:
22582258
languageName: node
22592259
linkType: hard
22602260

2261-
"@docsearch/css@npm:3.8.0, @docsearch/css@workspace:packages/docsearch-css":
2261+
"@docsearch/css@npm:3.8.1, @docsearch/css@workspace:packages/docsearch-css":
22622262
version: 0.0.0-use.local
22632263
resolution: "@docsearch/css@workspace:packages/docsearch-css"
22642264
languageName: unknown
@@ -2268,17 +2268,17 @@ __metadata:
22682268
version: 0.0.0-use.local
22692269
resolution: "@docsearch/js-example@workspace:examples/js-demo"
22702270
dependencies:
2271-
"@docsearch/css": "npm:3.8.0"
2272-
"@docsearch/js": "npm:3.8.0"
2271+
"@docsearch/css": "npm:3.8.1"
2272+
"@docsearch/js": "npm:3.8.1"
22732273
vite: "npm:^5.4.10"
22742274
languageName: unknown
22752275
linkType: soft
22762276

2277-
"@docsearch/js@npm:3.8.0, @docsearch/js@workspace:packages/docsearch-js":
2277+
"@docsearch/js@npm:3.8.1, @docsearch/js@workspace:packages/docsearch-js":
22782278
version: 0.0.0-use.local
22792279
resolution: "@docsearch/js@workspace:packages/docsearch-js"
22802280
dependencies:
2281-
"@docsearch/react": "npm:3.8.0"
2281+
"@docsearch/react": "npm:3.8.1"
22822282
"@rollup/plugin-replace": "npm:6.0.1"
22832283
preact: "npm:^10.0.0"
22842284
languageName: unknown
@@ -2346,22 +2346,22 @@ __metadata:
23462346
version: 0.0.0-use.local
23472347
resolution: "@docsearch/react-example@workspace:examples/demo"
23482348
dependencies:
2349-
"@docsearch/css": "npm:3.8.0"
2350-
"@docsearch/react": "npm:3.8.0"
2349+
"@docsearch/css": "npm:3.8.1"
2350+
"@docsearch/react": "npm:3.8.1"
23512351
"@vitejs/plugin-react": "npm:^4.3.3"
23522352
react: "npm:^18.0.0"
23532353
react-dom: "npm:^18.0.0"
23542354
vite: "npm:^5.4.10"
23552355
languageName: unknown
23562356
linkType: soft
23572357

2358-
"@docsearch/react@npm:3.8.0, @docsearch/react@npm:^3.5.2, @docsearch/react@workspace:packages/docsearch-react":
2358+
"@docsearch/react@npm:3.8.1, @docsearch/react@npm:^3.5.2, @docsearch/react@workspace:packages/docsearch-react":
23592359
version: 0.0.0-use.local
23602360
resolution: "@docsearch/react@workspace:packages/docsearch-react"
23612361
dependencies:
23622362
"@algolia/autocomplete-core": "npm:1.17.7"
23632363
"@algolia/autocomplete-preset-algolia": "npm:1.17.7"
2364-
"@docsearch/css": "npm:3.8.0"
2364+
"@docsearch/css": "npm:3.8.1"
23652365
"@rollup/plugin-replace": "npm:6.0.1"
23662366
"@testing-library/jest-dom": "npm:6.6.3"
23672367
"@testing-library/react": "npm:16.0.1"
@@ -2389,7 +2389,7 @@ __metadata:
23892389
resolution: "@docsearch/website@workspace:packages/website"
23902390
dependencies:
23912391
"@algolia/ui-library": "npm:5.86.0"
2392-
"@docsearch/react": "npm:3.8.0"
2392+
"@docsearch/react": "npm:3.8.1"
23932393
"@docusaurus/core": "npm:3.6.1"
23942394
"@docusaurus/preset-classic": "npm:3.6.1"
23952395
"@mdx-js/react": "npm:^3.1.0"

0 commit comments

Comments
 (0)