summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHouston (Bot)2024-07-10 09:24:58 -0700
committerGitHub2024-07-10 18:24:58 +0200
commit24c6765fbaa47d71785137c056ce3bbf364856ed (patch)
tree524c15ce2dd0b1a587b559d76bf664eabd912a3f
parent464685a3ce33e7ccc8d1d7365935732c87ba95e9 (diff)
downloadIT.starlight-24c6765fbaa47d71785137c056ce3bbf364856ed.tar.gz
IT.starlight-24c6765fbaa47d71785137c056ce3bbf364856ed.tar.bz2
IT.starlight-24c6765fbaa47d71785137c056ce3bbf364856ed.zip
[ci] release (#2110)@astrojs/starlight@0.25.1
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
-rw-r--r--.changeset/large-bananas-beg.md5
-rw-r--r--.changeset/orange-turtles-scream.md5
-rw-r--r--.changeset/small-kangaroos-smile.md8
-rw-r--r--.changeset/tender-fishes-join.md5
-rw-r--r--examples/basics/package.json2
-rw-r--r--examples/tailwind/package.json2
-rw-r--r--packages/starlight/CHANGELOG.md15
-rw-r--r--packages/starlight/package.json2
-rw-r--r--pnpm-lock.yaml4
9 files changed, 20 insertions, 28 deletions
diff --git a/.changeset/large-bananas-beg.md b/.changeset/large-bananas-beg.md
deleted file mode 100644
index 0e22d385..00000000
--- a/.changeset/large-bananas-beg.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/starlight': patch
----
-
-Fixes an i18n configuration issue for multilingual sites when using Astro’s `i18n` config with `prefixDefaultLocale` set to `false`.
diff --git a/.changeset/orange-turtles-scream.md b/.changeset/orange-turtles-scream.md
deleted file mode 100644
index 717ec50d..00000000
--- a/.changeset/orange-turtles-scream.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-"@astrojs/starlight": patch
----
-
-Updates Arabic UI translations
diff --git a/.changeset/small-kangaroos-smile.md b/.changeset/small-kangaroos-smile.md
deleted file mode 100644
index ca882622..00000000
--- a/.changeset/small-kangaroos-smile.md
+++ /dev/null
@@ -1,8 +0,0 @@
----
-'@astrojs/starlight': patch
----
-
-Fixes an edge case in custom pagination link processing
-
-Custom link values for `prev`/`next` in page frontmatter are now always used as authored.
-Previously this was not the case in some edge cases such as for the first and final pages in the sidebar.
diff --git a/.changeset/tender-fishes-join.md b/.changeset/tender-fishes-join.md
deleted file mode 100644
index a4667945..00000000
--- a/.changeset/tender-fishes-join.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/starlight': patch
----
-
-Improves styling of `<hr>`, `<blockquote>`, and `<code>` within asides
diff --git a/examples/basics/package.json b/examples/basics/package.json
index cff8a92d..75a75be4 100644
--- a/examples/basics/package.json
+++ b/examples/basics/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/starlight": "^0.25.0",
+ "@astrojs/starlight": "^0.25.1",
"astro": "^4.10.2",
"sharp": "^0.32.5"
}
diff --git a/examples/tailwind/package.json b/examples/tailwind/package.json
index efb25b31..27de9310 100644
--- a/examples/tailwind/package.json
+++ b/examples/tailwind/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/starlight": "^0.25.0",
+ "@astrojs/starlight": "^0.25.1",
"@astrojs/starlight-tailwind": "^2.0.3",
"@astrojs/tailwind": "^5.1.0",
"astro": "^4.10.2",
diff --git a/packages/starlight/CHANGELOG.md b/packages/starlight/CHANGELOG.md
index 3b85f376..bf0b7645 100644
--- a/packages/starlight/CHANGELOG.md
+++ b/packages/starlight/CHANGELOG.md
@@ -1,5 +1,20 @@
# @astrojs/starlight
+## 0.25.1
+
+### Patch Changes
+
+- [#2122](https://github.com/withastro/starlight/pull/2122) [`359a642`](https://github.com/withastro/starlight/commit/359a64219288795936f18fd50fb5f195c412a748) Thanks [@HiDeoo](https://github.com/HiDeoo)! - Fixes an i18n configuration issue for multilingual sites when using Astro’s `i18n` config with `prefixDefaultLocale` set to `false`.
+
+- [#2107](https://github.com/withastro/starlight/pull/2107) [`61e223b`](https://github.com/withastro/starlight/commit/61e223b153cb10958f3fbaa77acf6ac07d982944) Thanks [@sanabel-al-firdaws](https://github.com/sanabel-al-firdaws)! - Updates Arabic UI translations
+
+- [#2105](https://github.com/withastro/starlight/pull/2105) [`81f8a2c`](https://github.com/withastro/starlight/commit/81f8a2c9580ec07dd17e2f596b9b1b50fae8237a) Thanks [@delucis](https://github.com/delucis)! - Fixes an edge case in custom pagination link processing
+
+ Custom link values for `prev`/`next` in page frontmatter are now always used as authored.
+ Previously this was not the case in some edge cases such as for the first and final pages in the sidebar.
+
+- [#2119](https://github.com/withastro/starlight/pull/2119) [`464685a`](https://github.com/withastro/starlight/commit/464685a3ce33e7ccc8d1d7365935732c87ba95e9) Thanks [@evadecker](https://github.com/evadecker)! - Improves styling of `<hr>`, `<blockquote>`, and `<code>` within asides
+
## 0.25.0
### Minor Changes
diff --git a/packages/starlight/package.json b/packages/starlight/package.json
index 2833e866..9eab5c0e 100644
--- a/packages/starlight/package.json
+++ b/packages/starlight/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/starlight",
- "version": "0.25.0",
+ "version": "0.25.1",
"description": "Build beautiful, high-performance documentation websites with Astro",
"scripts": {
"test": "vitest",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 668a4842..38d19392 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -73,7 +73,7 @@ importers:
examples/basics:
dependencies:
'@astrojs/starlight':
- specifier: ^0.25.0
+ specifier: ^0.25.1
version: link:../../packages/starlight
astro:
specifier: ^4.10.2
@@ -85,7 +85,7 @@ importers:
examples/tailwind:
dependencies:
'@astrojs/starlight':
- specifier: ^0.25.0
+ specifier: ^0.25.1
version: link:../../packages/starlight
'@astrojs/starlight-tailwind':
specifier: ^2.0.3