From 00cd951a8d9bc338b93854c93f99693388978a26 Mon Sep 17 00:00:00 2001 From: Houston (Bot) Date: Wed, 1 Nov 2023 15:42:25 -0700 Subject: [ci] release (#996) Co-authored-by: github-actions[bot] --- .changeset/four-pots-cheat.md | 5 ----- .changeset/large-squids-wash.md | 5 ----- .changeset/orange-pants-tell.md | 5 ----- .changeset/swift-geckos-remain.md | 5 ----- .changeset/thick-bats-pay.md | 5 ----- .changeset/violet-berries-mix.md | 12 ------------ examples/basics/package.json | 2 +- examples/tailwind/package.json | 4 ++-- packages/starlight/CHANGELOG.md | 41 ++++++++++++++++++++++++++++++--------- packages/starlight/package.json | 2 +- packages/tailwind/CHANGELOG.md | 6 ++++++ packages/tailwind/package.json | 2 +- pnpm-lock.yaml | 6 +++--- 13 files changed, 46 insertions(+), 54 deletions(-) delete mode 100644 .changeset/four-pots-cheat.md delete mode 100644 .changeset/large-squids-wash.md delete mode 100644 .changeset/orange-pants-tell.md delete mode 100644 .changeset/swift-geckos-remain.md delete mode 100644 .changeset/thick-bats-pay.md delete mode 100644 .changeset/violet-berries-mix.md diff --git a/.changeset/four-pots-cheat.md b/.changeset/four-pots-cheat.md deleted file mode 100644 index 878c564c..00000000 --- a/.changeset/four-pots-cheat.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@astrojs/starlight": patch ---- - -Add Galician language support diff --git a/.changeset/large-squids-wash.md b/.changeset/large-squids-wash.md deleted file mode 100644 index 924b70dc..00000000 --- a/.changeset/large-squids-wash.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/starlight': patch ---- - -Internal: refactor translation string loading to make translations available to Starlight integration code diff --git a/.changeset/orange-pants-tell.md b/.changeset/orange-pants-tell.md deleted file mode 100644 index a11ff966..00000000 --- a/.changeset/orange-pants-tell.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/starlight': minor ---- - -Adds support for adding sidebar badges to group headings diff --git a/.changeset/swift-geckos-remain.md b/.changeset/swift-geckos-remain.md deleted file mode 100644 index 6121935c..00000000 --- a/.changeset/swift-geckos-remain.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/starlight': minor ---- - -Include social icon links in mobile menu diff --git a/.changeset/thick-bats-pay.md b/.changeset/thick-bats-pay.md deleted file mode 100644 index 65987f72..00000000 --- a/.changeset/thick-bats-pay.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/starlight-tailwind': patch ---- - -Show `tailwind.config.mjs` file in docs diff --git a/.changeset/violet-berries-mix.md b/.changeset/violet-berries-mix.md deleted file mode 100644 index e93a59f8..00000000 --- a/.changeset/violet-berries-mix.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -'@astrojs/starlight': minor ---- - -Support light & dark variants of the hero image. - -⚠️ **Potentially breaking change:** The `hero.image` schema is now slightly stricter than previously. - -The `hero.image.html` property can no longer be used alongside the `hero.image.alt` or `hero.image.file` properties. -Previously, `html` was ignored when used with `file` and `alt` was ignored when used with `html`. -Now, those combinations will throw errors. -If you encounter errors, remove the `image.hero` property that is not in use. \ No newline at end of file diff --git a/examples/basics/package.json b/examples/basics/package.json index ff6fba72..b7a52878 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "@astrojs/starlight": "^0.11.2", + "@astrojs/starlight": "^0.12.0", "astro": "^3.2.3", "sharp": "^0.32.5" } diff --git a/examples/tailwind/package.json b/examples/tailwind/package.json index 82f4db1f..25851c56 100644 --- a/examples/tailwind/package.json +++ b/examples/tailwind/package.json @@ -11,8 +11,8 @@ "astro": "astro" }, "dependencies": { - "@astrojs/starlight": "^0.11.2", - "@astrojs/starlight-tailwind": "^2.0.0", + "@astrojs/starlight": "^0.12.0", + "@astrojs/starlight-tailwind": "^2.0.1", "@astrojs/tailwind": "^5.0.0", "astro": "^3.2.3", "sharp": "^0.32.5", diff --git a/packages/starlight/CHANGELOG.md b/packages/starlight/CHANGELOG.md index 4d72631f..b1efb6fc 100644 --- a/packages/starlight/CHANGELOG.md +++ b/packages/starlight/CHANGELOG.md @@ -1,5 +1,28 @@ # @astrojs/starlight +## 0.12.0 + +### Minor Changes + +- [#995](https://github.com/withastro/starlight/pull/995) [`5bf4457`](https://github.com/withastro/starlight/commit/5bf44577634935b9fa6d50b040abcd680035075f) Thanks [@kevinzunigacuellar](https://github.com/kevinzunigacuellar)! - Adds support for adding sidebar badges to group headings + +- [#988](https://github.com/withastro/starlight/pull/988) [`977fe13`](https://github.com/withastro/starlight/commit/977fe135a74661300589898abe98aec73cad9ed3) Thanks [@magicDGS](https://github.com/magicDGS)! - Include social icon links in mobile menu + +- [#280](https://github.com/withastro/starlight/pull/280) [`72cca2d`](https://github.com/withastro/starlight/commit/72cca2d07644f00595da6ebf7d603adb282f359d) Thanks [@cbontems](https://github.com/cbontems)! - Support light & dark variants of the hero image. + + ⚠️ **Potentially breaking change:** The `hero.image` schema is now slightly stricter than previously. + + The `hero.image.html` property can no longer be used alongside the `hero.image.alt` or `hero.image.file` properties. + Previously, `html` was ignored when used with `file` and `alt` was ignored when used with `html`. + Now, those combinations will throw errors. + If you encounter errors, remove the `image.hero` property that is not in use. + +### Patch Changes + +- [#1004](https://github.com/withastro/starlight/pull/1004) [`7f92213`](https://github.com/withastro/starlight/commit/7f92213a0b93de5a844816841a6bc9cdd371de0c) Thanks [@nunhes](https://github.com/nunhes)! - Add Galician language support + +- [#1003](https://github.com/withastro/starlight/pull/1003) [`f1fdb50`](https://github.com/withastro/starlight/commit/f1fdb50daebe79548c7789d3f7dd968b261d2da7) Thanks [@delucis](https://github.com/delucis)! - Internal: refactor translation string loading to make translations available to Starlight integration code + ## 0.11.2 ### Patch Changes @@ -258,16 +281,16 @@ ```css :root { - --sl-hue-accent: 234; - --sl-color-accent-low: hsl(var(--sl-hue-accent), 54%, 20%); - --sl-color-accent: hsl(var(--sl-hue-accent), 100%, 60%); - --sl-color-accent-high: hsl(var(--sl-hue-accent), 100%, 87%); + --sl-hue-accent: 234; + --sl-color-accent-low: hsl(var(--sl-hue-accent), 54%, 20%); + --sl-color-accent: hsl(var(--sl-hue-accent), 100%, 60%); + --sl-color-accent-high: hsl(var(--sl-hue-accent), 100%, 87%); } :root[data-theme='light'] { - --sl-color-accent-high: hsl(var(--sl-hue-accent), 80%, 30%); - --sl-color-accent: hsl(var(--sl-hue-accent), 90%, 60%); - --sl-color-accent-low: hsl(var(--sl-hue-accent), 88%, 90%); + --sl-color-accent-high: hsl(var(--sl-hue-accent), 80%, 30%); + --sl-color-accent: hsl(var(--sl-hue-accent), 90%, 60%); + --sl-color-accent-low: hsl(var(--sl-hue-accent), 88%, 90%); } ``` @@ -646,8 +669,8 @@ ```json { - "search.label": "Suchen", - "search.shortcutLabel": "(Drücke / zum Suchen)" + "search.label": "Suchen", + "search.shortcutLabel": "(Drücke / zum Suchen)" } ``` diff --git a/packages/starlight/package.json b/packages/starlight/package.json index ccae14c4..946dc1eb 100644 --- a/packages/starlight/package.json +++ b/packages/starlight/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/starlight", - "version": "0.11.2", + "version": "0.12.0", "description": "Build beautiful, high-performance documentation websites with Astro", "scripts": { "test": "vitest", diff --git a/packages/tailwind/CHANGELOG.md b/packages/tailwind/CHANGELOG.md index bf0340e3..6f7d6f99 100644 --- a/packages/tailwind/CHANGELOG.md +++ b/packages/tailwind/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/starlight-tailwind +## 2.0.1 + +### Patch Changes + +- [#903](https://github.com/withastro/starlight/pull/903) [`232f512`](https://github.com/withastro/starlight/commit/232f51207fe97880760fba25351cdc65b20f4c67) Thanks [@torn4dom4n](https://github.com/torn4dom4n)! - Show `tailwind.config.mjs` file in docs + ## 2.0.0 ### Major Changes diff --git a/packages/tailwind/package.json b/packages/tailwind/package.json index d7496c52..9a7d0568 100644 --- a/packages/tailwind/package.json +++ b/packages/tailwind/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/starlight-tailwind", - "version": "2.0.0", + "version": "2.0.1", "description": "Tailwind CSS plugin for the Starlight documentation theme for Astro", "author": "Chris Swithinbank ", "license": "MIT", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f4afdf54..c6035741 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -103,7 +103,7 @@ importers: examples/basics: dependencies: '@astrojs/starlight': - specifier: ^0.11.2 + specifier: ^0.12.0 version: link:../../packages/starlight astro: specifier: ^3.2.3 @@ -115,10 +115,10 @@ importers: examples/tailwind: dependencies: '@astrojs/starlight': - specifier: ^0.11.2 + specifier: ^0.12.0 version: link:../../packages/starlight '@astrojs/starlight-tailwind': - specifier: ^2.0.0 + specifier: ^2.0.1 version: link:../../packages/tailwind '@astrojs/tailwind': specifier: ^5.0.0 -- cgit