Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 15, 2025

Bumps the development-dependencies group with 13 updates in the / directory:

Package From To
@astrojs/mdx 4.2.3 4.2.4
@types/google.analytics 0.0.42 0.0.46
astro 5.6.1 5.7.0
bundlewatch 0.4.0 0.4.1
htmlparser2 8.0.2 10.0.0
image-size 1.2.0 2.0.2
mime 3.0.0 4.0.7
prettier 2.8.8 3.5.3
prettier-plugin-astro 0.8.1 0.14.1
rehype-autolink-headings 6.1.1 7.1.0
rollup 4.38.0 4.40.0
stylelint 16.17.0 16.18.0
unist-util-visit 4.1.2 5.0.0

Updates @astrojs/mdx from 4.2.3 to 4.2.4

Release notes

Sourced from @​astrojs/mdx's releases.

@​astrojs/mdx@​4.2.4

Patch Changes

Changelog

Sourced from @​astrojs/mdx's changelog.

4.2.4

Patch Changes

Commits

Updates @types/google.analytics from 0.0.42 to 0.0.46

Commits

Updates astro from 5.6.1 to 5.7.0

Release notes

Sourced from astro's releases.

[email protected]

Minor Changes

  • #13527 2fd6a6b Thanks @​ascorbic! - The experimental session API introduced in Astro 5.1 is now stable and ready for production use.

    Sessions are used to store user state between requests for on-demand rendered pages. You can use them to store user data, such as authentication tokens, shopping cart contents, or any other data that needs to persist across requests:

    ---
    export const prerender = false; // Not needed with 'server' output
    const cart = await Astro.session.get('cart');
    ---
    <a href="/checkout">🛒 {cart?.length ?? 0} items</a>

    Configuring session storage

    Sessions require a storage driver to store the data. The Node, Cloudflare and Netlify adapters automatically configure a default driver for you, but other adapters currently require you to specify a custom storage driver in your configuration.

    If you are using an adapter that doesn't have a default driver, or if you want to choose a different driver, you can configure it using the session configuration option:

    import { defineConfig } from 'astro/config';
    import vercel from '@astrojs/vercel';
    export default defineConfig({
    adapter: vercel(),
    session: {
    driver: 'upstash',
    },
    });

    Using sessions

    Sessions are available in on-demand rendered pages, API endpoints, actions and middleware.

    In pages and components, you can access the session using Astro.session:

    ---
    const cart = await Astro.session.get('cart');
    ---
    <a href="/checkout">🛒 {cart?.length ?? 0} items</a>

    In endpoints, actions, and middleware, you can access the session using context.session:

... (truncated)

Changelog

Sourced from astro's changelog.

5.7.0

Minor Changes

  • #13527 2fd6a6b Thanks @​ascorbic! - The experimental session API introduced in Astro 5.1 is now stable and ready for production use.

    Sessions are used to store user state between requests for on-demand rendered pages. You can use them to store user data, such as authentication tokens, shopping cart contents, or any other data that needs to persist across requests:

    ---
    export const prerender = false; // Not needed with 'server' output
    const cart = await Astro.session.get('cart');
    ---
    <a href="/checkout">🛒 {cart?.length ?? 0} items</a>

    Configuring session storage

    Sessions require a storage driver to store the data. The Node, Cloudflare and Netlify adapters automatically configure a default driver for you, but other adapters currently require you to specify a custom storage driver in your configuration.

    If you are using an adapter that doesn't have a default driver, or if you want to choose a different driver, you can configure it using the session configuration option:

    import { defineConfig } from 'astro/config';
    import vercel from '@astrojs/vercel';
    export default defineConfig({
    adapter: vercel(),
    session: {
    driver: 'upstash',
    },
    });

    Using sessions

    Sessions are available in on-demand rendered pages, API endpoints, actions and middleware.

    In pages and components, you can access the session using Astro.session:

    ---
    const cart = await Astro.session.get('cart');
    ---
    <a href="/checkout">🛒 {cart?.length ?? 0} items</a>

    In endpoints, actions, and middleware, you can access the session using context.session:

... (truncated)

Commits

Updates bundlewatch from 0.4.0 to 0.4.1

Release notes

Sourced from bundlewatch's releases.

v0.4.1

What's Changed

Full Changelog: bundlewatch/bundlewatch@v0.4.0...v0.4.1

Commits
  • 939f596 build(deps): bump axios in the npm_and_yarn group across 1 directory (#487)
  • 43c48bb build(deps): bump micromatch in the npm_and_yarn group (#482)
  • See full diff in compare view

Updates htmlparser2 from 8.0.2 to 10.0.0

Release notes

Sourced from htmlparser2's releases.

v10.0.0

  • Breaking: Simplify writable stream import path d5882db
  • feat: Support xmp tag parsing (#1790 by @​nati-elmaliach) ecdb071
  • Run tests with vitest (#1845) aa0c781
  • Dependency upgrades

v9.1.0

Fixes

Features

v9.0.0

Breaking Changes

  • The tokenizer now uses the EntityDecoder from the entities module fb55/htmlparser2#1480
    • Parsing of entities in attributes is now aligned with the HTML spec, and some inputs will produce different results. Eg. in <a href='&amp=boo'> the attribute value won't be modified any more.
    • The ontextentity tokenizer callback now has an endIndex argument; if you use the tokenizer directly, make sure indices are still the same.
  • Stacks inside the parser have been reversed. fb55/htmlparser2#1511

Features

  • Added a createDocumentStream function, analogous to createDomStream (which is now deprecated) fb55/htmlparser2#1510

Full Changelog: fb55/htmlparser2@v8.0.2...v9.0.0

Commits
  • 1e81e72 10.0.0
  • 41e87ba chore(pkg): Update files
  • 0a01889 chore(deps): Bump domutils
  • 05291ee build(deps): Bump entities from 5.0.0 to 6.0.0 (#1983)
  • ecdb071 feat: Support xmp tag parsing (#1790)
  • 278e39b build(deps-dev): Bump @​typescript-eslint/eslint-plugin from 7.18.0 to 8.18.1 ...
  • c80fab6 build(deps-dev): Bump eslint-plugin-unicorn from 54.0.0 to 56.0.1 (#1960)
  • 6df0b04 build(deps-dev): Bump eslint-plugin-n from 17.15.0 to 17.15.1 (#1982)
  • bc4abe4 build(deps-dev): Bump @​types/node from 22.10.1 to 22.10.2 (#1978)
  • a84c957 build(deps-dev): Bump eslint-plugin-n from 17.14.0 to 17.15.0 (#1976)
  • Additional commits viewable in compare view

Updates image-size from 1.2.0 to 2.0.2

Release notes

Sourced from image-size's releases.

v2.0.2

Fixes

Full Changelog: image-size/image-size@v2.0.1...v2.0.2

v2.0.1

Full Changelog: image-size/image-size@v2.0.0...v2.0.1

v2.0.0

The release

  • Adds dual support for CJS and ESM, switches from Buffer to UInt8Array, uses DataView for reads, and can therefore now also be used in browsers
  • Removes all dependencies
  • Introduces some performance improvements
  • Drops synchronous API.

Please see the Readme for the usage examples.

Full Changelog: image-size/image-size@v1.2.0...v2.0.0

v1.2.1

Fixes

Full Changelog: image-size/image-size@v1.2.0...v1.2.1

Commits

Updates mime from 3.0.0 to 4.0.7

Release notes

Sourced from mime's releases.

v4.0.7

4.0.7 (2025-04-03)

Bug Fixes

v4.0.6

4.0.6 (2024-12-17)

Bug Fixes

v4.0.5

4.0.5 (2024-12-17)

Bug Fixes

Changelog

Sourced from mime's changelog.

4.0.7 (2025-04-03)

Bug Fixes

4.0.6 (2024-12-17)

Bug Fixes

4.0.5 (2024-12-17)

Bug Fixes

4.0.4 (2024-07-06)

4.0.3 (2024-04-25)

Bug Fixes

  • add types dir to package.json#files, fixes #310 (a547ca7)

4.0.2 (2024-04-24)

Bug Fixes

4.0.1 (2023-12-17)

Bug Fixes

4.0.0 (2023-11-29)

4.0.0-beta.1 (2023-09-14)

4.0.0-beta.0 (2023-09-13)

... (truncated)

Commits
  • 295382f chore(main): release 4.0.7 (#333)
  • e84ee2e chore(deps-dev): bump jsonpath-plus from 10.2.0 to 10.3.0 (#331)
  • d7871f3 fix: use dotall modifier for getType() regexes (#334)
  • 953ae3e fix: update mime types (#332)
  • cafe1ea chore: update MDN types used in test
  • f5edc31 Revert "chore: update MDN types used in test"
  • 0cf1e55 chore: update MDN types used in test
  • b28131a chore: update dependencies
  • 84838eb chore: add vscode recommended extensions
  • a9263fe chore(main): release 4.0.6 (#326)
  • Additional commits viewable in compare view

Updates prettier from 2.8.8 to 3.5.3

Release notes

Sourced from prettier's releases.

3.5.3

🔗 Changelog

3.5.2

🔗 Changelog

3.5.1

🔗 Changelog

3.5.0

diff

🔗 Release note

3.4.2

🔗 Changelog

3.4.1

🔗 Changelog

3.4.0

diff

🔗 Release note

3.3.3

🔗 Changelog

3.3.2

🔗 Changelog

3.3.1

🔗 Changelog

3.3.0

diff

🔗 Release note

3.2.5

🔗 Changelog

3.2.4

  • Fix .eslintrc.json format #15947

🔗 Changelog

3.2.3

  • Format tsconfig.json file with jsonc parser #15927

... (truncated)

Changelog

Sourced from prettier's changelog.

3.5.3

diff

Flow: Fix missing parentheses in ConditionalTypeAnnotation (#17196 by @​fisker)

// Input
type T<U> = 'a' | ('b' extends U ? 'c' : empty);
type T<U> = 'a' & ('b' extends U ? 'c' : empty);
// Prettier 3.5.2
type T<U> = "a" | "b" extends U ? "c" : empty;
type T<U> = "a" & "b" extends U ? "c" : empty;
// Prettier 3.5.3
type T<U> = "a" | ("b" extends U ? "c" : empty);
type T<U> = "a" & ("b" extends U ? "c" : empty);

3.5.2

diff

Remove module-sync condition (#17156 by @​fisker)

In Prettier 3.5.0, we added module-sync condition to package.json, so that require("prettier") can use ESM version, but turns out it doesn't work if CommonJS and ESM plugins both imports builtin plugins. To solve this problem, we decide simply remove the module-sync condition, so require("prettier") will still use the CommonJS version, we'll revisit until require(ESM) feature is more stable.

3.5.1

diff

Fix CLI crash when cache for old version exists (#17100 by @​sosukesuzuki)

Prettier 3.5 uses a different cache format than previous versions, Prettier 3.5.0 crashes when reading existing cache file, Prettier 3.5.1 fixed the problem.

Support dockercompose and github-actions-workflow in VSCode (#17101 by @​remcohaszing)

Prettier now supports the dockercompose and github-actions-workflow languages in Visual Studio Code.

3.5.0

diff

🔗 Release Notes

3.4.2

diff

... (truncated)

Commits

Updates prettier-plugin-astro from 0.8.1 to 0.14.1

Release notes

Sourced from prettier-plugin-astro's releases.

v0.14.1

Patch Changes

  • 7282bcb: Fixes an issue where style and script tags would sometimes get moved to other tags

v0.14.0

Minor Changes

  • bb756df: Adds a new option called astroSkipFrontmatter to disable formatting the frontmatter. This can be useful when using other tools to format the frontmatter, such as Biome or dprint.

v0.13.0

Minor Changes

  • e97406a: Fix plugin sometimes including significant whitespace inside components, fragments and custom elements

v0.12.3

Patch Changes

  • e75f9c7: Fix <br /> tags sometimes causing additional spaces to appear
  • b4b0918: Fix not being able to format expressions with more than 2 roots

v0.12.2

Patch Changes

  • 11b0dc7: Fix attributes using optional chaining not formatting correctly

v0.12.1

Patch Changes

  • 0188f04: Fix attributes with multiple invalid JSX characters in their key inside expressions causing the plugin to throw an error

v0.12.0

Minor Changes

  • fa1a6e3: Do not delete line breaks and indentation of lines in class attribute

Patch Changes

  • b806845: Format doctype as lowercase to match Prettier 3.0

v0.11.1

Patch Changes

  • 62fe714: removes pnpm from engines

v0.11.0

Minor Changes

  • 94ed904: Migrated the plugin to Prettier 3's new APIs. It's unfortunately not possible for a plugin to support both version 2 and 3 of Prettier. As such, from this version on, only Prettier 3 is supported.

... (truncated)

Changelog

Sourced from prettier-plugin-astro's changelog.

0.14.1

Patch Changes

  • 7282bcb: Fixes an issue where style and script tags would sometimes get moved to other tags

0.14.0

Minor Changes

  • bb756df: Adds a new option called astroSkipFrontmatter to disable formatting the frontmatter. This can be useful when using other tools to format the frontmatter, such as Biome or dprint.

0.13.0

Minor Changes

  • e97406a: Fix plugin sometimes including significant whitespace inside components, fragments and custom elements

0.12.3

Patch Changes

  • e75f9c7: Fix <br /> tags sometimes causing additional spaces to appear
  • b4b0918: Fix not being able to format expressions with more than 2 roots

0.12.2

Patch Changes

  • 11b0dc7: Fix attributes using optional chaining not formatting correctly

0.12.1

Patch Changes

  • 0188f04: Fix attributes with multiple invalid JSX characters in their key inside expressions causing the plugin to throw an error

0.12.0

Minor Changes

  • fa1a6e3: Do not delete line breaks and indentation of lines in class attribute

Patch Changes

  • b806845: Format doctype as lowercase to match Prettier 3.0

0.11.1

Patch Changes

... (truncated)

Commits

Updates rehype-autolink-headings from 6.1.1 to 7.1.0

Release notes

Sourced from rehype-autolink-headings's releases.

7.1.0

Add

  • 01133a3 Add support for headingProperties
  • 31159c0 Add support for content w/ wrap

Full Changelog: rehypejs/rehype-autolink-headings@7.0.0...7.1.0

7.0.0

Change

  • 394560f Update @types/hast, unified, utilities, etc migrate: update too
  • 6bebeab Change to require Node.js 16 migrate: update too
  • f20421f Change to use exports migrate: don’t use private APIs
  • 98849a7 Remove undocumented ancient behaviour spelling migrate: use international english: behavior

Add

  • 92f0258 Add support for passing a function as properties

Misc

Full Changelog: rehypejs/rehype-autolink-headings@6.1.1...7.0.0

Commits

Updates rollup from 4.38.0 to 4.40.0

Release notes

Sourced from rollup's releases.

v4.40.0

4.40.0

2025-04-12

Features

  • Only show eval warnings on first render and only when the call is not tree-shaken (#5892)
  • Tree-shake non-included dynamic import members when the handler just maps to one named export (#5898)

Bug Fixes

  • Consider dynamic imports nested within top-level-awaited dynamic import expressions to be awaited as well (#5900)
  • Fix namespace rendering when tree-shaking is disabled (#5908)
  • When using multiple transform hook filters, all of them need to be satisfied together (#5909)

Pull Requests

v4.39.0

4.39.0

2025-04-02

Features

  • Do not create separate facade chunks if a chunk would contain several entry modules that allow export extension if there are no export name conflicts (#5891)

Bug Fixes

  • Mark the id property as optional in the filter for the resolveId hook (#5896)

Pull Requests

Changelog

Sourced from rollup's changelog.

4.40.0

2025-04-12

Features

  • Only show eval warnings on first render and only when the call is not tree-shaken (#5892)
  • Tree-shake non-included dynamic import members when the handler just maps to one named export (#5898)

Bug Fixes

  • Consider dynamic imports nested within top-level-awaited dynamic import expressions to be awaited as well (#5900)
  • Fix namespace rendering when tree-shaking is disabled (#5908)
  • When using multiple transform hook filters, all of them need to be satisfied together (#5909)

Pull Requests

4.39.0

2025-04-02

Features

  • Do not create separate facade chunks if a chunk would contain several entry modules that allow export extension if there are no export name conflicts (#5891)

Bug Fixes

  • Mark the id property as optional in the filter for the resolveId hook (#5896)

Pull Requests

Commits
  • 1f2d579 4.40.0
  • cf0512f Fix release script
  • 4ded099 feat: treeshake dynamic import chained member expression (#5898)
  • 8bb7b6f chore(deps): lock file maintenance minor/patch updates (#5917)
  • 19fb519 consider the dynamic import within a TLA call expression as a TLA import (#5900)
  • aba2ea9 Fix treeshake: false breaking destructured namespace imports (#5908)
  • 02a060d Correct the behavior when multiple transform filter options are specified (#5...
  • 051a502 chore(deps): update dependency @​types/picomatch to v4 (#5915)
  • 7d7ae3f fix(deps): update rust crate swc_compiler_base to v17 (#5916)
  • 86e1ccd chore(deps): update dependency vite to v6.2.6 [security] (#5918)
  • Additional commits viewable in compare view

Updates stylelint from 16.17.0 to 16.18.0

Release notes

Sourced from stylelint's releases.

16.18.0

It adds 2 new rules and fixes 2 bugs. We've turned on these rules, and the syntax-string-no-invalid and layer-name-pattern ones from recent releases, in our standard config.

Changelog

Sourced from stylelint's changelog.

16.18.0 - 2025-04-06

It adds 2 new rules and fixes 2 bugs. We've turned on these rules, and the syntax-string-no-invalid and layer-name-pattern ones from recent releases, in our standard config.

Commits
  • 1cc5e8b 16.18.0
  • b243ad5 Prepare 16.18.0 (#8504)
  • 97a06e5 Refactor to prevent unexpected mutation of shared objects (#8515)
  • f60c050 Document css-wide keywords and languageOptions in writing rules (#8513)
  • 11413a2 Document new config rules (#8506)
  • e1f8a6e Fix container-name-pattern mutation of shared reference set (#8514)
  • e1d158d Add container-name-pattern (#8498)
  • 5069cf0 Bump jest-preset-stylelint from 7.2.0 to 7.3.0 in the jest group (#8510)
  • 2acaba4 Bump rollup from 4.38.0 to 4.39.0 (#8511)
  • 94af3f6 Bump eslint-confi...

    Description has been truncated

…ectory with 13 updates

Bumps the development-dependencies group with 13 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@astrojs/mdx](https://github.com/withastro/astro/tree/HEAD/packages/integrations/mdx) | `4.2.3` | `4.2.4` |
| [@types/google.analytics](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/google.analytics) | `0.0.42` | `0.0.46` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `5.6.1` | `5.7.0` |
| [bundlewatch](https://github.com/bundlewatch/bundlewatch) | `0.4.0` | `0.4.1` |
| [htmlparser2](https://github.com/fb55/htmlparser2) | `8.0.2` | `10.0.0` |
| [image-size](https://github.com/image-size/image-size) | `1.2.0` | `2.0.2` |
| [mime](https://github.com/broofa/mime) | `3.0.0` | `4.0.7` |
| [prettier](https://github.com/prettier/prettier) | `2.8.8` | `3.5.3` |
| [prettier-plugin-astro](https://github.com/withastro/prettier-plugin-astro) | `0.8.1` | `0.14.1` |
| [rehype-autolink-headings](https://github.com/rehypejs/rehype-autolink-headings) | `6.1.1` | `7.1.0` |
| [rollup](https://github.com/rollup/rollup) | `4.38.0` | `4.40.0` |
| [stylelint](https://github.com/stylelint/stylelint) | `16.17.0` | `16.18.0` |
| [unist-util-visit](https://github.com/syntax-tree/unist-util-visit) | `4.1.2` | `5.0.0` |



Updates `@astrojs/mdx` from 4.2.3 to 4.2.4
- [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/[email protected]/packages/integrations/mdx)

Updates `@types/google.analytics` from 0.0.42 to 0.0.46
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/google.analytics)

Updates `astro` from 5.6.1 to 5.7.0
- [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/[email protected]/packages/astro)

Updates `bundlewatch` from 0.4.0 to 0.4.1
- [Release notes](https://github.com/bundlewatch/bundlewatch/releases)
- [Commits](bundlewatch/bundlewatch@v0.4.0...v0.4.1)

Updates `htmlparser2` from 8.0.2 to 10.0.0
- [Release notes](https://github.com/fb55/htmlparser2/releases)
- [Commits](fb55/htmlparser2@v8.0.2...v10.0.0)

Updates `image-size` from 1.2.0 to 2.0.2
- [Release notes](https://github.com/image-size/image-size/releases)
- [Commits](image-size/image-size@v1.2.0...v2.0.2)

Updates `mime` from 3.0.0 to 4.0.7
- [Release notes](https://github.com/broofa/mime/releases)
- [Changelog](https://github.com/broofa/mime/blob/main/CHANGELOG.md)
- [Commits](broofa/mime@v3.0.0...v4.0.7)

Updates `prettier` from 2.8.8 to 3.5.3
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@2.8.8...3.5.3)

Updates `prettier-plugin-astro` from 0.8.1 to 0.14.1
- [Release notes](https://github.com/withastro/prettier-plugin-astro/releases)
- [Changelog](https://github.com/withastro/prettier-plugin-astro/blob/main/CHANGELOG.md)
- [Commits](withastro/prettier-plugin-astro@v0.8.1...v0.14.1)

Updates `rehype-autolink-headings` from 6.1.1 to 7.1.0
- [Release notes](https://github.com/rehypejs/rehype-autolink-headings/releases)
- [Commits](rehypejs/rehype-autolink-headings@6.1.1...7.1.0)

Updates `rollup` from 4.38.0 to 4.40.0
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.38.0...v4.40.0)

Updates `stylelint` from 16.17.0 to 16.18.0
- [Release notes](https://github.com/stylelint/stylelint/releases)
- [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md)
- [Commits](stylelint/stylelint@16.17.0...16.18.0)

Updates `unist-util-visit` from 4.1.2 to 5.0.0
- [Release notes](https://github.com/syntax-tree/unist-util-visit/releases)
- [Commits](syntax-tree/unist-util-visit@4.1.2...5.0.0)

---
updated-dependencies:
- dependency-name: "@astrojs/mdx"
  dependency-version: 4.2.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@types/google.analytics"
  dependency-version: 0.0.46
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: astro
  dependency-version: 5.7.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: bundlewatch
  dependency-version: 0.4.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: htmlparser2
  dependency-version: 10.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: image-size
  dependency-version: 2.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: mime
  dependency-version: 4.0.7
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: prettier
  dependency-version: 3.5.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: prettier-plugin-astro
  dependency-version: 0.14.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: rehype-autolink-headings
  dependency-version: 7.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: rollup
  dependency-version: 4.40.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: stylelint
  dependency-version: 16.18.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: unist-util-visit
  dependency-version: 5.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/development-dependencies-e6dbd90a95 branch from 046697d to 414fda9 Compare April 15, 2025 18:00
@julien-deramond julien-deramond removed the request for review from XhmikosR April 15, 2025 18:12
@julien-deramond
Copy link
Member

@dependabot rebase

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 15, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Apr 15, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/development-dependencies-e6dbd90a95 branch April 15, 2025 19:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants