Skip to content

Commit 13db25f

Browse files
chore: release v4.5.0-beta.0 (#2834)
1 parent 283ff35 commit 13db25f

File tree

19 files changed

+132
-49
lines changed

19 files changed

+132
-49
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ node_modules/
55
*.log
66
coverage/
77
.cache
8+
.nx
89

910
# Bundle build files
1011
dist/
@@ -28,4 +29,4 @@ cypress/videos/
2829
!**/.yarn/plugins
2930
!**/.yarn/patches
3031

31-
rollup.config-*.cjs
32+
rollup.config-*.cjs

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# [4.5.0-beta.0](https://github.com/algolia/docsearch/compare/v4.4.0...v4.5.0-beta.0) (2026-01-08)
2+
3+
4+
### Bug Fixes
5+
6+
* **deps:** Move dependencies to devDependencies to fix peer dependency issues ([#2831](https://github.com/algolia/docsearch/issues/2831)) ([ed59c7b](https://github.com/algolia/docsearch/commit/ed59c7baa6644ff0a87a71cf84a912219e80ffb3))
7+
* prevent XSS vulnerability in AskAI conversation history ([#2822](https://github.com/algolia/docsearch/issues/2822)) ([f9ba0a0](https://github.com/algolia/docsearch/commit/f9ba0a01a48e35fd675b6e90e629728f699ce175))
8+
9+
10+
### Features
11+
12+
* **website:** Add Sidepanel to DocSearch website ([#2821](https://github.com/algolia/docsearch/issues/2821)) ([54bac9c](https://github.com/algolia/docsearch/commit/54bac9cf54e4613a363a6df2fe7e5f3835009bdf))
13+
14+
15+
116
## [4.4.0](https://github.com/algolia/docsearch/compare/v4.3.2...v4.4.0) (2025-12-18)
217

318

examples/demo-js/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@docsearch/js-example",
33
"description": "DocSearch v4 Vanilla JavaScript example",
4-
"version": "4.4.0",
4+
"version": "4.5.0-beta.0",
55
"private": true,
66
"license": "MIT",
77
"scripts": {
@@ -10,9 +10,9 @@
1010
"preview": "vite preview"
1111
},
1212
"dependencies": {
13-
"@docsearch/css": "4.4.0",
14-
"@docsearch/js": "4.4.0",
15-
"@docsearch/sidepanel-js": "4.4.0"
13+
"@docsearch/css": "4.5.0-beta.0",
14+
"@docsearch/js": "4.5.0-beta.0",
15+
"@docsearch/sidepanel-js": "4.5.0-beta.0"
1616
},
1717
"devDependencies": {
1818
"vite": "^6.0.7"

examples/demo-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@docsearch/react-example",
33
"description": "DocSearch v4 React example",
4-
"version": "4.4.0",
4+
"version": "4.5.0-beta.0",
55
"private": true,
66
"license": "MIT",
77
"type": "module",

examples/demo-react/src/examples/hybrid.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,12 @@ export default function BasicHybrid(): JSX.Element {
1414
apiKey="0faad3eae2ba413c16355a0f8670c201"
1515
askAi={{
1616
assistantId: 'e3Kl4lTCBlSA',
17-
useStagingEnv: true,
1817
indexName: 'docsearch-markdown',
1918
}}
2019
/>
2120

2221
<SidepanelButton />
2322
<Sidepanel
24-
useStagingEnv={true}
2523
indexName="docsearch-markdown"
2624
appId="beta3G7FSQDJR3"
2725
apiKey="0faad3eae2ba413c16355a0f8670c201"

lerna.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"packages/*",
44
"examples/*"
55
],
6-
"version": "4.4.0",
6+
"version": "4.5.0-beta.0",
77
"npmClient": "yarn"
8-
}
8+
}

nx.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"$schema": "https://raw.githubusercontent.com/nrwl/nx/master/packages/nx/schemas/nx-schema.json",
3+
"targetDefaults": {
4+
"build": {
5+
"dependsOn": ["^build"]
6+
}
7+
}
8+
}

packages/docsearch-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@docsearch/core",
33
"description": "Core package logic for DocSearch",
4-
"version": "4.4.0",
4+
"version": "4.5.0-beta.0",
55
"license": "MIT",
66
"homepage": "https://docsearch.algolia.com",
77
"repository": {

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": "4.4.0",
4+
"version": "4.5.0-beta.0",
55
"license": "MIT",
66
"homepage": "https://docsearch.algolia.com",
77
"repository": {

packages/docsearch-js/package.json

Lines changed: 5 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": "4.4.0",
4+
"version": "4.5.0-beta.0",
55
"license": "MIT",
66
"homepage": "https://docsearch.algolia.com",
77
"repository": {
@@ -35,11 +35,14 @@
3535
"watch": "nodemon --watch src --exec \"yarn on:change\" --ignore dist/ --ext ts,tsx"
3636
},
3737
"devDependencies": {
38-
"@docsearch/react": "4.4.0",
38+
"@docsearch/react": "4.5.0-beta.0",
3939
"@rollup/plugin-replace": "6.0.2",
4040
"htm": "3.1.1",
4141
"nodemon": "^3.1.9",
4242
"preact": "^10.0.0",
4343
"rollup-plugin-dts": "^6.2.1"
44+
},
45+
"nx": {
46+
"implicitDependencies": ["@docsearch/react"]
4447
}
4548
}

0 commit comments

Comments
 (0)