Skip to content

Releases: zuplo/zudoku

v0.0.0-822ffca

13 Nov 15:32
822ffca
Compare
Choose a tag to compare

What's Changed

Other Changes 🔄

Full Changelog: v0.14.0...v0.0.0-822ffca

v0.0.0-6be339d

13 Nov 18:51
6be339d
Compare
Choose a tag to compare

What's Changed

Other Changes 🔄

Full Changelog: v0.0.0-822ffca...v0.0.0-6be339d

v0.14.0

12 Nov 14:51
Compare
Choose a tag to compare

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

08 Nov 10:23
Compare
Choose a tag to compare

What's Changed

New Features 🎉

Bug Fixes 🐛

  • Fix capitalization and spelling of programming languages and product names by @hkosova in #320

New Contributors

Full Changelog: v0.13.6...v0.13.7

v0.13.6

07 Nov 13:19
Compare
Choose a tag to compare

What's Changed

Bug Fixes 🐛

Full Changelog: v0.13.5...v0.13.6

v0.13.5

05 Nov 18:53
Compare
Choose a tag to compare

What's Changed

New Features 🎉

Other Changes 🔄

New Contributors

Full Changelog: v0.13.4...v0.13.5

v0.13.4

28 Oct 12:33
Compare
Choose a tag to compare

What's Changed

New Features 🎉

  • Allow to show navigation only for auth/anon/all users by @mosch in #290

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 🔄

Full Changelog: v0.13.3...v0.13.4

v0.13.3

21 Oct 22:42
Compare
Choose a tag to compare

What's Changed

New Features 🎉

Bug Fixes 🐛

Other Changes 🔄

Full Changelog: v0.13.2...v0.13.3

v0.13.2

16 Oct 14:39
Compare
Choose a tag to compare

What's Changed

Bug Fixes 🐛

  • Use correct prose class in custom pages by @dan-lee in #274

Full Changelog: v0.13.1...v0.13.2

v0.13.1

16 Oct 13:50
Compare
Choose a tag to compare

What's Changed

New Features 🎉

Bug Fixes 🐛

Other Changes 🔄

Full Changelog: v0.13.0...v0.13.1