Skip to content

Commit 9441df4

Browse files
authored
chore: release v3.7.0 (#2338)
1 parent aa666de commit 9441df4

File tree

10 files changed

+100
-32
lines changed

10 files changed

+100
-32
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# [3.7.0](https://github.com/algolia/docsearch/compare/v3.6.3...v3.7.0) (2024-11-04)
2+
3+
4+
### Bug Fixes
5+
6+
* **types:** export the types folder ([#2332](https://github.com/algolia/docsearch/issues/2332)) ([90ca5fa](https://github.com/algolia/docsearch/commit/90ca5fa8ed73d01d4ca22ed0de0e38652e56b5bb))
7+
8+
9+
110
## <small>3.6.3 (2024-10-31)</small>
211

312
* fix: upgrade algoliasearch to v5 (#2326) ([93578a4](https://github.com/algolia/docsearch/commit/93578a4)), closes [#2326](https://github.com/algolia/docsearch/issues/2326)

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

lerna.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
{
22
"packages": [
3-
"packages/docsearch-css",
4-
"packages/docsearch-js",
5-
"packages/docsearch-react",
3+
"packages/*",
64
"examples/*"
75
],
8-
"version": "3.6.3",
6+
"version": "3.7.0",
97
"npmClient": "yarn"
108
}

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

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.6.3",
3+
"version": "3.7.0",
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.6.3",
20+
"@docsearch/react": "3.7.0",
2121
"@docusaurus/core": "3.6.0",
2222
"@docusaurus/preset-classic": "3.6.0",
2323
"@mdx-js/react": "^3.1.0",

yarn.lock

Lines changed: 75 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2232,7 +2232,7 @@ __metadata:
22322232
languageName: node
22332233
linkType: hard
22342234

2235-
"@docsearch/css@npm:3.6.3, @docsearch/css@workspace:packages/docsearch-css":
2235+
"@docsearch/css@npm:3.7.0, @docsearch/css@workspace:packages/docsearch-css":
22362236
version: 0.0.0-use.local
22372237
resolution: "@docsearch/css@workspace:packages/docsearch-css"
22382238
languageName: unknown
@@ -2242,17 +2242,17 @@ __metadata:
22422242
version: 0.0.0-use.local
22432243
resolution: "@docsearch/js-example@workspace:examples/js-demo"
22442244
dependencies:
2245-
"@docsearch/css": "npm:3.6.3"
2246-
"@docsearch/js": "npm:3.6.3"
2245+
"@docsearch/css": "npm:3.7.0"
2246+
"@docsearch/js": "npm:3.7.0"
22472247
vite: "npm:^5.4.10"
22482248
languageName: unknown
22492249
linkType: soft
22502250

2251-
"@docsearch/js@npm:3.6.3, @docsearch/js@workspace:packages/docsearch-js":
2251+
"@docsearch/js@npm:3.7.0, @docsearch/js@workspace:packages/docsearch-js":
22522252
version: 0.0.0-use.local
22532253
resolution: "@docsearch/js@workspace:packages/docsearch-js"
22542254
dependencies:
2255-
"@docsearch/react": "npm:3.6.3"
2255+
"@docsearch/react": "npm:3.7.0"
22562256
"@rollup/plugin-replace": "npm:6.0.1"
22572257
preact: "npm:^10.0.0"
22582258
languageName: unknown
@@ -2320,22 +2320,22 @@ __metadata:
23202320
version: 0.0.0-use.local
23212321
resolution: "@docsearch/react-example@workspace:examples/demo"
23222322
dependencies:
2323-
"@docsearch/css": "npm:3.6.3"
2324-
"@docsearch/react": "npm:3.6.3"
2323+
"@docsearch/css": "npm:3.7.0"
2324+
"@docsearch/react": "npm:3.7.0"
23252325
"@vitejs/plugin-react": "npm:^4.3.3"
23262326
react: "npm:^18.0.0"
23272327
react-dom: "npm:^18.0.0"
23282328
vite: "npm:^5.4.10"
23292329
languageName: unknown
23302330
linkType: soft
23312331

2332-
"@docsearch/react@npm:3.6.3, @docsearch/react@npm:^3.5.2, @docsearch/react@workspace:packages/docsearch-react":
2332+
"@docsearch/react@npm:3.7.0, @docsearch/react@npm:^3.5.2, @docsearch/react@workspace:packages/docsearch-react":
23332333
version: 0.0.0-use.local
23342334
resolution: "@docsearch/react@workspace:packages/docsearch-react"
23352335
dependencies:
23362336
"@algolia/autocomplete-core": "npm:1.17.6"
23372337
"@algolia/autocomplete-preset-algolia": "npm:1.17.6"
2338-
"@docsearch/css": "npm:3.6.3"
2338+
"@docsearch/css": "npm:3.7.0"
23392339
"@rollup/plugin-replace": "npm:6.0.1"
23402340
"@testing-library/jest-dom": "npm:6.6.3"
23412341
"@testing-library/react": "npm:16.0.1"
@@ -2363,7 +2363,7 @@ __metadata:
23632363
resolution: "@docsearch/website@workspace:packages/website"
23642364
dependencies:
23652365
"@algolia/ui-library": "npm:5.86.0"
2366-
"@docsearch/react": "npm:3.6.3"
2366+
"@docsearch/react": "npm:3.7.0"
23672367
"@docusaurus/core": "npm:3.6.0"
23682368
"@docusaurus/preset-classic": "npm:3.6.0"
23692369
"@mdx-js/react": "npm:^3.1.0"
@@ -5659,6 +5659,16 @@ __metadata:
56595659
languageName: node
56605660
linkType: hard
56615661

5662+
"@typescript-eslint/scope-manager@npm:8.13.0":
5663+
version: 8.13.0
5664+
resolution: "@typescript-eslint/scope-manager@npm:8.13.0"
5665+
dependencies:
5666+
"@typescript-eslint/types": "npm:8.13.0"
5667+
"@typescript-eslint/visitor-keys": "npm:8.13.0"
5668+
checksum: 10c0/1924b3e740e244d98f8a99740b4196d23ae3263303b387c66db94e140455a3132e603a130f3f70fc71e37f4bda5d0c0c67224ae3911908b097ef3f972c136be4
5669+
languageName: node
5670+
linkType: hard
5671+
56625672
"@typescript-eslint/type-utils@npm:8.12.2":
56635673
version: 8.12.2
56645674
resolution: "@typescript-eslint/type-utils@npm:8.12.2"
@@ -5681,6 +5691,13 @@ __metadata:
56815691
languageName: node
56825692
linkType: hard
56835693

5694+
"@typescript-eslint/types@npm:8.13.0":
5695+
version: 8.13.0
5696+
resolution: "@typescript-eslint/types@npm:8.13.0"
5697+
checksum: 10c0/bd3f88b738a92b2222f388bcf831357ef8940a763c2c2eb1947767e1051dd2f8bee387020e8cf4c2309e4142353961b659abc2885e30679109a0488b0bfefc23
5698+
languageName: node
5699+
linkType: hard
5700+
56845701
"@typescript-eslint/typescript-estree@npm:8.12.2":
56855702
version: 8.12.2
56865703
resolution: "@typescript-eslint/typescript-estree@npm:8.12.2"
@@ -5700,7 +5717,26 @@ __metadata:
57005717
languageName: node
57015718
linkType: hard
57025719

5703-
"@typescript-eslint/utils@npm:8.12.2, @typescript-eslint/utils@npm:^8.12.2":
5720+
"@typescript-eslint/typescript-estree@npm:8.13.0":
5721+
version: 8.13.0
5722+
resolution: "@typescript-eslint/typescript-estree@npm:8.13.0"
5723+
dependencies:
5724+
"@typescript-eslint/types": "npm:8.13.0"
5725+
"@typescript-eslint/visitor-keys": "npm:8.13.0"
5726+
debug: "npm:^4.3.4"
5727+
fast-glob: "npm:^3.3.2"
5728+
is-glob: "npm:^4.0.3"
5729+
minimatch: "npm:^9.0.4"
5730+
semver: "npm:^7.6.0"
5731+
ts-api-utils: "npm:^1.3.0"
5732+
peerDependenciesMeta:
5733+
typescript:
5734+
optional: true
5735+
checksum: 10c0/2d45bc5ed4ac352bea927167ac28ef23bd13b6ae352ff50e85cddfdc4b06518f1dd4ae5f2495e30d6f62d247987677a4e807065d55829ba28963908a821dc96d
5736+
languageName: node
5737+
linkType: hard
5738+
5739+
"@typescript-eslint/utils@npm:8.12.2":
57045740
version: 8.12.2
57055741
resolution: "@typescript-eslint/utils@npm:8.12.2"
57065742
dependencies:
@@ -5714,6 +5750,20 @@ __metadata:
57145750
languageName: node
57155751
linkType: hard
57165752

5753+
"@typescript-eslint/utils@npm:^8.12.2":
5754+
version: 8.13.0
5755+
resolution: "@typescript-eslint/utils@npm:8.13.0"
5756+
dependencies:
5757+
"@eslint-community/eslint-utils": "npm:^4.4.0"
5758+
"@typescript-eslint/scope-manager": "npm:8.13.0"
5759+
"@typescript-eslint/types": "npm:8.13.0"
5760+
"@typescript-eslint/typescript-estree": "npm:8.13.0"
5761+
peerDependencies:
5762+
eslint: ^8.57.0 || ^9.0.0
5763+
checksum: 10c0/3fc5a7184a949df5f5b64f6af039a1d21ef7fe15f3d88a5d485ccbb535746d18514751143993a5aee287228151be3e326baf8f899a0a0a93368f6f20857ffa6d
5764+
languageName: node
5765+
linkType: hard
5766+
57175767
"@typescript-eslint/visitor-keys@npm:8.12.2":
57185768
version: 8.12.2
57195769
resolution: "@typescript-eslint/visitor-keys@npm:8.12.2"
@@ -5724,6 +5774,16 @@ __metadata:
57245774
languageName: node
57255775
linkType: hard
57265776

5777+
"@typescript-eslint/visitor-keys@npm:8.13.0":
5778+
version: 8.13.0
5779+
resolution: "@typescript-eslint/visitor-keys@npm:8.13.0"
5780+
dependencies:
5781+
"@typescript-eslint/types": "npm:8.13.0"
5782+
eslint-visitor-keys: "npm:^3.4.3"
5783+
checksum: 10c0/50b35f3cf673aaed940613f0007f7c4558a89ebef15c49824e65b6f084b700fbf01b01a4e701e24bbe651297a39678645e739acd255255f1603867a84bef0383
5784+
languageName: node
5785+
linkType: hard
5786+
57275787
"@ungap/structured-clone@npm:^1.0.0, @ungap/structured-clone@npm:^1.2.0":
57285788
version: 1.2.0
57295789
resolution: "@ungap/structured-clone@npm:1.2.0"
@@ -9783,8 +9843,8 @@ __metadata:
97839843
linkType: hard
97849844

97859845
"es-iterator-helpers@npm:^1.1.0":
9786-
version: 1.1.0
9787-
resolution: "es-iterator-helpers@npm:1.1.0"
9846+
version: 1.2.0
9847+
resolution: "es-iterator-helpers@npm:1.2.0"
97889848
dependencies:
97899849
call-bind: "npm:^1.0.7"
97909850
define-properties: "npm:^1.2.1"
@@ -9794,13 +9854,14 @@ __metadata:
97949854
function-bind: "npm:^1.1.2"
97959855
get-intrinsic: "npm:^1.2.4"
97969856
globalthis: "npm:^1.0.4"
9857+
gopd: "npm:^1.0.1"
97979858
has-property-descriptors: "npm:^1.0.2"
97989859
has-proto: "npm:^1.0.3"
97999860
has-symbols: "npm:^1.0.3"
98009861
internal-slot: "npm:^1.0.7"
98019862
iterator.prototype: "npm:^1.1.3"
98029863
safe-array-concat: "npm:^1.1.2"
9803-
checksum: 10c0/84d6c240c7da6e62323b336cb1497781546dab16bebdbd879ccfdf588979712d3e941d41165b6c2ffce5a03a7b929d4e6131d3124d330da1a0e2bfa1da7cd99f
9864+
checksum: 10c0/2bd60580dfeae353f5b80445d2808da745e97eeacdb663a8c4d99a12046873830a06d377e9d5e88fe54eece7c94319a5ce5a01220e24d71394ceca8d3ef621d7
98049865
languageName: node
98059866
linkType: hard
98069867

0 commit comments

Comments
 (0)