Update dependency astro-expressive-code to ^0.43.0#76
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
042b591 to
a4a785b
Compare
a4a785b to
5d2eb22
Compare
5d2eb22 to
71f6911
Compare
71f6911 to
d887295
Compare
d887295 to
94d8971
Compare
94d8971 to
d24f932
Compare
d24f932 to
58acd9f
Compare
58acd9f to
944a6ba
Compare
944a6ba to
0702101
Compare
0702101 to
28ee5dc
Compare
28ee5dc to
deca7f3
Compare
deca7f3 to
ced5275
Compare
ced5275 to
db08f73
Compare
db08f73 to
14aeb96
Compare
14aeb96 to
904cf02
Compare
9fb6b56 to
590a618
Compare
590a618 to
4cc7015
Compare
4cc7015 to
9817d8f
Compare
👷 Deploy Preview for jackbailey-portfolio processing.
|
9817d8f to
aa60092
Compare
aa60092 to
8ae7cb7
Compare
8ae7cb7 to
16f1f32
Compare
16f1f32 to
84e557d
Compare
b8274cf to
fe913c2
Compare
d2432a1 to
1e45732
Compare
1e45732 to
7c67898
Compare
5e3d42e to
6c15d9e
Compare
6c15d9e to
6f935ba
Compare
55b3bbd to
5ea23d1
Compare
5ea23d1 to
77f7064
Compare
77f7064 to
26ce985
Compare
26ce985 to
2e09614
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 contains the following updates:
^0.40.0→^0.43.0Release Notes
expressive-code/expressive-code (astro-expressive-code)
v0.43.1Compare Source
Patch Changes
d9a3942: Avoids Astro 6.4 deprecation warnings by registering Expressive Code with the Unified Markdown processor when available.v0.43.0Compare Source
Minor Changes
ce8d751: Adds support for the Sätteri Markdown processor introduced in Astro 6.4.When your Astro config sets
markdown.processortosatteri()(from@astrojs/markdown-satteri), code blocks are now processed by Expressive Code through an equivalent Sätteri HAST plugin instead of the rehype plugin, which Sätteri does not run. The default unified pipeline keeps working exactly as before, and no configuration changes are required to benefit from this.Thank you @Princesseuh!
Patch Changes
v0.42.0Compare Source
Patch Changes
v0.41.7Compare Source
Patch Changes
0599626: Prevents the frames plugin from treating Twoslash// @​filenamedirectives as filename comments. This keeps multi-file Twoslash code blocks intact. Thank you for the report, @Adammatthiesen!0599626]v0.41.6Compare Source
Patch Changes
662aa67: Adds support for Astro v6v0.41.5Compare Source
Patch Changes
03bd507: Addsfishto the terminal languages group. Thank you @kj!24cb221: Fixes partially missing styles in the<Code>component when using theaddStylesplugin API function. When custom styles are added to an individual code block group, they are now correctly output after the group's base styles.24cb221: Fixes missing<Code>component styles when usingemitExternalStylesheet: false. Thank you @delucis!24cb221: Fixes order of base styles and group-level styles, ensuring that base styles are output first to prevent cascading issues.03bd507]24cb221]v0.41.4Compare Source
Patch Changes
1c8807c: Fixes an import in component type definitionsv0.41.3Compare Source
Patch Changes
eb82591: Fixes WCAG 4.1.2 compliance issue by dynamically addingrole="region"to scrollable code blocks. Thank you @ruslanpashkov!eb82591]v0.41.2Compare Source
Patch Changes
013f07a: Fixes an issue where the deprecated, but still availablethemeoption was not being taken into account during SSR bundle trimming.013f07a: Improves the error message when the<Code>component is being used on a page without having the Astro integration enabled in the project.v0.41.1Compare Source
Patch Changes
a53e749: Fixes a regression that caused inline text markers to be rendered with two layered background colors.a53e749]v0.41.0Compare Source
Minor Changes
380bfcc: Adds newcreateInlineSvgUrlexport that creates an inline SVG image data URL from the given contents of an SVG file.You can use it to embed SVG images directly into a plugin's styles or HAST, or pass it to an existing
styleOverridesicon setting.0f33477: Updates Shiki to the latest version (3.2.2).This adds support for the strikethrough ANSI control code, updates language grammars and adds the bundled themes
gruvbox-dark-hard,gruvbox-dark-medium,gruvbox-dark-soft,gruvbox-light-hard,gruvbox-light-medium, andgruvbox-light-soft.6497f09: Adds newpreventUnitlessValuesproperty toPluginStyleSettings. Thank you @RantingHuman!Plugins can set this property to an array of style setting paths to prevent unitless values for specific style settings. If the user passes a unitless value to one of these settings, the engine will automatically add
pxto the value. This is recommended for settings used in CSS calculations which would otherwise break if a unitless value is passed.a826a4a: Adds a newhangingIndentprop to all code blocks. Thank you @Signum!By setting this prop to a positive number of columns (either in the opening code fence, as a prop on the
<Code>component, or in thedefaultPropsconfig option), you can now further refine the indentation of wrapped lines.If the prop
preserveIndentistrue(which is the default), thehangingIndentvalue is added to the indentation of the original line. IfpreserveIndentisfalse, the value is used as the fixed indentation level of all wrapped lines.This option only affects how the code block is displayed and does not change the actual code. When copied to the clipboard, the code will still contain the original unwrapped lines.
0f33477: Extends ANSI formatting support to allow background colors and strikethrough text. Thank you @dhruvkb!380bfcc: Adds the following newstyleOverridessettings:frames.copyIcon: Allows overriding the SVG icon used for the copy button. Thank you @louisescher!frames.terminalIcon: Allows overriding the SVG icon used for the terminal window frame. Defaults to three dots in the top left corner.0f33477: Adds support forbgColorandstrikethroughtoInlineStyleAnnotation. Thank you @dhruvkb!Patch Changes
380bfcc]0f33477]6497f09]a826a4a]0f33477]380bfcc]0f33477]Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.