[docs] Update Astro dependencies and apply Starlight 0.39 sidebar migration#33431
Merged
Conversation
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Update Astro dependencies in docs
[docs] Update Astro dependencies and apply Starlight 0.39 sidebar migration
May 20, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the documentation site (docs/) to newer Astro/Starlight-related dependency versions and applies the Starlight 0.39 sidebar schema migration.
Changes:
- Bump
@astrojs/starlight,astro,@primer/octicons, andstarlight-llms-txtversions indocs/package.json. - Refresh
docs/package-lock.jsonto match the updated dependency graph. - Migrate Starlight sidebar
autogenerateentries to the newitems: [{ autogenerate: ... }]schema indocs/astro.config.mjs.
Show a summary per file
| File | Description |
|---|---|
| docs/package.json | Updates docs site dependency versions. |
| docs/package-lock.json | Lockfile refresh reflecting new Astro/Starlight transitive dependencies (incl. updated engines metadata). |
| docs/astro.config.mjs | Applies Starlight 0.39 sidebar autogenerate schema migration. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Files not reviewed (1)
- docs/package-lock.json: Language not supported
- Files reviewed: 2/3 changed files
- Comments generated: 2
Comment on lines
+23
to
26
| "@astrojs/starlight": "^0.39.2", | ||
| "@primer/octicons": "^19.26.0", | ||
| "astro": "^6.3.5", | ||
| "astro-mermaid": "^2.0.1", |
Comment on lines
+2683
to
+2687
| "prismjs": "^1.30.0" | ||
| }, | ||
| "engines": { | ||
| "node": ">=22.12.0" | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This updates the docs site dependencies in
docs/to the latest requested Astro/Starlight-related versions and applies the Starlight 0.39 sidebar config breaking-change migration.Dependency updates (
docs/package.json, lockfile refresh)@astrojs/starlight:^0.38.4→^0.39.2@primer/octicons:^19.25.0→^19.26.0astro:^6.3.1→^6.3.5starlight-llms-txt:^0.9.0→^0.10.0docs/package-lock.jsonto match.Starlight 0.39 sidebar migration (
docs/astro.config.mjs)IntroductionandTroubleshootingsections to wrapautogenerateinsideitems, per the new schema.{ label: 'Introduction', - autogenerate: { directory: 'introduction' }, + items: [{ autogenerate: { directory: 'introduction' } }], }