build(deps): bump astro-expressive-code from 0.37.0 to 0.38.3 #45

Merged
dependabot[bot] merged 1 commit from dependabot/npm_and_yarn/astro-expressive-code-0.38.3 into main 2025-06-18 21:51:38 +02:00
dependabot[bot] commented 2024-12-01 21:04:03 +01:00 (Migrated from github.com)

Bumps astro-expressive-code from 0.37.0 to 0.38.3.

Release notes

Sourced from astro-expressive-code's releases.

astro-expressive-code@0.38.3

Patch Changes

  • 90b614e: Makes the types used by the shiki.langs config option less strict to align them better with actual grammars found in the wild. This attempts to reduce the amount of type errors that occurred before when using external grammars, while still being supported by the language processing code.
  • Updated dependencies [90b614e]
    • rehype-expressive-code@0.38.3

astro-expressive-code@0.38.2

Patch Changes

  • 480361a: Fixes an issue where the optional getBlockLocale callback function was not called when using the <Code> component. Thank you @​HiDeoo!

    As the parent document's source file path is not available from an Astro component, the file property passed to the getBlockLocale callback function now contains an additional url property that will be set to the value of Astro.url in this case.

    When determining the locale of a code block, it is recommended to use this new property first, and only fall back to the existing path and cwd properties if url is undefined.

  • 480361a: Fixes an issue where the tabWidth setting was not applied when using the <Code> component. Thank you @​mrchantey!

  • Updated dependencies [480361a]

    • rehype-expressive-code@0.38.2

astro-expressive-code@0.38.1

Patch Changes

  • rehype-expressive-code@0.38.1

astro-expressive-code@0.38.0

Minor Changes

  • 944dda0: Updates Shiki to the latest version (1.22.2).

  • b6638f9: Adds config merging functionality to astro-expressive-code, which allows using ec.config.mjs together with other configuration sources like the Astro / Starlight config or Starlight themes.

    Options defined in ec.config.mjs have the highest priority and will override any corresponding values coming from other configuration sources.

    For the following object options, a deep merge is performed instead of a simple override:

    • defaultProps
    • frames
    • shiki
    • styleOverrides

    The following array options are concatenated instead of being replaced:

    • shiki.langs

Patch Changes

  • Updated dependencies [944dda0]
    • rehype-expressive-code@0.38.0

... (truncated)

Changelog

Sourced from astro-expressive-code's changelog.

0.38.3

Patch Changes

  • 90b614e: Makes the types used by the shiki.langs config option less strict to align them better with actual grammars found in the wild. This attempts to reduce the amount of type errors that occurred before when using external grammars, while still being supported by the language processing code.
  • Updated dependencies [90b614e]
    • rehype-expressive-code@0.38.3

0.38.2

Patch Changes

  • 480361a: Fixes an issue where the optional getBlockLocale callback function was not called when using the <Code> component. Thank you @​HiDeoo!

    As the parent document's source file path is not available from an Astro component, the file property passed to the getBlockLocale callback function now contains an additional url property that will be set to the value of Astro.url in this case.

    When determining the locale of a code block, it is recommended to use this new property first, and only fall back to the existing path and cwd properties if url is undefined.

  • 480361a: Fixes an issue where the tabWidth setting was not applied when using the <Code> component. Thank you @​mrchantey!

  • Updated dependencies [480361a]

    • rehype-expressive-code@0.38.2

0.38.1

Patch Changes

  • rehype-expressive-code@0.38.1

0.38.0

Minor Changes

  • 944dda0: Updates Shiki to the latest version (1.22.2).

  • b6638f9: Adds config merging functionality to astro-expressive-code, which allows using ec.config.mjs together with other configuration sources like the Astro / Starlight config or Starlight themes.

    Options defined in ec.config.mjs have the highest priority and will override any corresponding values coming from other configuration sources.

    For the following object options, a deep merge is performed instead of a simple override:

    • defaultProps
    • frames
    • shiki
    • styleOverrides

    The following array options are concatenated instead of being replaced:

    • shiki.langs

Patch Changes

... (truncated)

Commits

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note

Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps [astro-expressive-code](https://github.com/expressive-code/expressive-code/tree/HEAD/packages/astro-expressive-code) from 0.37.0 to 0.38.3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/expressive-code/expressive-code/releases">astro-expressive-code's releases</a>.</em></p> <blockquote> <h2>astro-expressive-code@0.38.3</h2> <h3>Patch Changes</h3> <ul> <li>90b614e: Makes the types used by the <code>shiki.langs</code> config option less strict to align them better with actual grammars found in the wild. This attempts to reduce the amount of type errors that occurred before when using external grammars, while still being supported by the language processing code.</li> <li>Updated dependencies [90b614e] <ul> <li>rehype-expressive-code@0.38.3</li> </ul> </li> </ul> <h2>astro-expressive-code@0.38.2</h2> <h3>Patch Changes</h3> <ul> <li> <p>480361a: Fixes an issue where the optional <code>getBlockLocale</code> callback function was not called when using the <code>&lt;Code&gt;</code> component. Thank you <a href="https://github.com/HiDeoo"><code>@​HiDeoo</code></a>!</p> <p>As the parent document's source file path is not available from an Astro component, the <code>file</code> property passed to the <code>getBlockLocale</code> callback function now contains an additional <code>url</code> property that will be set to the value of <code>Astro.url</code> in this case.</p> <p>When determining the locale of a code block, it is recommended to use this new property first, and only fall back to the existing <code>path</code> and <code>cwd</code> properties if <code>url</code> is undefined.</p> </li> <li> <p>480361a: Fixes an issue where the <code>tabWidth</code> setting was not applied when using the <code>&lt;Code&gt;</code> component. Thank you <a href="https://github.com/mrchantey"><code>@​mrchantey</code></a>!</p> </li> <li> <p>Updated dependencies [480361a]</p> <ul> <li>rehype-expressive-code@0.38.2</li> </ul> </li> </ul> <h2>astro-expressive-code@0.38.1</h2> <h3>Patch Changes</h3> <ul> <li>rehype-expressive-code@0.38.1</li> </ul> <h2>astro-expressive-code@0.38.0</h2> <h3>Minor Changes</h3> <ul> <li> <p>944dda0: Updates Shiki to the latest version (1.22.2).</p> </li> <li> <p>b6638f9: Adds config merging functionality to <code>astro-expressive-code</code>, which allows using <code>ec.config.mjs</code> together with other configuration sources like the Astro / Starlight config or Starlight themes.</p> <p>Options defined in <code>ec.config.mjs</code> have the highest priority and will override any corresponding values coming from other configuration sources.</p> <p>For the following object options, a deep merge is performed instead of a simple override:</p> <ul> <li><code>defaultProps</code></li> <li><code>frames</code></li> <li><code>shiki</code></li> <li><code>styleOverrides</code></li> </ul> <p>The following array options are concatenated instead of being replaced:</p> <ul> <li><code>shiki.langs</code></li> </ul> </li> </ul> <h3>Patch Changes</h3> <ul> <li>Updated dependencies [944dda0] <ul> <li>rehype-expressive-code@0.38.0</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/expressive-code/expressive-code/blob/main/packages/astro-expressive-code/CHANGELOG.md">astro-expressive-code's changelog</a>.</em></p> <blockquote> <h2>0.38.3</h2> <h3>Patch Changes</h3> <ul> <li>90b614e: Makes the types used by the <code>shiki.langs</code> config option less strict to align them better with actual grammars found in the wild. This attempts to reduce the amount of type errors that occurred before when using external grammars, while still being supported by the language processing code.</li> <li>Updated dependencies [90b614e] <ul> <li>rehype-expressive-code@0.38.3</li> </ul> </li> </ul> <h2>0.38.2</h2> <h3>Patch Changes</h3> <ul> <li> <p>480361a: Fixes an issue where the optional <code>getBlockLocale</code> callback function was not called when using the <code>&lt;Code&gt;</code> component. Thank you <a href="https://github.com/HiDeoo"><code>@​HiDeoo</code></a>!</p> <p>As the parent document's source file path is not available from an Astro component, the <code>file</code> property passed to the <code>getBlockLocale</code> callback function now contains an additional <code>url</code> property that will be set to the value of <code>Astro.url</code> in this case.</p> <p>When determining the locale of a code block, it is recommended to use this new property first, and only fall back to the existing <code>path</code> and <code>cwd</code> properties if <code>url</code> is undefined.</p> </li> <li> <p>480361a: Fixes an issue where the <code>tabWidth</code> setting was not applied when using the <code>&lt;Code&gt;</code> component. Thank you <a href="https://github.com/mrchantey"><code>@​mrchantey</code></a>!</p> </li> <li> <p>Updated dependencies [480361a]</p> <ul> <li>rehype-expressive-code@0.38.2</li> </ul> </li> </ul> <h2>0.38.1</h2> <h3>Patch Changes</h3> <ul> <li>rehype-expressive-code@0.38.1</li> </ul> <h2>0.38.0</h2> <h3>Minor Changes</h3> <ul> <li> <p>944dda0: Updates Shiki to the latest version (1.22.2).</p> </li> <li> <p>b6638f9: Adds config merging functionality to <code>astro-expressive-code</code>, which allows using <code>ec.config.mjs</code> together with other configuration sources like the Astro / Starlight config or Starlight themes.</p> <p>Options defined in <code>ec.config.mjs</code> have the highest priority and will override any corresponding values coming from other configuration sources.</p> <p>For the following object options, a deep merge is performed instead of a simple override:</p> <ul> <li><code>defaultProps</code></li> <li><code>frames</code></li> <li><code>shiki</code></li> <li><code>styleOverrides</code></li> </ul> <p>The following array options are concatenated instead of being replaced:</p> <ul> <li><code>shiki.langs</code></li> </ul> </li> </ul> <h3>Patch Changes</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/expressive-code/expressive-code/commit/e67611c293e1af6a666baa343c1ef1fbc7d9fee2"><code>e67611c</code></a> [CI] Release (<a href="https://github.com/expressive-code/expressive-code/tree/HEAD/packages/astro-expressive-code/issues/271">#271</a>)</li> <li><a href="https://github.com/expressive-code/expressive-code/commit/90b614e1b3da88a131565067fc865d2ae926c7ed"><code>90b614e</code></a> Make types of <code>shiki.langs</code> option less strict (<a href="https://github.com/expressive-code/expressive-code/tree/HEAD/packages/astro-expressive-code/issues/270">#270</a>)</li> <li><a href="https://github.com/expressive-code/expressive-code/commit/910c923ad3f04969376f755c2c9a96dc3fac478b"><code>910c923</code></a> [CI] Release (<a href="https://github.com/expressive-code/expressive-code/tree/HEAD/packages/astro-expressive-code/issues/268">#268</a>)</li> <li><a href="https://github.com/expressive-code/expressive-code/commit/480361a5e137908749dbab2e69e933686bf5968f"><code>480361a</code></a> Fix <code>getBlockLocale</code> and <code>tabWidth</code> differences between <code>\&lt;Code&gt;</code> and rehype (...</li> <li><a href="https://github.com/expressive-code/expressive-code/commit/a7bdaaeb548b10cb1ae29f356fd285d03588b51e"><code>a7bdaae</code></a> [CI] Release (<a href="https://github.com/expressive-code/expressive-code/tree/HEAD/packages/astro-expressive-code/issues/266">#266</a>)</li> <li><a href="https://github.com/expressive-code/expressive-code/commit/393bee66310019d8f6d27eb35133f95ce3ed3bf3"><code>393bee6</code></a> Improve main package descriptions &amp; keywords</li> <li><a href="https://github.com/expressive-code/expressive-code/commit/e16df97ec0fda0bd9c001425150320803806e03d"><code>e16df97</code></a> [CI] Release (<a href="https://github.com/expressive-code/expressive-code/tree/HEAD/packages/astro-expressive-code/issues/261">#261</a>)</li> <li><a href="https://github.com/expressive-code/expressive-code/commit/944dda0aa756ee514ed9c63c0781393ba319c368"><code>944dda0</code></a> Upgrade Shiki and language loading (<a href="https://github.com/expressive-code/expressive-code/tree/HEAD/packages/astro-expressive-code/issues/263">#263</a>)</li> <li><a href="https://github.com/expressive-code/expressive-code/commit/b6638f958fafc83037b15757cfe714d793a119a3"><code>b6638f9</code></a> Add config merging functionality to <code>astro-expressive-code</code> (<a href="https://github.com/expressive-code/expressive-code/tree/HEAD/packages/astro-expressive-code/issues/260">#260</a>)</li> <li><a href="https://github.com/expressive-code/expressive-code/commit/1a5ba5e3d686e46ba15051f90b23676d61fe464e"><code>1a5ba5e</code></a> [CI] Release (<a href="https://github.com/expressive-code/expressive-code/tree/HEAD/packages/astro-expressive-code/issues/255">#255</a>)</li> <li>See full diff in <a href="https://github.com/expressive-code/expressive-code/commits/astro-expressive-code@0.38.3/packages/astro-expressive-code">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=astro-expressive-code&package-manager=npm_and_yarn&previous-version=0.37.0&new-version=0.38.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> > **Note** > Automatic rebases have been disabled on this pull request as it has been open for over 30 days.
github-actions[bot] commented 2025-01-01 00:39:54 +01:00 (Migrated from github.com)

This PR has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

This PR has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
florianbeisel commented 2025-06-18 21:49:18 +02:00 (Migrated from github.com)

@dependabot rebase

@dependabot rebase
florianbeisel commented 2025-06-18 21:51:34 +02:00 (Migrated from github.com)

@dependabot merge

@dependabot merge
Sign in to join this conversation.
No description provided.