Update dependency @astrojs/starlight to ^0.36.0 (#28)
Some checks failed
renovate / renovate (push) Has been cancelled
test-build / build (push) Has been cancelled

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@astrojs/starlight](https://starlight.astro.build) ([source](https://github.com/withastro/starlight/tree/HEAD/packages/starlight)) | [`^0.35.2` -> `^0.36.0`](https://renovatebot.com/diffs/npm/@astrojs%2fstarlight/0.35.3/0.36.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@astrojs%2fstarlight/0.36.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@astrojs%2fstarlight/0.36.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@astrojs%2fstarlight/0.35.3/0.36.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@astrojs%2fstarlight/0.35.3/0.36.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>withastro/starlight (@&#8203;astrojs/starlight)</summary>

### [`v0.36.0`](https://github.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0360)

[Compare Source](https://github.com/withastro/starlight/compare/@astrojs/starlight@0.35.3...@astrojs/starlight@0.36.0)

##### Minor Changes

- [#&#8203;3427](https://github.com/withastro/starlight/pull/3427) [`c3b2d0f`](c3b2d0fc37) Thanks [@&#8203;delucis](https://github.com/delucis)! - Fixes styling of labels that wrap across multiple lines in `<Tabs>` component

  ⚠️ **Potentially breaking change:** Tab labels now have a narrower line-height and additional vertical padding. If you have custom CSS targetting the `<Tabs>` component, you may want to double check the visual appearance of your tabs when updating.

  If you want to preserve the previous styling, you can add the following custom CSS to your site:

  ```css
  .tab > [role='tab'] {
    line-height: var(--sl-line-height);
    padding-block: 0;
  }
  ```

- [#&#8203;3380](https://github.com/withastro/starlight/pull/3380) [`3364af3`](3364af31e5) Thanks [@&#8203;HiDeoo](https://github.com/HiDeoo)! - Makes head entry parsing stricter in Starlight config and content frontmatter.

  **⚠️ Potentially breaking change:** Previously Starlight would accept a head entry for a `meta` tag defining some `content` which generates invalid HTML as `<meta>` is a void element which cannot have any child nodes. Now, it is an error to define a `meta` tag including some `content`.

  If you see errors after updating, look for head entries in the Starlight configuration in the `astro.config.mjs` file or in the frontmatter of your content files that include a `content` property for a `meta` tag. To fix the error, move the `content` property to the `attrs` object with at least an additional attribute to identify the kind of metadata it represents:

  ```diff
  head: {
    tag: 'meta',
  - content: 'foo',
    attrs: {
      name: 'my-meta',
  +   content: 'foo',
    },
  },
  ```

- [#&#8203;3340](https://github.com/withastro/starlight/pull/3340) [`2018c31`](2018c31b0f) Thanks [@&#8203;HiDeoo](https://github.com/HiDeoo)! - Adds missing vertical spacing between Markdown content and UI Framework components using [client directives](https://docs.astro.build/en/reference/directives-reference/#client-directives).

  **⚠️ Potentially breaking change:** By default, Starlight applies some vertical spacing (`--sl-content-gap-y`) between Markdown content blocks. This change introduces similar spacing between Markdown content blocks and UI Framework components using client directives which was not present before.

  If you were relying on the previous behavior, you can manually override the spacing by manually specifying the top margin on the component using [custom CSS](https://starlight.astro.build/guides/css-and-tailwind/#custom-css-styles), e.g. by relying on a CSS class to target the component.

  ```css
  .my-custom-component {
    margin-top: 0;
  }
  ```

##### Patch Changes

- [#&#8203;3423](https://github.com/withastro/starlight/pull/3423) [`a0d0670`](a0d0670bce) Thanks [@&#8203;andersk](https://github.com/andersk)! - Fixes HTML validity in sidebar groups by ensuring `<summary>` is the first child of `<details>`

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xMTYuNiIsInVwZGF0ZWRJblZlciI6IjQxLjExNi42IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmN5Il19-->

Reviewed-on: #28
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net>
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net>
This commit is contained in:
2025-09-22 23:33:12 +00:00
committed by Alex Lebens
parent dae234f3b4
commit f00de2432d
2 changed files with 10 additions and 10 deletions

View File

@@ -14,7 +14,7 @@
"dependencies": {
"@astrojs/mdx": "4.3.5",
"@astrojs/node": "9.4.3",
"@astrojs/starlight": "^0.35.2",
"@astrojs/starlight": "^0.36.0",
"@catppuccin/starlight": "1.0.2",
"@tailwindcss/postcss": "^4.1.8",
"@tailwindcss/vite": "^4.1.8",

18
pnpm-lock.yaml generated
View File

@@ -15,11 +15,11 @@ importers:
specifier: 9.4.3
version: 9.4.3(astro@5.13.9(@types/node@24.1.0)(jiti@2.5.1)(lightningcss@1.30.1)(rollup@4.46.2)(typescript@5.9.2))
'@astrojs/starlight':
specifier: ^0.35.2
version: 0.35.3(astro@5.13.9(@types/node@24.1.0)(jiti@2.5.1)(lightningcss@1.30.1)(rollup@4.46.2)(typescript@5.9.2))
specifier: ^0.36.0
version: 0.36.0(astro@5.13.9(@types/node@24.1.0)(jiti@2.5.1)(lightningcss@1.30.1)(rollup@4.46.2)(typescript@5.9.2))
'@catppuccin/starlight':
specifier: 1.0.2
version: 1.0.2(@astrojs/starlight@0.35.3(astro@5.13.9(@types/node@24.1.0)(jiti@2.5.1)(lightningcss@1.30.1)(rollup@4.46.2)(typescript@5.9.2)))(astro@5.13.9(@types/node@24.1.0)(jiti@2.5.1)(lightningcss@1.30.1)(rollup@4.46.2)(typescript@5.9.2))
version: 1.0.2(@astrojs/starlight@0.36.0(astro@5.13.9(@types/node@24.1.0)(jiti@2.5.1)(lightningcss@1.30.1)(rollup@4.46.2)(typescript@5.9.2)))(astro@5.13.9(@types/node@24.1.0)(jiti@2.5.1)(lightningcss@1.30.1)(rollup@4.46.2)(typescript@5.9.2))
'@tailwindcss/postcss':
specifier: ^4.1.8
version: 4.1.13
@@ -103,8 +103,8 @@ packages:
'@astrojs/sitemap@3.5.1':
resolution: {integrity: sha512-uX5z52GLtQTgOe8r3jeGmFRYrFe52mdpLYJzqjvL1cdy5Kg3MLOZEvaZ/OCH0fSq0t7e50uJQ6oBMZG0ffszBg==}
'@astrojs/starlight@0.35.3':
resolution: {integrity: sha512-z9MbODjZl/STU3PPU18iOTkLObJBw7PA8xMe5s+KPscQGL0LNZyQUYeClG+F1/em/k+2AsokGpVPta+aOTk1sg==}
'@astrojs/starlight@0.36.0':
resolution: {integrity: sha512-aVJVBfvFuE2avsMDhmRzn6I5GjDhUwIQFlu3qH9a1C0fNsPYDw2asxHQODAD7EfGiKGvvHCJgHb+9jbJ8lCfNQ==}
peerDependencies:
astro: ^5.5.0
@@ -2883,7 +2883,7 @@ snapshots:
stream-replace-string: 2.0.0
zod: 3.25.76
'@astrojs/starlight@0.35.3(astro@5.13.9(@types/node@24.1.0)(jiti@2.5.1)(lightningcss@1.30.1)(rollup@4.46.2)(typescript@5.9.2))':
'@astrojs/starlight@0.36.0(astro@5.13.9(@types/node@24.1.0)(jiti@2.5.1)(lightningcss@1.30.1)(rollup@4.46.2)(typescript@5.9.2))':
dependencies:
'@astrojs/markdown-remark': 6.3.6
'@astrojs/mdx': 4.3.5(astro@5.13.9(@types/node@24.1.0)(jiti@2.5.1)(lightningcss@1.30.1)(rollup@4.46.2)(typescript@5.9.2))
@@ -2951,9 +2951,9 @@ snapshots:
transitivePeerDependencies:
- encoding
'@catppuccin/starlight@1.0.2(@astrojs/starlight@0.35.3(astro@5.13.9(@types/node@24.1.0)(jiti@2.5.1)(lightningcss@1.30.1)(rollup@4.46.2)(typescript@5.9.2)))(astro@5.13.9(@types/node@24.1.0)(jiti@2.5.1)(lightningcss@1.30.1)(rollup@4.46.2)(typescript@5.9.2))':
'@catppuccin/starlight@1.0.2(@astrojs/starlight@0.36.0(astro@5.13.9(@types/node@24.1.0)(jiti@2.5.1)(lightningcss@1.30.1)(rollup@4.46.2)(typescript@5.9.2)))(astro@5.13.9(@types/node@24.1.0)(jiti@2.5.1)(lightningcss@1.30.1)(rollup@4.46.2)(typescript@5.9.2))':
dependencies:
'@astrojs/starlight': 0.35.3(astro@5.13.9(@types/node@24.1.0)(jiti@2.5.1)(lightningcss@1.30.1)(rollup@4.46.2)(typescript@5.9.2))
'@astrojs/starlight': 0.36.0(astro@5.13.9(@types/node@24.1.0)(jiti@2.5.1)(lightningcss@1.30.1)(rollup@4.46.2)(typescript@5.9.2))
astro: 5.13.9(@types/node@24.1.0)(jiti@2.5.1)(lightningcss@1.30.1)(rollup@4.46.2)(typescript@5.9.2)
'@ctrl/tinycolor@4.1.0': {}
@@ -3533,7 +3533,7 @@ snapshots:
'@types/sax@1.2.7':
dependencies:
'@types/node': 17.0.45
'@types/node': 24.1.0
'@types/unist@2.0.11': {}