Skip to content

Commit e52c8f3

Browse files
authored
chore: release v3.6.3 (#2330)
* chore: release v3.6.3 * fix website
1 parent d360855 commit e52c8f3

File tree

10 files changed

+49
-20
lines changed

10 files changed

+49
-20
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## <small>3.6.3 (2024-10-31)</small>
2+
3+
* fix: upgrade algoliasearch to v5 (#2326) ([93578a4](https://github.com/algolia/docsearch/commit/93578a4)), closes [#2326](https://github.com/algolia/docsearch/issues/2326)
4+
* fix: use vite instead of parcel in the examples (#2329) ([d360855](https://github.com/algolia/docsearch/commit/d360855)), closes [#2329](https://github.com/algolia/docsearch/issues/2329)
5+
* docs(showcase): Fix logos for ScalarDB and ScalarDL in showcase (#2317) ([90f3c6a](https://github.com/algolia/docsearch/commit/90f3c6a)), closes [#2317](https://github.com/algolia/docsearch/issues/2317)
6+
7+
8+
19
## [3.6.2](https://github.com/algolia/docsearch/compare/v3.6.1...v3.6.2) (2024-09-27)
210

311

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.6.2",
4+
"version": "3.6.3",
55
"private": true,
66
"license": "MIT",
77
"type": "module",
@@ -11,8 +11,8 @@
1111
"preview": "vite preview"
1212
},
1313
"dependencies": {
14-
"@docsearch/css": "3.6.2",
15-
"@docsearch/react": "3.6.2"
14+
"@docsearch/css": "3.6.3",
15+
"@docsearch/react": "3.6.3"
1616
},
1717
"devDependencies": {
1818
"@vitejs/plugin-react": "^4.3.3",

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.6.2",
4+
"version": "3.6.3",
55
"private": true,
66
"license": "MIT",
77
"scripts": {
@@ -10,8 +10,8 @@
1010
"preview": "vite preview"
1111
},
1212
"dependencies": {
13-
"@docsearch/css": "3.6.2",
14-
"@docsearch/js": "3.6.2"
13+
"@docsearch/css": "3.6.3",
14+
"@docsearch/js": "3.6.3"
1515
},
1616
"devDependencies": {
1717
"vite": "^5.4.10"

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
"packages/docsearch-react",
66
"examples/*"
77
],
8-
"version": "3.6.2",
8+
"version": "3.6.3",
99
"npmClient": "yarn"
1010
}

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.6.2",
4+
"version": "3.6.3",
55
"license": "MIT",
66
"homepage": "https://docsearch.algolia.com",
77
"repository": "algolia/docsearch",

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.6.2",
4+
"version": "3.6.3",
55
"license": "MIT",
66
"homepage": "https://docsearch.algolia.com",
77
"repository": "algolia/docsearch",
@@ -29,7 +29,7 @@
2929
"watch": "watch \"yarn on:change\" --ignoreDirectoryPattern \"/dist/\""
3030
},
3131
"dependencies": {
32-
"@docsearch/react": "3.6.2",
32+
"@docsearch/react": "3.6.3",
3333
"preact": "^10.0.0"
3434
}
3535
}

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.6.2",
4+
"version": "3.6.3",
55
"license": "MIT",
66
"homepage": "https://docsearch.algolia.com",
77
"repository": "algolia/docsearch",
@@ -34,7 +34,7 @@
3434
"dependencies": {
3535
"@algolia/autocomplete-core": "1.9.3",
3636
"@algolia/autocomplete-preset-algolia": "1.17.6",
37-
"@docsearch/css": "3.6.2",
37+
"@docsearch/css": "3.6.3",
3838
"algoliasearch": "^5.11.0"
3939
},
4040
"peerDependencies": {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const version = '3.6.2';
1+
export const version = '3.6.3';

packages/website/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@docsearch/website",
3-
"version": "3.6.2",
3+
"version": "3.6.3",
44
"private": true,
55
"homepage": "https://docsearch.algolia.com/",
66
"scripts": {
@@ -50,6 +50,7 @@
5050
]
5151
},
5252
"resolutions": {
53-
"@docsearch/react": "link:../docsearch-react"
53+
"@docsearch/react": "link:../docsearch-react",
54+
"@docsearch/css": "link:../docsearch-css"
5455
}
5556
}

packages/website/yarn.lock

Lines changed: 25 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,13 @@
2424
dependencies:
2525
"@algolia/autocomplete-shared" "1.17.6"
2626

27+
"@algolia/[email protected]":
28+
version "1.9.3"
29+
resolved "https://registry.yarnpkg.com/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.9.3.tgz#64cca4a4304cfcad2cf730e83067e0c1b2f485da"
30+
integrity sha512-d4qlt6YmrLMYy95n5TB52wtNDr6EgAIPH81dvvvW8UmuWRgxEtY0NJiPwl/h95JtG2vmRM804M0DSwMCNZlzRA==
31+
dependencies:
32+
"@algolia/autocomplete-shared" "1.9.3"
33+
2734
"@algolia/[email protected]":
2835
version "1.17.6"
2936
resolved "https://registry.yarnpkg.com/@algolia/autocomplete-shared/-/autocomplete-shared-1.17.6.tgz#ad951632b6d477d4ba9a68a347e1702d26009d58"
@@ -1333,14 +1340,27 @@
13331340
integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==
13341341

13351342
"@docsearch/[email protected]":
1336-
version "3.6.2"
1337-
resolved "https://registry.yarnpkg.com/@docsearch/css/-/css-3.6.2.tgz#ccd9c83dbfeaf34efe4e3547ee596714ae7e5891"
1338-
integrity sha512-vKNZepO2j7MrYBTZIGXvlUOIR+v9KRf70FApRgovWrj3GTs1EITz/Xb0AOlm1xsQBp16clVZj1SY/qaOJbQtZw==
1343+
version "0.0.0"
1344+
uid ""
13391345

1340-
"@docsearch/react@3.6.2":
1346+
"@docsearch/css@3.6.3":
13411347
version "0.0.0"
13421348
uid ""
13431349

1350+
"@docsearch/css@link:../docsearch-css":
1351+
version "0.0.0"
1352+
uid ""
1353+
1354+
"@docsearch/[email protected]":
1355+
version "3.6.2"
1356+
resolved "https://registry.yarnpkg.com/@docsearch/react/-/react-3.6.2.tgz#32b16dd7d5614f0d39e6bc018549816b68d171b8"
1357+
integrity sha512-rtZce46OOkVflCQH71IdbXSFK+S8iJZlUF56XBW5rIgx/eG5qoomC7Ag3anZson1bBac/JFQn7XOBfved/IMRA==
1358+
dependencies:
1359+
"@algolia/autocomplete-core" "1.9.3"
1360+
"@algolia/autocomplete-preset-algolia" "1.9.3"
1361+
"@docsearch/css" "3.6.2"
1362+
algoliasearch "^4.19.1"
1363+
13441364
"@docsearch/react@^3.5.2":
13451365
version "0.0.0"
13461366
uid ""
@@ -2745,7 +2765,7 @@ algoliasearch-helper@^3.13.3:
27452765
dependencies:
27462766
"@algolia/events" "^4.0.1"
27472767

2748-
algoliasearch@^4.18.0:
2768+
algoliasearch@^4.18.0, algoliasearch@^4.19.1:
27492769
version "4.24.0"
27502770
resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-4.24.0.tgz#b953b3e2309ef8f25da9de311b95b994ac918275"
27512771
integrity sha512-bf0QV/9jVejssFBmz2HQLxUadxk574t4iwjCKp5E7NBzwKkrDEhKPISIIjAU/p6K5qDx3qoeh4+26zWN1jmw3g==

0 commit comments

Comments
 (0)