From 27feccd23ecf43bef4ba08eb711ab38959697d5f Mon Sep 17 00:00:00 2001 From: Houston (Bot) Date: Mon, 7 Oct 2024 15:32:14 -0700 Subject: [ci] release (#2382) Co-authored-by: github-actions[bot] --- .changeset/dirty-masks-accept.md | 5 ----- .changeset/quick-swans-rule.md | 5 ----- .changeset/seven-falcons-tie.md | 5 ----- .changeset/thin-guests-listen.md | 5 ----- examples/basics/package.json | 2 +- examples/markdoc/package.json | 2 +- examples/tailwind/package.json | 2 +- packages/starlight/CHANGELOG.md | 12 ++++++++++++ packages/starlight/package.json | 2 +- pnpm-lock.yaml | 6 +++--- 10 files changed, 19 insertions(+), 27 deletions(-) delete mode 100644 .changeset/dirty-masks-accept.md delete mode 100644 .changeset/quick-swans-rule.md delete mode 100644 .changeset/seven-falcons-tie.md delete mode 100644 .changeset/thin-guests-listen.md diff --git a/.changeset/dirty-masks-accept.md b/.changeset/dirty-masks-accept.md deleted file mode 100644 index 41e8729f..00000000 --- a/.changeset/dirty-masks-accept.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/starlight': patch ---- - -Fixes a link formatting issue when using the Astro `build.format` option set to `file` with a `base`. diff --git a/.changeset/quick-swans-rule.md b/.changeset/quick-swans-rule.md deleted file mode 100644 index 0c406922..00000000 --- a/.changeset/quick-swans-rule.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/starlight': patch ---- - -Loosen Starlight’s i18n schema to pass through unknown keys diff --git a/.changeset/seven-falcons-tie.md b/.changeset/seven-falcons-tie.md deleted file mode 100644 index 6107fe3b..00000000 --- a/.changeset/seven-falcons-tie.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/starlight': patch ---- - -Fixes a potential type-checking issue in Starlight projects. diff --git a/.changeset/thin-guests-listen.md b/.changeset/thin-guests-listen.md deleted file mode 100644 index 0c92b68c..00000000 --- a/.changeset/thin-guests-listen.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/starlight': patch ---- - -Fixes CSS issue where bottom padding is not applied in the search dialog. diff --git a/examples/basics/package.json b/examples/basics/package.json index 86da617c..adabe9b1 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "@astrojs/starlight": "^0.28.2", + "@astrojs/starlight": "^0.28.3", "astro": "^4.15.3", "sharp": "^0.32.5" } diff --git a/examples/markdoc/package.json b/examples/markdoc/package.json index 87645b4b..08ae0599 100644 --- a/examples/markdoc/package.json +++ b/examples/markdoc/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@astrojs/markdoc": "^0.11.4", - "@astrojs/starlight": "^0.28.2", + "@astrojs/starlight": "^0.28.3", "@astrojs/starlight-markdoc": "^0.1.0", "astro": "^4.15.3", "sharp": "^0.32.5" diff --git a/examples/tailwind/package.json b/examples/tailwind/package.json index b362696a..87aac56b 100644 --- a/examples/tailwind/package.json +++ b/examples/tailwind/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "@astrojs/starlight": "^0.28.2", + "@astrojs/starlight": "^0.28.3", "@astrojs/starlight-tailwind": "^2.0.3", "@astrojs/tailwind": "^5.1.0", "astro": "^4.15.3", diff --git a/packages/starlight/CHANGELOG.md b/packages/starlight/CHANGELOG.md index 80bfa049..78ea4b8c 100644 --- a/packages/starlight/CHANGELOG.md +++ b/packages/starlight/CHANGELOG.md @@ -1,5 +1,17 @@ # @astrojs/starlight +## 0.28.3 + +### Patch Changes + +- [#2408](https://github.com/withastro/starlight/pull/2408) [`0b4823d`](https://github.com/withastro/starlight/commit/0b4823d534abe517fac5efd97f6febb5965714fe) Thanks [@HiDeoo](https://github.com/HiDeoo)! - Fixes a link formatting issue when using the Astro `build.format` option set to `file` with a `base`. + +- [#2380](https://github.com/withastro/starlight/pull/2380) [`7b451cf`](https://github.com/withastro/starlight/commit/7b451cff6979bef1c817f3a84392221ac884ba3d) Thanks [@delucis](https://github.com/delucis)! - Loosen Starlight’s i18n schema to pass through unknown keys + +- [#2388](https://github.com/withastro/starlight/pull/2388) [`6bba3d8`](https://github.com/withastro/starlight/commit/6bba3d8e02b95ecee7f9c945b6ee33b4c4ba755d) Thanks [@HiDeoo](https://github.com/HiDeoo)! - Fixes a potential type-checking issue in Starlight projects. + +- [#2443](https://github.com/withastro/starlight/pull/2443) [`a0f40b3`](https://github.com/withastro/starlight/commit/a0f40b3c3c7ab0cb9f0f5f11b94e3679547f6ab4) Thanks [@kevinzunigacuellar](https://github.com/kevinzunigacuellar)! - Fixes CSS issue where bottom padding is not applied in the search dialog. + ## 0.28.2 ### Patch Changes diff --git a/packages/starlight/package.json b/packages/starlight/package.json index 0aa7096e..a06c7b93 100644 --- a/packages/starlight/package.json +++ b/packages/starlight/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/starlight", - "version": "0.28.2", + "version": "0.28.3", "description": "Build beautiful, high-performance documentation websites with Astro", "scripts": { "test": "vitest", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f8e8bb03..fc5e38ab 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -73,7 +73,7 @@ importers: examples/basics: dependencies: '@astrojs/starlight': - specifier: ^0.28.2 + specifier: ^0.28.3 version: link:../../packages/starlight astro: specifier: ^4.15.3 @@ -88,7 +88,7 @@ importers: specifier: ^0.11.4 version: 0.11.4(astro@4.15.3) '@astrojs/starlight': - specifier: ^0.28.2 + specifier: ^0.28.3 version: link:../../packages/starlight '@astrojs/starlight-markdoc': specifier: ^0.1.0 @@ -103,7 +103,7 @@ importers: examples/tailwind: dependencies: '@astrojs/starlight': - specifier: ^0.28.2 + specifier: ^0.28.3 version: link:../../packages/starlight '@astrojs/starlight-tailwind': specifier: ^2.0.3 -- cgit