Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 17, 2025

Bumps the all group with 5 updates:

Package From To
@astrojs/mdx 4.1.0 4.2.0
@tailwindcss/vite 4.0.12 4.0.14
astro 5.4.2 5.5.2
tailwindcss 4.0.12 4.0.14
@iconify-json/simple-icons 1.2.27 1.2.28

Updates @astrojs/mdx from 4.1.0 to 4.2.0

Release notes

Sourced from @​astrojs/mdx's releases.

@​astrojs/mdx@​4.2.0

Minor Changes

  • #13352 cb886dc Thanks @​delucis! - Adds support for a new experimental.headingIdCompat flag

    By default, Astro removes a trailing - from the end of IDs it generates for headings ending with special characters. This differs from the behavior of common Markdown processors.

    You can now disable this behavior with a new configuration flag:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    export default defineConfig({
    experimental: {
    headingIdCompat: true,
    },
    });

    This can be useful when heading IDs and anchor links need to behave consistently across your site and other platforms such as GitHub and npm.

    If you are using the rehypeHeadingIds plugin directly, you can also pass this new option:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    import { rehypeHeadingIds } from '@astrojs/markdown-remark';
    import { otherPluginThatReliesOnHeadingIDs } from 'some/plugin/source';
    export default defineConfig({
    markdown: {
    rehypePlugins: [
    [rehypeHeadingIds, { experimentalHeadingIdCompat: true }],
    otherPluginThatReliesOnHeadingIDs,
    ],
    },
    });

Patch Changes

@​astrojs/mdx@​4.1.1

Patch Changes

... (truncated)

Changelog

Sourced from @​astrojs/mdx's changelog.

4.2.0

Minor Changes

  • #13352 cb886dc Thanks @​delucis! - Adds support for a new experimental.headingIdCompat flag

    By default, Astro removes a trailing - from the end of IDs it generates for headings ending with special characters. This differs from the behavior of common Markdown processors.

    You can now disable this behavior with a new configuration flag:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    export default defineConfig({
    experimental: {
    headingIdCompat: true,
    },
    });

    This can be useful when heading IDs and anchor links need to behave consistently across your site and other platforms such as GitHub and npm.

    If you are using the rehypeHeadingIds plugin directly, you can also pass this new option:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    import { rehypeHeadingIds } from '@astrojs/markdown-remark';
    import { otherPluginThatReliesOnHeadingIDs } from 'some/plugin/source';
    export default defineConfig({
    markdown: {
    rehypePlugins: [
    [rehypeHeadingIds, { experimentalHeadingIdCompat: true }],
    otherPluginThatReliesOnHeadingIDs,
    ],
    },
    });

Patch Changes

4.1.1

... (truncated)

Commits

Updates @tailwindcss/vite from 4.0.12 to 4.0.14

Release notes

Sourced from @​tailwindcss/vite's releases.

v4.0.14

Fixed

  • Do not extract candidates with JS string interpolation ${ (#17142)
  • Fix extraction of variants containing . character (#17153)
  • Fix extracting candidates in Clojure/ClojureScript (#17087)

v4.0.13

Fixed

  • Fix Haml pre-processing (#17051)
  • Ensure .node and .wasm files are not scanned for utilities (#17123)
  • Improve performance when scanning JSON files (#17125)
  • Fix extracting candidates containing dots in Haml, Pug, and Slim pre processors (#17094, #17085, #17113)
  • Don't create invalid CSS when encountering a link wrapped in square brackets (#17129)
Changelog

Sourced from @​tailwindcss/vite's changelog.

[4.0.14] - 2025-03-13

Fixed

  • Do not extract candidates with JS string interpolation ${ (#17142)
  • Fix extraction of variants containing . character (#17153)
  • Fix extracting candidates in Clojure/ClojureScript (#17087)

[4.0.13] - 2025-03-11

Fixed

  • Fix Haml pre-processing (#17051)
  • Ensure .node and .wasm files are not scanned for utilities (#17123)
  • Improve performance when scanning JSON files (#17125)
  • Fix extracting candidates containing dots in Haml, Pug, and Slim pre processors (#17094, #17085, #17113)
  • Don't create invalid CSS when encountering a link wrapped in square brackets (#17129)
Commits

Updates astro from 5.4.2 to 5.5.2

Release notes

Sourced from astro's releases.

astro@5.5.2

Patch Changes

  • #13415 be866a1 Thanks @​ascorbic! - Reuses experimental session storage object between requests. This prevents memory leaks and improves performance for drivers that open persistent connections to a database.

  • #13420 2f039b9 Thanks @​ematipico! - It fixes an issue that caused some regressions in how styles are bundled.

astro@5.5.1

Patch Changes

astro@5.5.0

Minor Changes

  • #13402 3e7b498 Thanks @​ematipico! - Adds a new experimental flag called experimental.preserveScriptOrder that renders <script> and <style> tags in the same order as they are defined.

    When rendering multiple <style> and <script> tags on the same page, Astro currently reverses their order in your generated HTML output. This can give unexpected results, for example CSS styles being overridden by earlier defined style tags when your site is built.

    With the new preserveScriptOrder flag enabled, Astro will generate the styles in the order they are defined:

    import { defineConfig } from 'astro/config';
    export default defineConfig({
    experimental: {
    preserveScriptOrder: true,
    },
    });

    For example, the following component has two <style> tags, and both define the same style for the body tag:

    <p>I am a component</p>
    <style>
      body {
        background: red;
      }
    </style>
    <style>
      body {
        background: yellow;
      }
    </style>

    Once the project is compiled, Astro will create an inline style where yellow appears first, and then red. Ultimately, the red background is applied:

... (truncated)

Changelog

Sourced from astro's changelog.

5.5.2

Patch Changes

  • #13415 be866a1 Thanks @​ascorbic! - Reuses experimental session storage object between requests. This prevents memory leaks and improves performance for drivers that open persistent connections to a database.

  • #13420 2f039b9 Thanks @​ematipico! - It fixes an issue that caused some regressions in how styles are bundled.

5.5.1

Patch Changes

5.5.0

Minor Changes

  • #13402 3e7b498 Thanks @​ematipico! - Adds a new experimental flag called experimental.preserveScriptOrder that renders <script> and <style> tags in the same order as they are defined.

    When rendering multiple <style> and <script> tags on the same page, Astro currently reverses their order in your generated HTML output. This can give unexpected results, for example CSS styles being overridden by earlier defined style tags when your site is built.

    With the new preserveScriptOrder flag enabled, Astro will generate the styles in the order they are defined:

    import { defineConfig } from 'astro/config';
    export default defineConfig({
    experimental: {
    preserveScriptOrder: true,
    },
    });

    For example, the following component has two <style> tags, and both define the same style for the body tag:

    <p>I am a component</p>
    <style>
      body {
        background: red;
      }
    </style>
    <style>
      body {
        background: yellow;
      }
    </style>

... (truncated)

Commits

Updates tailwindcss from 4.0.12 to 4.0.14

Release notes

Sourced from tailwindcss's releases.

v4.0.14

Fixed

  • Do not extract candidates with JS string interpolation ${ (#17142)
  • Fix extraction of variants containing . character (#17153)
  • Fix extracting candidates in Clojure/ClojureScript (#17087)

v4.0.13

Fixed

  • Fix Haml pre-processing (#17051)
  • Ensure .node and .wasm files are not scanned for utilities (#17123)
  • Improve performance when scanning JSON files (#17125)
  • Fix extracting candidates containing dots in Haml, Pug, and Slim pre processors (#17094, #17085, #17113)
  • Don't create invalid CSS when encountering a link wrapped in square brackets (#17129)
Changelog

Sourced from tailwindcss's changelog.

[4.0.14] - 2025-03-13

Fixed

  • Do not extract candidates with JS string interpolation ${ (#17142)
  • Fix extraction of variants containing . character (#17153)
  • Fix extracting candidates in Clojure/ClojureScript (#17087)

[4.0.13] - 2025-03-11

Fixed

  • Fix Haml pre-processing (#17051)
  • Ensure .node and .wasm files are not scanned for utilities (#17123)
  • Improve performance when scanning JSON files (#17125)
  • Fix extracting candidates containing dots in Haml, Pug, and Slim pre processors (#17094, #17085, #17113)
  • Don't create invalid CSS when encountering a link wrapped in square brackets (#17129)
Commits

Updates @iconify-json/simple-icons from 1.2.27 to 1.2.28

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually 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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the all group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [@astrojs/mdx](https://github.com/withastro/astro/tree/HEAD/packages/integrations/mdx) | `4.1.0` | `4.2.0` |
| [@tailwindcss/vite](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite) | `4.0.12` | `4.0.14` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `5.4.2` | `5.5.2` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.0.12` | `4.0.14` |
| [@iconify-json/simple-icons](https://github.com/iconify/icon-sets) | `1.2.27` | `1.2.28` |


Updates `@astrojs/mdx` from 4.1.0 to 4.2.0
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/mdx/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/mdx@4.2.0/packages/integrations/mdx)

Updates `@tailwindcss/vite` from 4.0.12 to 4.0.14
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.0.14/packages/@tailwindcss-vite)

Updates `astro` from 5.4.2 to 5.5.2
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/astro@5.5.2/packages/astro)

Updates `tailwindcss` from 4.0.12 to 4.0.14
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.0.14/packages/tailwindcss)

Updates `@iconify-json/simple-icons` from 1.2.27 to 1.2.28
- [Commits](https://github.com/iconify/icon-sets/commits)

---
updated-dependencies:
- dependency-name: "@astrojs/mdx"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@tailwindcss/vite"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: astro
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: tailwindcss
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@iconify-json/simple-icons"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 17, 2025
@thilobillerbeck thilobillerbeck merged commit e0cdc80 into main Mar 17, 2025
2 checks passed
@thilobillerbeck thilobillerbeck deleted the dependabot/npm_and_yarn/all-1d67692d2e branch March 17, 2025 23:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant