summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHouston (Bot)2024-09-06 15:45:52 -0700
committerGitHub2024-09-07 00:45:52 +0200
commit14992f7683df00c56945dd4a6fd9b9b5ed0ec226 (patch)
tree43687f873e85e9602af04f2a6bab5f687cbdc134
parent6f3202b3eb747de8a1cfcba001ab618d5fdee44a (diff)
downloadIT.starlight-14992f7683df00c56945dd4a6fd9b9b5ed0ec226.tar.gz
IT.starlight-14992f7683df00c56945dd4a6fd9b9b5ed0ec226.tar.bz2
IT.starlight-14992f7683df00c56945dd4a6fd9b9b5ed0ec226.zip
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
-rw-r--r--.changeset/heavy-forks-help.md5
-rw-r--r--.changeset/ninety-singers-film.md7
-rw-r--r--.changeset/quiet-penguins-wonder.md5
-rw-r--r--.changeset/selfish-chefs-tie.md7
-rw-r--r--.changeset/six-phones-boil.md16
-rw-r--r--examples/basics/package.json2
-rw-r--r--examples/markdoc/package.json4
-rw-r--r--examples/tailwind/package.json2
-rw-r--r--packages/markdoc/CHANGELOG.md9
-rw-r--r--packages/markdoc/package.json2
-rw-r--r--packages/starlight/CHANGELOG.md29
-rw-r--r--packages/starlight/package.json2
-rw-r--r--pnpm-lock.yaml8
13 files changed, 48 insertions, 50 deletions
diff --git a/.changeset/heavy-forks-help.md b/.changeset/heavy-forks-help.md
deleted file mode 100644
index 17f017ff..00000000
--- a/.changeset/heavy-forks-help.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-"@astrojs/starlight": patch
----
-
-Refactors the logic for persisting and restoring sidebar state across navigations for better performance on slow or busy devices
diff --git a/.changeset/ninety-singers-film.md b/.changeset/ninety-singers-film.md
deleted file mode 100644
index 3b8fa285..00000000
--- a/.changeset/ninety-singers-film.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-'@astrojs/starlight': patch
----
-
-Improves performance of computing the last updated times from Git history.
-
-Instead of executing `git` for each docs page, it is now executed twice regardless of the number of pages.
diff --git a/.changeset/quiet-penguins-wonder.md b/.changeset/quiet-penguins-wonder.md
deleted file mode 100644
index 5fda6c0f..00000000
--- a/.changeset/quiet-penguins-wonder.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/starlight': patch
----
-
-Fixes last updated times on projects with custom `srcDir`
diff --git a/.changeset/selfish-chefs-tie.md b/.changeset/selfish-chefs-tie.md
deleted file mode 100644
index f8869194..00000000
--- a/.changeset/selfish-chefs-tie.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-'@astrojs/starlight-markdoc': minor
----
-
-Adds Starlight Markdoc preset.
-
-See the [“Markdoc”](https://starlight.astro.build/guides/authoring-content/#markdoc) guide to learn more on how to use this preset in a new or existing project.
diff --git a/.changeset/six-phones-boil.md b/.changeset/six-phones-boil.md
deleted file mode 100644
index fa22cbed..00000000
--- a/.changeset/six-phones-boil.md
+++ /dev/null
@@ -1,16 +0,0 @@
----
-'@astrojs/starlight': minor
----
-
-Adds support for server-rendered Starlight pages.
-
-When building a project with `hybrid` or `server` output mode, a new `prerender` option on Starlight config can be set to `false` to make all Starlight pages be rendered on-demand:
-
-```ts
-export default defineConfig({
- output: 'server',
- integrations: [starlight({
- prerender: false
- })],
-})
-```
diff --git a/examples/basics/package.json b/examples/basics/package.json
index 0628092f..ff15a421 100644
--- a/examples/basics/package.json
+++ b/examples/basics/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/starlight": "^0.26.4",
+ "@astrojs/starlight": "^0.27.0",
"astro": "^4.15.3",
"sharp": "^0.32.5"
}
diff --git a/examples/markdoc/package.json b/examples/markdoc/package.json
index d87a8ac6..6ed0b5c6 100644
--- a/examples/markdoc/package.json
+++ b/examples/markdoc/package.json
@@ -12,8 +12,8 @@
},
"dependencies": {
"@astrojs/markdoc": "^0.11.4",
- "@astrojs/starlight": "^0.26.1",
- "@astrojs/starlight-markdoc": "^0.0.1",
+ "@astrojs/starlight": "^0.27.0",
+ "@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 935efb71..bc52275b 100644
--- a/examples/tailwind/package.json
+++ b/examples/tailwind/package.json
@@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
- "@astrojs/starlight": "^0.26.4",
+ "@astrojs/starlight": "^0.27.0",
"@astrojs/starlight-tailwind": "^2.0.3",
"@astrojs/tailwind": "^5.1.0",
"astro": "^4.15.3",
diff --git a/packages/markdoc/CHANGELOG.md b/packages/markdoc/CHANGELOG.md
new file mode 100644
index 00000000..433575df
--- /dev/null
+++ b/packages/markdoc/CHANGELOG.md
@@ -0,0 +1,9 @@
+# @astrojs/starlight-markdoc
+
+## 0.1.0
+
+### Minor Changes
+
+- [#2249](https://github.com/withastro/starlight/pull/2249) [`20cbf3b`](https://github.com/withastro/starlight/commit/20cbf3b6a4d1598a62fdb176ebaa849bc7b978f7) Thanks [@HiDeoo](https://github.com/HiDeoo)! - Adds Starlight Markdoc preset.
+
+ See the [“Markdoc”](https://starlight.astro.build/guides/authoring-content/#markdoc) guide to learn more on how to use this preset in a new or existing project.
diff --git a/packages/markdoc/package.json b/packages/markdoc/package.json
index 355c776c..81e79cd8 100644
--- a/packages/markdoc/package.json
+++ b/packages/markdoc/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/starlight-markdoc",
- "version": "0.0.1",
+ "version": "0.1.0",
"description": "Markdoc preset for the Starlight documentation theme for Astro",
"author": "Chris Swithinbank <swithinbank@gmail.com>",
"license": "MIT",
diff --git a/packages/starlight/CHANGELOG.md b/packages/starlight/CHANGELOG.md
index feba71ea..6fc94d75 100644
--- a/packages/starlight/CHANGELOG.md
+++ b/packages/starlight/CHANGELOG.md
@@ -1,5 +1,34 @@
# @astrojs/starlight
+## 0.27.0
+
+### Minor Changes
+
+- [#1255](https://github.com/withastro/starlight/pull/1255) [`6f3202b`](https://github.com/withastro/starlight/commit/6f3202b3eb747de8a1cfcba001ab618d5fdee44a) Thanks [@Fryuni](https://github.com/Fryuni)! - Adds support for server-rendered Starlight pages.
+
+ When building a project with `hybrid` or `server` output mode, a new `prerender` option on Starlight config can be set to `false` to make all Starlight pages be rendered on-demand:
+
+ ```ts
+ export default defineConfig({
+ output: 'server',
+ integrations: [
+ starlight({
+ prerender: false,
+ }),
+ ],
+ });
+ ```
+
+### Patch Changes
+
+- [#2242](https://github.com/withastro/starlight/pull/2242) [`756e85e`](https://github.com/withastro/starlight/commit/756e85e8e814657c42c4a6f9c299b5bef32aee22) Thanks [@delucis](https://github.com/delucis)! - Refactors the logic for persisting and restoring sidebar state across navigations for better performance on slow or busy devices
+
+- [#1255](https://github.com/withastro/starlight/pull/1255) [`6f3202b`](https://github.com/withastro/starlight/commit/6f3202b3eb747de8a1cfcba001ab618d5fdee44a) Thanks [@Fryuni](https://github.com/Fryuni)! - Improves performance of computing the last updated times from Git history.
+
+ Instead of executing `git` for each docs page, it is now executed twice regardless of the number of pages.
+
+- [#1255](https://github.com/withastro/starlight/pull/1255) [`6f3202b`](https://github.com/withastro/starlight/commit/6f3202b3eb747de8a1cfcba001ab618d5fdee44a) Thanks [@Fryuni](https://github.com/Fryuni)! - Fixes last updated times on projects with custom `srcDir`
+
## 0.26.4
### Patch Changes
diff --git a/packages/starlight/package.json b/packages/starlight/package.json
index 13786616..01752c31 100644
--- a/packages/starlight/package.json
+++ b/packages/starlight/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/starlight",
- "version": "0.26.4",
+ "version": "0.27.0",
"description": "Build beautiful, high-performance documentation websites with Astro",
"scripts": {
"test": "vitest",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index e2c7deef..772a40b6 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -73,7 +73,7 @@ importers:
examples/basics:
dependencies:
'@astrojs/starlight':
- specifier: ^0.26.4
+ specifier: ^0.27.0
version: link:../../packages/starlight
astro:
specifier: ^4.15.3
@@ -88,10 +88,10 @@ importers:
specifier: ^0.11.4
version: 0.11.4(astro@4.15.3)
'@astrojs/starlight':
- specifier: ^0.26.1
+ specifier: ^0.27.0
version: link:../../packages/starlight
'@astrojs/starlight-markdoc':
- specifier: ^0.0.1
+ specifier: ^0.1.0
version: link:../../packages/markdoc
astro:
specifier: ^4.15.3
@@ -103,7 +103,7 @@ importers:
examples/tailwind:
dependencies:
'@astrojs/starlight':
- specifier: ^0.26.4
+ specifier: ^0.27.0
version: link:../../packages/starlight
'@astrojs/starlight-tailwind':
specifier: ^2.0.3