diff options
author | Houston (Bot) | 2023-06-22 13:15:28 -0700 |
---|---|---|
committer | GitHub | 2023-06-22 22:15:28 +0200 |
commit | ec5468735dffe478baebd75f4150c8ed0ba6d54d (patch) | |
tree | b21f5dab3715c12ac55c85099c57bb09879c81d3 | |
parent | 1aa2187944dde4419e523f0087139f5a21efd826 (diff) | |
download | IT.starlight-ec5468735dffe478baebd75f4150c8ed0ba6d54d.tar.gz IT.starlight-ec5468735dffe478baebd75f4150c8ed0ba6d54d.tar.bz2 IT.starlight-ec5468735dffe478baebd75f4150c8ed0ba6d54d.zip |
[ci] release (#232)@astrojs/starlight@0.3.0
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
-rw-r--r-- | .changeset/five-cooks-develop.md | 14 | ||||
-rw-r--r-- | .changeset/shy-bats-yell.md | 5 | ||||
-rw-r--r-- | .changeset/spotty-ladybugs-obey.md | 5 | ||||
-rw-r--r-- | .changeset/strong-grapes-occur.md | 5 | ||||
-rw-r--r-- | .changeset/tiny-sheep-raise.md | 5 | ||||
-rw-r--r-- | examples/basics/package.json | 2 | ||||
-rw-r--r-- | packages/starlight/CHANGELOG.md | 25 | ||||
-rw-r--r-- | packages/starlight/package.json | 2 | ||||
-rw-r--r-- | pnpm-lock.yaml | 2 |
9 files changed, 28 insertions, 37 deletions
diff --git a/.changeset/five-cooks-develop.md b/.changeset/five-cooks-develop.md deleted file mode 100644 index e93e289a..00000000 --- a/.changeset/five-cooks-develop.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -"@astrojs/starlight": minor ---- - -Use path instead of slugified path for auto-generated sidebar item configuration - -⚠️ Potentially breaking change. If your docs directory names don’t match their URLs, for example they contain whitespace like `docs/my docs/`, and you were referencing these in an `autogenerate` sidebar group as `my-docs`, update your config to reference these with the directory name instead of the slugified version: - -```diff -autogenerate: { -- directory: 'my-docs', -+ directory: 'my docs', -} -``` diff --git a/.changeset/shy-bats-yell.md b/.changeset/shy-bats-yell.md deleted file mode 100644 index 95f96fca..00000000 --- a/.changeset/shy-bats-yell.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@astrojs/starlight": patch ---- - -Add Japanese translation for `search.devWarning` diff --git a/.changeset/spotty-ladybugs-obey.md b/.changeset/spotty-ladybugs-obey.md deleted file mode 100644 index 9293a348..00000000 --- a/.changeset/spotty-ladybugs-obey.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@astrojs/starlight": patch ---- - -Add missing i18n support to the Search component's dev warning. diff --git a/.changeset/strong-grapes-occur.md b/.changeset/strong-grapes-occur.md deleted file mode 100644 index bf50bbd0..00000000 --- a/.changeset/strong-grapes-occur.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@astrojs/starlight": patch ---- - -Add Spanish translation for `search.devWarning` diff --git a/.changeset/tiny-sheep-raise.md b/.changeset/tiny-sheep-raise.md deleted file mode 100644 index 07dfedd6..00000000 --- a/.changeset/tiny-sheep-raise.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@astrojs/starlight": minor ---- - -Add support for custom 404 pages. diff --git a/examples/basics/package.json b/examples/basics/package.json index 97572750..f39d2aa6 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "@astrojs/starlight": "^0.2.0", + "@astrojs/starlight": "^0.3.0", "astro": "^2.5.0", "sharp": "^0.32.1" } diff --git a/packages/starlight/CHANGELOG.md b/packages/starlight/CHANGELOG.md index c6aef1b1..566249f7 100644 --- a/packages/starlight/CHANGELOG.md +++ b/packages/starlight/CHANGELOG.md @@ -1,5 +1,30 @@ # @astrojs/starlight +## 0.3.0 + +### Minor Changes + +- [#237](https://github.com/withastro/starlight/pull/237) [`4279d75`](https://github.com/withastro/starlight/commit/4279d7512a8261b576056471f5aa1ede1e6aae4a) Thanks [@HiDeoo](https://github.com/HiDeoo)! - Use path instead of slugified path for auto-generated sidebar item configuration + + ⚠️ Potentially breaking change. If your docs directory names don’t match their URLs, for example they contain whitespace like `docs/my docs/`, and you were referencing these in an `autogenerate` sidebar group as `my-docs`, update your config to reference these with the directory name instead of the slugified version: + + ```diff + autogenerate: { + - directory: 'my-docs', + + directory: 'my docs', + } + ``` + +- [#226](https://github.com/withastro/starlight/pull/226) [`1aa2187`](https://github.com/withastro/starlight/commit/1aa2187944dde4419e523f0087139f5a21efd826) Thanks [@delucis](https://github.com/delucis)! - Add support for custom 404 pages. + +### Patch Changes + +- [#234](https://github.com/withastro/starlight/pull/234) [`91309ae`](https://github.com/withastro/starlight/commit/91309ae13250c5fd9f91a8e1843f16430773ff15) Thanks [@morinokami](https://github.com/morinokami)! - Add Japanese translation for `search.devWarning` + +- [#227](https://github.com/withastro/starlight/pull/227) [`fbdecfa`](https://github.com/withastro/starlight/commit/fbdecfab47effb0cba7cbc9233a7b6bffdded320) Thanks [@Yan-Thomas](https://github.com/Yan-Thomas)! - Add missing i18n support to the Search component's dev warning. + +- [#244](https://github.com/withastro/starlight/pull/244) [`f1bcbeb`](https://github.com/withastro/starlight/commit/f1bcbebeb441b6bb9ed6a1ab2414791e9d5de6ef) Thanks [@Waxer59](https://github.com/Waxer59)! - Add Spanish translation for `search.devWarning` + ## 0.2.0 ### Minor Changes diff --git a/packages/starlight/package.json b/packages/starlight/package.json index c55fba2f..618f8bf6 100644 --- a/packages/starlight/package.json +++ b/packages/starlight/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/starlight", - "version": "0.2.0", + "version": "0.3.0", "description": "Build beautiful, high-performance documentation websites with Astro", "scripts": {}, "keywords": [ diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3f33b723..bfdc2966 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -87,7 +87,7 @@ importers: examples/basics: dependencies: '@astrojs/starlight': - specifier: ^0.2.0 + specifier: ^0.3.0 version: link:../../packages/starlight astro: specifier: ^2.5.0 |