parent
d360855f16
commit
e52c8f3435
10 changed files with 50 additions and 21 deletions
|
|
@ -1,3 +1,11 @@
|
|||
## <small>3.6.3 (2024-10-31)</small>
|
||||
|
||||
* fix: upgrade algoliasearch to v5 (#2326) ([93578a4](https://github.com/algolia/docsearch/commit/93578a4)), closes [#2326](https://github.com/algolia/docsearch/issues/2326)
|
||||
* 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)
|
||||
* 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)
|
||||
|
||||
|
||||
|
||||
## [3.6.2](https://github.com/algolia/docsearch/compare/v3.6.1...v3.6.2) (2024-09-27)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@docsearch/react-example",
|
||||
"description": "DocSearch v3 React example",
|
||||
"version": "3.6.2",
|
||||
"version": "3.6.3",
|
||||
"private": true,
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
|
|
@ -11,8 +11,8 @@
|
|||
"preview": "vite preview"
|
||||
},
|
||||
"dependencies": {
|
||||
"@docsearch/css": "3.6.2",
|
||||
"@docsearch/react": "3.6.2"
|
||||
"@docsearch/css": "3.6.3",
|
||||
"@docsearch/react": "3.6.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@vitejs/plugin-react": "^4.3.3",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@docsearch/js-example",
|
||||
"description": "DocSearch v3 Vanilla JavaScript example",
|
||||
"version": "3.6.2",
|
||||
"version": "3.6.3",
|
||||
"private": true,
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
|
|
@ -10,8 +10,8 @@
|
|||
"preview": "vite preview"
|
||||
},
|
||||
"dependencies": {
|
||||
"@docsearch/css": "3.6.2",
|
||||
"@docsearch/js": "3.6.2"
|
||||
"@docsearch/css": "3.6.3",
|
||||
"@docsearch/js": "3.6.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"vite": "^5.4.10"
|
||||
|
|
|
|||
|
|
@ -5,6 +5,6 @@
|
|||
"packages/docsearch-react",
|
||||
"examples/*"
|
||||
],
|
||||
"version": "3.6.2",
|
||||
"version": "3.6.3",
|
||||
"npmClient": "yarn"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@docsearch/css",
|
||||
"description": "Styles for DocSearch.",
|
||||
"version": "3.6.2",
|
||||
"version": "3.6.3",
|
||||
"license": "MIT",
|
||||
"homepage": "https://docsearch.algolia.com",
|
||||
"repository": "algolia/docsearch",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@docsearch/js",
|
||||
"description": "JavaScript package for DocSearch, the best search experience for docs.",
|
||||
"version": "3.6.2",
|
||||
"version": "3.6.3",
|
||||
"license": "MIT",
|
||||
"homepage": "https://docsearch.algolia.com",
|
||||
"repository": "algolia/docsearch",
|
||||
|
|
@ -29,7 +29,7 @@
|
|||
"watch": "watch \"yarn on:change\" --ignoreDirectoryPattern \"/dist/\""
|
||||
},
|
||||
"dependencies": {
|
||||
"@docsearch/react": "3.6.2",
|
||||
"@docsearch/react": "3.6.3",
|
||||
"preact": "^10.0.0"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@docsearch/react",
|
||||
"description": "React package for DocSearch, the best search experience for docs.",
|
||||
"version": "3.6.2",
|
||||
"version": "3.6.3",
|
||||
"license": "MIT",
|
||||
"homepage": "https://docsearch.algolia.com",
|
||||
"repository": "algolia/docsearch",
|
||||
|
|
@ -34,7 +34,7 @@
|
|||
"dependencies": {
|
||||
"@algolia/autocomplete-core": "1.9.3",
|
||||
"@algolia/autocomplete-preset-algolia": "1.17.6",
|
||||
"@docsearch/css": "3.6.2",
|
||||
"@docsearch/css": "3.6.3",
|
||||
"algoliasearch": "^5.11.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
export const version = '3.6.2';
|
||||
export const version = '3.6.3';
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@docsearch/website",
|
||||
"version": "3.6.2",
|
||||
"version": "3.6.3",
|
||||
"private": true,
|
||||
"homepage": "https://docsearch.algolia.com/",
|
||||
"scripts": {
|
||||
|
|
@ -50,6 +50,7 @@
|
|||
]
|
||||
},
|
||||
"resolutions": {
|
||||
"@docsearch/react": "link:../docsearch-react"
|
||||
"@docsearch/react": "link:../docsearch-react",
|
||||
"@docsearch/css": "link:../docsearch-css"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -24,6 +24,13 @@
|
|||
dependencies:
|
||||
"@algolia/autocomplete-shared" "1.17.6"
|
||||
|
||||
"@algolia/autocomplete-preset-algolia@1.9.3":
|
||||
version "1.9.3"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.9.3.tgz#64cca4a4304cfcad2cf730e83067e0c1b2f485da"
|
||||
integrity sha512-d4qlt6YmrLMYy95n5TB52wtNDr6EgAIPH81dvvvW8UmuWRgxEtY0NJiPwl/h95JtG2vmRM804M0DSwMCNZlzRA==
|
||||
dependencies:
|
||||
"@algolia/autocomplete-shared" "1.9.3"
|
||||
|
||||
"@algolia/autocomplete-shared@1.17.6":
|
||||
version "1.17.6"
|
||||
resolved "https://registry.yarnpkg.com/@algolia/autocomplete-shared/-/autocomplete-shared-1.17.6.tgz#ad951632b6d477d4ba9a68a347e1702d26009d58"
|
||||
|
|
@ -1333,14 +1340,27 @@
|
|||
integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==
|
||||
|
||||
"@docsearch/css@3.6.2":
|
||||
version "3.6.2"
|
||||
resolved "https://registry.yarnpkg.com/@docsearch/css/-/css-3.6.2.tgz#ccd9c83dbfeaf34efe4e3547ee596714ae7e5891"
|
||||
integrity sha512-vKNZepO2j7MrYBTZIGXvlUOIR+v9KRf70FApRgovWrj3GTs1EITz/Xb0AOlm1xsQBp16clVZj1SY/qaOJbQtZw==
|
||||
|
||||
"@docsearch/react@3.6.2":
|
||||
version "0.0.0"
|
||||
uid ""
|
||||
|
||||
"@docsearch/css@3.6.3":
|
||||
version "0.0.0"
|
||||
uid ""
|
||||
|
||||
"@docsearch/css@link:../docsearch-css":
|
||||
version "0.0.0"
|
||||
uid ""
|
||||
|
||||
"@docsearch/react@3.6.2":
|
||||
version "3.6.2"
|
||||
resolved "https://registry.yarnpkg.com/@docsearch/react/-/react-3.6.2.tgz#32b16dd7d5614f0d39e6bc018549816b68d171b8"
|
||||
integrity sha512-rtZce46OOkVflCQH71IdbXSFK+S8iJZlUF56XBW5rIgx/eG5qoomC7Ag3anZson1bBac/JFQn7XOBfved/IMRA==
|
||||
dependencies:
|
||||
"@algolia/autocomplete-core" "1.9.3"
|
||||
"@algolia/autocomplete-preset-algolia" "1.9.3"
|
||||
"@docsearch/css" "3.6.2"
|
||||
algoliasearch "^4.19.1"
|
||||
|
||||
"@docsearch/react@^3.5.2":
|
||||
version "0.0.0"
|
||||
uid ""
|
||||
|
|
@ -2745,7 +2765,7 @@ algoliasearch-helper@^3.13.3:
|
|||
dependencies:
|
||||
"@algolia/events" "^4.0.1"
|
||||
|
||||
algoliasearch@^4.18.0:
|
||||
algoliasearch@^4.18.0, algoliasearch@^4.19.1:
|
||||
version "4.24.0"
|
||||
resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-4.24.0.tgz#b953b3e2309ef8f25da9de311b95b994ac918275"
|
||||
integrity sha512-bf0QV/9jVejssFBmz2HQLxUadxk574t4iwjCKp5E7NBzwKkrDEhKPISIIjAU/p6K5qDx3qoeh4+26zWN1jmw3g==
|
||||
|
|
|
|||
Loading…
Reference in a new issue