Skip to content

Commit 5311d2d

Browse files
authored
Merge branch 'main' into docusaurus-search-path-breadcrumbs
2 parents a0dfb51 + 5ef01ec commit 5311d2d

30 files changed

Lines changed: 501 additions & 137 deletions

CHANGELOG.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,40 @@
1+
## [4.3.2](https://github.com/algolia/docsearch/compare/v4.3.1...v4.3.2) (2025-11-10)
2+
3+
4+
### Bug Fixes
5+
6+
* **suggested-questions:** Fixes Suggested Questions on dark theme ([#2797](https://github.com/algolia/docsearch/issues/2797)) ([d9c4220](https://github.com/algolia/docsearch/commit/d9c42204572141a042ea93abf6d4aa73571c1354))
7+
8+
9+
10+
## [4.3.1](https://github.com/algolia/docsearch/compare/v4.3.0...v4.3.1) (2025-11-04)
11+
12+
13+
### Bug Fixes
14+
15+
* **npm:** Publish new packages with public access ([#2795](https://github.com/algolia/docsearch/issues/2795)) ([2d045b5](https://github.com/algolia/docsearch/commit/2d045b59f29df9300e466b4701c3378022895e4a))
16+
17+
18+
19+
# [4.3.0](https://github.com/algolia/docsearch/compare/v4.2.0...v4.3.0) (2025-11-04)
20+
21+
22+
### Bug Fixes
23+
24+
* **docsearch-js:** resultsFooterComponent not working in JS CDN version ([#2786](https://github.com/algolia/docsearch/issues/2786)) ([5381e76](https://github.com/algolia/docsearch/commit/5381e76126d6111039407d5aea06f8710917515f))
25+
* **website:** Fix API Reference docs page formatting ([#2783](https://github.com/algolia/docsearch/issues/2783)) ([8980d47](https://github.com/algolia/docsearch/commit/8980d47dbc7981e34fa3c15a7ce4ba42ed795eed))
26+
* **website:** updated askai markdown documentation ([#2788](https://github.com/algolia/docsearch/issues/2788)) ([f7be2a6](https://github.com/algolia/docsearch/commit/f7be2a65fcfaadf8ea192c0d4ef796a6635ee30d))
27+
28+
29+
### Features
30+
31+
* Composable API packages versions ([#2789](https://github.com/algolia/docsearch/issues/2789)) ([b91e309](https://github.com/algolia/docsearch/commit/b91e3099c63090003ddc656e40ac356dc6c64efa))
32+
* **composable-api:** Document Composable API ([#2793](https://github.com/algolia/docsearch/issues/2793)) ([e5ae33f](https://github.com/algolia/docsearch/commit/e5ae33fe905703cb7211c73cc22c98cd48e33285))
33+
* **composable-api:** Introduce new Composable API ([#2779](https://github.com/algolia/docsearch/issues/2779)) ([5e9bdfe](https://github.com/algolia/docsearch/commit/5e9bdfed70fe9d3a93583836fff62e52e387b25f)), closes [#2771](https://github.com/algolia/docsearch/issues/2771) [#2772](https://github.com/algolia/docsearch/issues/2772) [#2774](https://github.com/algolia/docsearch/issues/2774)
34+
* **suggested-questions:** Add suggested questions ([#2787](https://github.com/algolia/docsearch/issues/2787)) ([2b4779a](https://github.com/algolia/docsearch/commit/2b4779ad06d6a132e82e0e43540550e580c6b498))
35+
36+
37+
138
# [4.2.0](https://github.com/algolia/docsearch/compare/v4.1.0...v4.2.0) (2025-10-06)
239

340

examples/demo-js/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 v4 Vanilla JavaScript example",
4-
"version": "4.2.0",
4+
"version": "4.3.2",
55
"private": true,
66
"license": "MIT",
77
"scripts": {
@@ -10,8 +10,8 @@
1010
"preview": "vite preview"
1111
},
1212
"dependencies": {
13-
"@docsearch/css": "4.2.0",
14-
"@docsearch/js": "4.2.0"
13+
"@docsearch/css": "4.3.2",
14+
"@docsearch/js": "4.3.2"
1515
},
1616
"devDependencies": {
1717
"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.2.0",
4+
"version": "4.3.2",
55
"private": true,
66
"license": "MIT",
77
"type": "module",

examples/demo-react/src/App.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ body {
2828
/* header styles */
2929
.app-header {
3030
text-align: center;
31-
margin-bottom: 3rem;
31+
margin-block-end: 3rem;
3232
}
3333

3434
.app-title {
3535
font-size: 2rem;
3636
font-weight: 700;
3737
color: black;
38-
margin-bottom: 0;
38+
margin-block-end: 0;
3939
}
4040

4141
.app-subtitle {
@@ -67,8 +67,8 @@ main {
6767
color: #666;
6868
font-family: 'Source Code Pro', monospace;
6969
font-size: 0.9rem;
70-
margin-bottom: 1rem;
71-
margin-top: -1rem;
70+
margin-block-end: 1rem;
71+
margin-block-start: -1rem;
7272
opacity: 0.8;
7373
}
7474

examples/demo-react/src/examples/basic-askai.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ export default function BasicAskAI(): JSX.Element {
1313
searchParameters: {
1414
facetFilters: ['language:en'],
1515
},
16+
suggestedQuestions: true,
1617
}}
1718
insights={true}
1819
translations={{ button: { buttonText: 'Search with Ask AI' } }}

examples/demo-react/src/examples/dynamic-import-modal.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ function DocSearch(): JSX.Element {
9999
initialScrollY={window.scrollY}
100100
initialQuery={initialQuery}
101101
isAskAiActive={isAskAiActive}
102-
canHandleAskAi={true}
103102
onClose={closeModal}
104103
onAskAiToggle={toggleAskAi}
105104
/>,

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": "4.2.0",
6+
"version": "4.3.2",
77
"npmClient": "yarn"
88
}

netlify.toml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
1-
[build]
2-
command="yarn build && yarn website:build"
3-
publish="packages/website/build"
4-
ignore="git diff --quiet $COMMIT_REF $CACHED_COMMIT_REF -- packages/website/ yarn.lock"
5-
61
[build.environment]
7-
YARN_VERSION = "1.22.5"
2+
YARN_VERSION = "1.22.5"
83

94
[[redirects]]
10-
from = "/apply/"
11-
to = "https://dashboard.algolia.com/users/sign_up?selected_plan=docsearch"
12-
status = 301
13-
force = true
5+
from = "/apply/"
6+
to = "https://dashboard.algolia.com/users/sign_up?selected_plan=docsearch"
7+
status = 301
8+
force = true

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": "1.0.0",
4+
"version": "4.3.1",
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.2.0",
4+
"version": "4.3.2",
55
"license": "MIT",
66
"homepage": "https://docsearch.algolia.com",
77
"repository": {

0 commit comments

Comments
 (0)