[ci] release#1079
Merged
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Contributor
Author
size-limit report 📦
|
644d926 to
19b093b
Compare
6d8155c to
6566293
Compare
8f49479 to
999939e
Compare
9f0ee17 to
9f71623
Compare
9840266 to
1d3ba1a
Compare
1d3ba1a to
ef18b3f
Compare
ef18b3f to
5fc3395
Compare
5fc3395 to
2953c6b
Compare
c315c4d to
283ba72
Compare
c8eca16 to
fc7db00
Compare
a1a09c3 to
d3e0e8e
Compare
d3e0e8e to
d07a258
Compare
ea331f6 to
e780828
Compare
e780828 to
57c3d79
Compare
57c3d79 to
76f7341
Compare
76f7341 to
05ffb3f
Compare
05ffb3f to
95f8905
Compare
95f8905 to
098dd10
Compare
098dd10 to
0644d84
Compare
f10909f to
4243b57
Compare
573c3c2 to
8f01e7b
Compare
8f01e7b to
b74029e
Compare
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 PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@astrojs/starlight@0.13.0
Minor Changes
#1023
a3b80f7Thanks @kevinzunigacuellar! - Respect thetrailingSlashandbuild.formatAstro options when creating Starlight navigation links.This change will cause small changes in link formatting for most sites.
These are unlikely to break anything, but if you care about link formatting, you may want to change some Astro settings.
If you want to preserve Starlight’s previous behavior, set
trailingSlash: 'always'in yourastro.config.mjs:#742
c6a4bcbThanks @hippotastic! - Adds Expressive Code as Starlight’s default code block rendererThis addition changes how Markdown code blocks are rendered. By default, Starlight will now use Expressive Code.
If you were already customizing how code blocks are rendered and don't want to use the features provided by Expressive Code, you can preserve the previous behavior by setting the new config option
expressiveCodetofalse.If you had previously added Expressive Code manually to your Starlight project, you can now remove the manual set-up in
astro.config.mjs:expressiveCodeoption.astro-expressive-codeintegration.For example:
import starlight from '@astrojs/starlight'; import { defineConfig } from 'astro/config'; - import expressiveCode from 'astro-expressive-code'; export default defineConfig({ integrations: [ - expressiveCode({ - themes: ['rose-pine'], - }), starlight({ title: 'My docs', + expressiveCode: { + themes: ['rose-pine'], + }, }), ], });Note that the built-in Starlight version of Expressive Code sets some opinionated defaults that are different from the
astro-expressive-codedefaults. You may need to set somestyleOverridesif you wish to keep styles exactly the same.#517
5b549cbThanks @liruifengv! - Add i18n support for default aside labelsPatch Changes
#1088
4fe5537Thanks @Lootjs! - i18n(ru): added Russian aside labels translation#1083
e03a653Thanks @at-the-vr! - i18n(hi): Add Hindi language support#1075
2f2adf2Thanks @russbiggs! - Add Slack social link icon#1065
2d72ed6Thanks @HiDeoo! - Ignore search keyboard shortcuts for elements with contents that are editable#1081
f27f781Thanks @farisphp! - i18n(id): Add Indonesian aside labels translation#1082
ce27486Thanks @bogdaaamn! - i18n(ro): Add Romanian UI translations