From 5073213b3e7fc3d966098b7e3593463095462a3b Mon Sep 17 00:00:00 2001 From: Houston (Bot) Date: Sat, 5 Apr 2025 09:24:01 -0700 Subject: [ci] release (#3036) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>--- .changeset/brown-bottles-stare.md | 5 ----- .changeset/eight-masks-kick.md | 5 ----- examples/basics/package.json | 2 +- examples/markdoc/package.json | 2 +- examples/tailwind/package.json | 2 +- packages/starlight/CHANGELOG.md | 8 ++++++++ packages/starlight/package.json | 2 +- pnpm-lock.yaml | 6 +++--- 8 files changed, 15 insertions(+), 17 deletions(-) delete mode 100644 .changeset/brown-bottles-stare.md delete mode 100644 .changeset/eight-masks-kick.md diff --git a/.changeset/brown-bottles-stare.md b/.changeset/brown-bottles-stare.md deleted file mode 100644 index 8ad54d1e..00000000 --- a/.changeset/brown-bottles-stare.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/starlight': patch ---- - -Updates the type of the `isFallback` field in route data from `true` to `boolean`, keeping it optional but allowing `false` as a possible value. diff --git a/.changeset/eight-masks-kick.md b/.changeset/eight-masks-kick.md deleted file mode 100644 index 4766139d..00000000 --- a/.changeset/eight-masks-kick.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/starlight': patch ---- - -Adds validation for user config `routeMiddleware` so it does not conflict with [Astro's middleware](https://docs.astro.build/en/guides/middleware/). diff --git a/examples/basics/package.json b/examples/basics/package.json index 80895c8b..aaf0667c 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "@astrojs/starlight": "^0.32.5", + "@astrojs/starlight": "^0.32.6", "astro": "^5.5.3", "sharp": "^0.32.5" } diff --git a/examples/markdoc/package.json b/examples/markdoc/package.json index 9000ade8..bab0c63f 100644 --- a/examples/markdoc/package.json +++ b/examples/markdoc/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@astrojs/markdoc": "^0.12.4", - "@astrojs/starlight": "^0.32.5", + "@astrojs/starlight": "^0.32.6", "@astrojs/starlight-markdoc": "^0.3.0", "astro": "^5.5.3", "sharp": "^0.32.5" diff --git a/examples/tailwind/package.json b/examples/tailwind/package.json index 535edc4a..80f7e5c0 100644 --- a/examples/tailwind/package.json +++ b/examples/tailwind/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "@astrojs/starlight": "^0.32.5", + "@astrojs/starlight": "^0.32.6", "@astrojs/starlight-tailwind": "^3.0.1", "@astrojs/tailwind": "^5.1.4", "astro": "^5.5.3", diff --git a/packages/starlight/CHANGELOG.md b/packages/starlight/CHANGELOG.md index 14ed5ec0..7bd67677 100644 --- a/packages/starlight/CHANGELOG.md +++ b/packages/starlight/CHANGELOG.md @@ -1,5 +1,13 @@ # @astrojs/starlight +## 0.32.6 + +### Patch Changes + +- [#3030](https://github.com/withastro/starlight/pull/3030) [`5bdf139`](https://github.com/withastro/starlight/commit/5bdf139191a20f19458b027617877c1063b46724) Thanks [@trueberryless](https://github.com/trueberryless)! - Updates the type of the `isFallback` field in route data from `true` to `boolean`, keeping it optional but allowing `false` as a possible value. + +- [#3018](https://github.com/withastro/starlight/pull/3018) [`188b8cf`](https://github.com/withastro/starlight/commit/188b8cfa8ad8761365b8b557c4b9fea671050ed6) Thanks [@trueberryless](https://github.com/trueberryless)! - Adds validation for user config `routeMiddleware` so it does not conflict with [Astro's middleware](https://docs.astro.build/en/guides/middleware/). + ## 0.32.5 ### Patch Changes diff --git a/packages/starlight/package.json b/packages/starlight/package.json index 709f8210..8fcdea9e 100644 --- a/packages/starlight/package.json +++ b/packages/starlight/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/starlight", - "version": "0.32.5", + "version": "0.32.6", "description": "Build beautiful, high-performance documentation websites with Astro", "scripts": { "test": "vitest", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 890812ec..34d24551 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -76,7 +76,7 @@ importers: examples/basics: dependencies: '@astrojs/starlight': - specifier: ^0.32.5 + specifier: ^0.32.6 version: link:../../packages/starlight astro: specifier: ^5.5.3 @@ -91,7 +91,7 @@ importers: specifier: ^0.12.4 version: 0.12.5(astro@5.5.3) '@astrojs/starlight': - specifier: ^0.32.5 + specifier: ^0.32.6 version: link:../../packages/starlight '@astrojs/starlight-markdoc': specifier: ^0.3.0 @@ -106,7 +106,7 @@ importers: examples/tailwind: dependencies: '@astrojs/starlight': - specifier: ^0.32.5 + specifier: ^0.32.6 version: link:../../packages/starlight '@astrojs/starlight-tailwind': specifier: ^3.0.1 -- cgit