Releases: zuplo/zudoku
v0.0.0-822ffca
v0.0.0-6be339d
v0.14.0
What's Changed
Breaking Changes 🛠
Decouple navigation from file system locations by @ntotten in #211
Before this, the top navigation ID correlated with the file system directory path. This meant that the sidebar item ID was concatenated with the top navigation ID, linking them closely together:
config = {
topNavigation: [{ label: "Documentation", id: "docs" }],
sidebar: {
docs: ["intro", "getting-started"],
},
};
This meant that the sidebar item ID is coupled to the top navigation ID. This made it difficult to move documents around without breaking the sidebar navigation. The resulting document IDs were: ['/docs/intro', '/docs/getting-started']
.
The top navigation ID is now decoupled from the file system path. This means that the sidebar item ID is no longer concatenated with the top navigation ID. As a result, you will need to specify the full path to the document in the sidebar:
config = {
topNavigation: [{ label: "Documentation", id: "docs" }],
sidebar: {
docs: ["/docs/intro", "/docs/getting-started"],
},
};
Be sure to also add these paths to the docs config:
config = {
docs: {
files: "/docs/**/*.{md,mdx}",
},
};
or for multiple directories:
config = {
docs: [{ files: "/docs/**/*.{md,mdx}" }, { files: "/guides/**/*.{md,mdx}" }],
};
Bug Fixes 🐛
Other Changes 🔄
- feat: Add documentation for components by @mosch in #212
- build(deps-dev): bump @types/express from 4.17.21 to 5.0.0 by @dependabot in #283
- build(deps-dev): bump the eslint-dependencies group across 1 directory with 3 updates by @dependabot in #323
- build(deps): bump react-error-boundary from 4.0.13 to 4.1.2 by @dependabot in #284
Full Changelog: v0.13.7...v0.14.0
v0.13.7
v0.13.6
v0.13.5
What's Changed
New Features 🎉
- Search as vite plugin by @dan-lee in #278
- Add authentication type
openid
by @omurilo in #305 - expose auth for external to use by @mosch in #317
Other Changes 🔄
- Added nx cloud caching env var by @ntotten in #292
- build(deps-dev): bump the eslint-dependencies group across 1 directory with 6 updates by @dependabot in #301
- dont run for forks by @mosch in #307
- run on branches only by @mosch in #308
- hardcode that value by @mosch in #309
- stop uploading that for now by @mosch in #310
- Purge all CF cache when doing a release by @dan-lee in #313
- Updated contributing guide by @ntotten in #316
New Contributors
Full Changelog: v0.13.4...v0.13.5
v0.13.4
What's Changed
New Features 🎉
Bug Fixes 🐛
- hide items on mobile as well by @mosch in #297
- prevent path.join from creating malformed URL for client entry path by @arian0zen in #288
Other Changes 🔄
- run on ubuntu by @mosch in #295
- run on PR by @mosch in #296
- undo change by @mosch in #298
- export zudoku hook by @mosch in #299
Full Changelog: v0.13.3...v0.13.4
v0.13.3
What's Changed
New Features 🎉
Bug Fixes 🐛
- Prepend base path in MDX media by @dan-lee in #276
- Fix mobile nav scroll by @dan-lee in #277
- Sidebar fixes by @dan-lee in #279
Other Changes 🔄
- Send request body by @AdrianMachado in #285
Full Changelog: v0.13.2...v0.13.3
v0.13.2
v0.13.1
What's Changed
New Features 🎉
Bug Fixes 🐛
- fix search on mobile by @mosch in #268
- Base path fixes by @dan-lee in #270
- Better placement of search by @mosch in #273
Other Changes 🔄
- Package upgrades and cleanup by @dan-lee in #269
- Join base path instead of concatenating by @dan-lee in #271
Full Changelog: v0.13.0...v0.13.1