From 41c194db173d5dd1b5dfc2624d3762a65c76ee01 Mon Sep 17 00:00:00 2001 From: "Houston (Bot)" <108291165+astrobot-houston@users.noreply.github.com> Date: Fri, 8 Nov 2024 08:43:28 -0800 Subject: [PATCH] [ci] release (#2587) Co-authored-by: github-actions[bot] Co-authored-by: Chris Swithinbank --- .changeset/calm-worms-count.md | 5 ----- .changeset/kind-ravens-cross.md | 7 ------- .changeset/nasty-masks-argue.md | 7 ------- .changeset/ten-needles-sell.md | 5 ----- examples/basics/package.json | 2 +- examples/markdoc/package.json | 2 +- examples/tailwind/package.json | 2 +- packages/starlight/CHANGELOG.md | 18 ++++++++++++++++++ packages/starlight/package.json | 2 +- pnpm-lock.yaml | 6 +++--- 10 files changed, 25 insertions(+), 31 deletions(-) delete mode 100644 .changeset/calm-worms-count.md delete mode 100644 .changeset/kind-ravens-cross.md delete mode 100644 .changeset/nasty-masks-argue.md delete mode 100644 .changeset/ten-needles-sell.md diff --git a/.changeset/calm-worms-count.md b/.changeset/calm-worms-count.md deleted file mode 100644 index 749c3be7582..00000000000 --- a/.changeset/calm-worms-count.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/starlight': patch ---- - -Adds social link icon for Nostr diff --git a/.changeset/kind-ravens-cross.md b/.changeset/kind-ravens-cross.md deleted file mode 100644 index 6546b39d86b..00000000000 --- a/.changeset/kind-ravens-cross.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@astrojs/starlight': minor ---- - -Updates the `astro-expressive-code` dependency to the latest version (0.38). - -The new version allows using `ec.config.mjs` to selectively override individual Expressive Code styles and settings provided by Starlight themes and plugins, speeds up Shiki language loading, and adds the config option `expressiveCode.shiki.injectLangsIntoNestedCodeBlocks`. See the [Expressive Code release notes](https://expressive-code.com/releases/#0380) for full details. diff --git a/.changeset/nasty-masks-argue.md b/.changeset/nasty-masks-argue.md deleted file mode 100644 index cebc7e5ce5a..00000000000 --- a/.changeset/nasty-masks-argue.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@astrojs/starlight': minor ---- - -Improves build performance for sites with large sidebars - -This release adds a caching layer to Starlight’s sidebar generation logic, reducing the number of times sidebars need to be regenerated while building a site. Some benchmarks for projects with a complex sidebar saw builds complete more than 35% faster with this change. diff --git a/.changeset/ten-needles-sell.md b/.changeset/ten-needles-sell.md deleted file mode 100644 index f1612ddf799..00000000000 --- a/.changeset/ten-needles-sell.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/starlight': minor ---- - -Improves the accessibility of asides and tabs by removing some unnecessary HTML landmarks. diff --git a/examples/basics/package.json b/examples/basics/package.json index 320b66b1a36..fa5fe38a342 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "@astrojs/starlight": "^0.28.6", + "@astrojs/starlight": "^0.29.0", "astro": "^4.16.10", "sharp": "^0.32.5" } diff --git a/examples/markdoc/package.json b/examples/markdoc/package.json index 5725695a909..b6877a3a8d3 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.6", + "@astrojs/starlight": "^0.29.0", "@astrojs/starlight-markdoc": "^0.1.0", "astro": "^4.16.10", "sharp": "^0.32.5" diff --git a/examples/tailwind/package.json b/examples/tailwind/package.json index 9348d8c3f9e..0e81c760f51 100644 --- a/examples/tailwind/package.json +++ b/examples/tailwind/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "@astrojs/starlight": "^0.28.6", + "@astrojs/starlight": "^0.29.0", "@astrojs/starlight-tailwind": "^2.0.3", "@astrojs/tailwind": "^5.1.0", "astro": "^4.16.10", diff --git a/packages/starlight/CHANGELOG.md b/packages/starlight/CHANGELOG.md index 6e394950312..577fffdfb21 100644 --- a/packages/starlight/CHANGELOG.md +++ b/packages/starlight/CHANGELOG.md @@ -1,5 +1,23 @@ # @astrojs/starlight +## 0.29.0 + +### Minor Changes + +- [#2551](https://github.com/withastro/starlight/pull/2551) [`154c8e3`](https://github.com/withastro/starlight/commit/154c8e337819c7d7ebf4ff4dd55db0d10607620b) Thanks [@hippotastic](https://github.com/hippotastic)! - Updates the `astro-expressive-code` dependency to the latest version (0.38). + + The new version allows using `ec.config.mjs` to selectively override individual Expressive Code styles and settings provided by Starlight themes and plugins, speeds up Shiki language loading, and adds the config option `expressiveCode.shiki.injectLangsIntoNestedCodeBlocks`. See the [Expressive Code release notes](https://expressive-code.com/releases/#0380) for full details. + +- [#2252](https://github.com/withastro/starlight/pull/2252) [`6116db0`](https://github.com/withastro/starlight/commit/6116db03a4157c0f0caa210690ef0dcdd001a287) Thanks [@HiDeoo](https://github.com/HiDeoo)! - Improves build performance for sites with large sidebars + + This release adds a caching layer to Starlight’s sidebar generation logic, reducing the number of times sidebars need to be regenerated while building a site. Some benchmarks for projects with a complex sidebar saw builds complete more than 35% faster with this change. + +- [#2503](https://github.com/withastro/starlight/pull/2503) [`a4c8edd`](https://github.com/withastro/starlight/commit/a4c8eddc53993068c0f60159fecc123013827ef0) Thanks [@HiDeoo](https://github.com/HiDeoo)! - Improves the accessibility of asides and tabs by removing some unnecessary HTML landmarks. + +### Patch Changes + +- [#2579](https://github.com/withastro/starlight/pull/2579) [`241966b`](https://github.com/withastro/starlight/commit/241966bd0523a2e82891d622b2a97b2f3646bc41) Thanks [@RafidMuhymin](https://github.com/RafidMuhymin)! - Adds social link icon for Nostr + ## 0.28.6 ### Patch Changes diff --git a/packages/starlight/package.json b/packages/starlight/package.json index ef06bbdbbd7..94fae459621 100644 --- a/packages/starlight/package.json +++ b/packages/starlight/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/starlight", - "version": "0.28.6", + "version": "0.29.0", "description": "Build beautiful, high-performance documentation websites with Astro", "scripts": { "test": "vitest", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 13ed5e6709e..0ed85527581 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -76,7 +76,7 @@ importers: examples/basics: dependencies: '@astrojs/starlight': - specifier: ^0.28.6 + specifier: ^0.29.0 version: link:../../packages/starlight astro: specifier: ^4.16.10 @@ -91,7 +91,7 @@ importers: specifier: ^0.11.4 version: 0.11.5(astro@4.16.10) '@astrojs/starlight': - specifier: ^0.28.6 + specifier: ^0.29.0 version: link:../../packages/starlight '@astrojs/starlight-markdoc': specifier: ^0.1.0 @@ -106,7 +106,7 @@ importers: examples/tailwind: dependencies: '@astrojs/starlight': - specifier: ^0.28.6 + specifier: ^0.29.0 version: link:../../packages/starlight '@astrojs/starlight-tailwind': specifier: ^2.0.3