Releases: zuplo/zudoku
v0.16.0
v0.15.2
v0.15.1
What's Changed
Other Changes 🔄
- Set auth0 login prompt by @dan-lee in #342
- build(deps): bump @radix-ui/react-scroll-area from 1.2.0 to 1.2.1 by @dependabot in #341
Full Changelog: v0.15.0...v0.15.1
v0.15.0
What's Changed
Other Changes 🔄
- Generate output config.json on build by @ntotten in #334
- Extract config loader into module by @ntotten in #335
- Configure nx to use pnpm by @ntotten in #338
- Set link-workspace-packages=true by @ntotten in #339
- Only create github release on tagged by @ntotten in #332
Full Changelog: v0.14.1...v0.15.0
v0.14.1
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