Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the all-updates group across 1 directory with 15 updates #220

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 23, 2024

Bumps the all-updates group with 13 updates in the / directory:

Package From To
@astrojs/svelte 4.0.4 7.0.2
@astrojs/tailwind 5.1.0 5.1.4
astro 3.6.5 5.1.1
svelte 4.2.18 5.15.0
@tailwindcss/forms 0.5.7 0.5.9
@types/chrome 0.0.269 0.0.287
@typescript-eslint/eslint-plugin 7.18.0 8.18.1
@typescript-eslint/parser 7.18.0 8.18.1
astro-purgecss 3.2.1 5.0.0
chalk 5.3.0 5.4.1
prettier 3.3.3 3.4.2
purgecss 5.0.0 7.0.2
tailwindcss 3.4.7 3.4.17

Updates @astrojs/svelte from 4.0.4 to 7.0.2

Release notes

Sourced from @​astrojs/svelte's releases.

@​astrojs/svelte@​7.0.2

Patch Changes

@​astrojs/svelte@​7.0.1

Patch Changes

@​astrojs/svelte@​7.0.0

Major Changes

Minor Changes

Patch Changes

@​astrojs/svelte@​7.0.0-beta.1

Major Changes

Minor Changes

@​astrojs/svelte@​6.0.2

Patch Changes

  • #12481 8a46e80 Thanks @​marbrex! - Resolve vite peer dependency problem for strict package managers like Yarn in PnP mode.

@​astrojs/svelte@​6.0.2-beta.0

Patch Changes

  • #12481 8a46e80 Thanks @​marbrex! - Resolve vite peer dependency problem for strict package managers like Yarn in PnP mode.

... (truncated)

Changelog

Sourced from @​astrojs/svelte's changelog.

7.0.2

Patch Changes

7.0.1

Patch Changes

7.0.0

Major Changes

Minor Changes

Patch Changes

7.0.0-beta.1

Major Changes

Minor Changes

6.0.2

Patch Changes

  • #12481 8a46e80 Thanks @​marbrex! - Resolve vite peer dependency problem for strict package managers like Yarn in PnP mode.

... (truncated)

Commits

Updates @astrojs/tailwind from 5.1.0 to 5.1.4

Release notes

Sourced from @​astrojs/tailwind's releases.

@​astrojs/tailwind@​5.1.4

Patch Changes

@​astrojs/tailwind@​5.1.3

Patch Changes

Changelog

Sourced from @​astrojs/tailwind's changelog.

5.1.4

Patch Changes

5.1.3

Patch Changes

6.0.0-alpha.0

Patch Changes

5.1.2

Patch Changes

  • #12161 8e500f2 Thanks @​delucis! - Adds keywords to package.json to improve categorization in the Astro integrations catalog

6.0.0-alpha.0

Patch Changes

5.1.1

Patch Changes

Commits

Updates astro from 3.6.5 to 5.1.1

Release notes

Sourced from astro's releases.

astro@5.1.1

Patch Changes

astro@5.1.0

Minor Changes

  • #12441 b4fec3c Thanks @​ascorbic! - Adds experimental session support

    Sessions are used to store user state between requests for server-rendered pages, such as login status, shopping cart contents, or other user-specific data.

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

    Sessions are available in on-demand rendered/SSR pages, API endpoints, actions and middleware. To enable session support, you must configure a storage driver.

    If you are using the Node.js adapter, you can use the fs driver to store session data on the filesystem:

    // astro.config.mjs
    {
      adapter: node({ mode: 'standalone' }),
      experimental: {
        session: {
          // Required: the name of the unstorage driver
          driver: "fs",
        },
      },
    }

    If you are deploying to a serverless environment, you can use drivers such as redis, netlify-blobs, vercel-kv, or cloudflare-kv-binding and optionally pass additional configuration options.

    For more information, including using the session API with other adapters and a full list of supported drivers, see the docs for experimental session support. For even more details, and to leave feedback and participate in the development of this feature, the Sessions RFC.

  • #12426 3dc02c5 Thanks @​oliverlynch! - Improves asset caching of remote images

    Astro will now store entity tags and the Last-Modified date for cached remote images and use them to revalidate the cache when it goes stale.

... (truncated)

Changelog

Sourced from astro's changelog.

5.1.1

Patch Changes

5.1.0

Minor Changes

  • #12441 b4fec3c Thanks @​ascorbic! - Adds experimental session support

    Sessions are used to store user state between requests for server-rendered pages, such as login status, shopping cart contents, or other user-specific data.

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

    Sessions are available in on-demand rendered/SSR pages, API endpoints, actions and middleware. To enable session support, you must configure a storage driver.

    If you are using the Node.js adapter, you can use the fs driver to store session data on the filesystem:

    // astro.config.mjs
    {
      adapter: node({ mode: 'standalone' }),
      experimental: {
        session: {
          // Required: the name of the unstorage driver
          driver: "fs",
        },
      },
    }

    If you are deploying to a serverless environment, you can use drivers such as redis, netlify-blobs, vercel-kv, or cloudflare-kv-binding and optionally pass additional configuration options.

    For more information, including using the session API with other adapters and a full list of supported drivers, see the docs for experimental session support. For even more details, and to leave feedback and participate in the development of this feature, the Sessions RFC.

  • #12426 3dc02c5 Thanks @​oliverlynch! - Improves asset caching of remote images

... (truncated)

Commits

Updates svelte from 4.2.18 to 5.15.0

Release notes

Sourced from svelte's releases.

svelte@5.15.0

Minor Changes

  • feat: add "worker" exports condition to better support bundling for worker-based environments (#14779)

svelte@5.14.6

Patch Changes

  • fix: treeshake $inspect.trace code if unused in modules (#14774)

  • fix: Improve typescript DX for $inspect, $props, $bindable, and $host (#14777)

svelte@5.14.5

Patch Changes

  • fix: bump esrap dependency (#14765)

  • fix: ensure svg namespace for <a> elements is correct (#14756)

  • fix: treeshake $inspect.trace code if unused (#14770)

svelte@5.14.4

Patch Changes

  • fix: remove implements from class declarations (#14749)

  • fix: remove unwanted properties from both replaced and unreplaced nodes (#14744)

svelte@5.14.3

Patch Changes

  • fix: bump esrap, prevent malformed AST (#14742)

  • fix: compare array contents for equality mismatch detections, not the arrays themselves (#14738)

svelte@5.14.2

Patch Changes

  • fix: correctly highlight first rerun of $inspect.trace (#14734)

  • chore: more loose parser improvements (#14733)

svelte@5.14.1

Patch Changes

  • fix: improve unowned derived performance (#14724)

svelte@5.14.0

Minor Changes

... (truncated)

Changelog

Sourced from svelte's changelog.

5.15.0

Minor Changes

  • feat: add "worker" exports condition to better support bundling for worker-based environments (#14779)

5.14.6

Patch Changes

  • fix: treeshake $inspect.trace code if unused in modules (#14774)

  • fix: Improve typescript DX for $inspect, $props, $bindable, and $host (#14777)

5.14.5

Patch Changes

  • fix: bump esrap dependency (#14765)

  • fix: ensure svg namespace for <a> elements is correct (#14756)

  • fix: treeshake $inspect.trace code if unused (#14770)

5.14.4

Patch Changes

  • fix: remove implements from class declarations (#14749)

  • fix: remove unwanted properties from both replaced and unreplaced nodes (#14744)

5.14.3

Patch Changes

  • fix: bump esrap, prevent malformed AST (#14742)

  • fix: compare array contents for equality mismatch detections, not the arrays themselves (#14738)

5.14.2

Patch Changes

  • fix: correctly highlight first rerun of $inspect.trace (#14734)

  • chore: more loose parser improvements (#14733)

5.14.1

... (truncated)

Commits

Updates @tailwindcss/forms from 0.5.7 to 0.5.9

Release notes

Sourced from @​tailwindcss/forms's releases.

v0.5.9

Fixed

  • Fallback to static chevron color if theme is using variables (#167)

v0.5.8

Fixed

  • Support installing with alpha versions of Tailwind CSS v4 (#163)
Changelog

Sourced from @​tailwindcss/forms's changelog.

[0.5.9] - 2024-09-05

Fixed

  • Fallback to static chevron color if theme is using variables (#167)

[0.5.8] - 2024-08-28

Fixed

  • Support installing with alpha versions of Tailwind CSS v4 (#163)
Commits

Updates @types/chrome from 0.0.269 to 0.0.287

Commits

Updates @typescript-eslint/eslint-plugin from 7.18.0 to 8.18.1

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v8.18.1

8.18.1 (2024-12-16)

🩹 Fixes

  • eslint-plugin: [no-unnecessary-template-expression] don't report when an expression includes comment (#10444)
  • eslint-plugin: handle string like index type (#10460)
  • eslint-plugin: [no-unnecessary-boolean-literal-compare] flag values of a type parameter with boolean type constraints (#10474)
  • eslint-plugin: use consistent naming for asserting types and casting values (#10472)
  • eslint-plugin: [no-unnecessary-condition] better message when comparing between literal types (#10454)
  • scope-manager: visit params decorator before nest scope (#10475)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.18.0

8.18.0 (2024-12-09)

🚀 Features

  • eslint-plugin: [no-deprecated] report on super call of deprecated constructor (#10397)
  • eslint-plugin: [switch-exhaustiveness-check] add support for "no default" comment (#10218)

🩹 Fixes

  • typescript peer dependency (#10373)
  • deps: update dependency eslint to v9.16.0 (#10471)
  • eslint-plugin: [no-deprecated] check if a JSX attribute is deprecated (#10374)
  • eslint-plugin: [no-base-to-string] handle more robustly when multiple toString() declarations are present for a type (#10432)
  • eslint-plugin: [use-unknown-in-catch-callback-variable] only flag function literals (#10436)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.17.0

8.17.0 (2024-12-02)

🚀 Features

... (truncated)

Changelog

Sourced from @​typescript-eslint/eslint-plugin's changelog.

8.18.1 (2024-12-16)

🩹 Fixes

  • scope-manager: visit params decorator before nest scope (#10475)
  • eslint-plugin: [no-unnecessary-condition] better message when comparing between literal types (#10454)
  • eslint-plugin: use consistent naming for asserting types and casting values (#10472)
  • eslint-plugin: [no-unnecessary-boolean-literal-compare] flag values of a type parameter with boolean type constraints (#10474)
  • eslint-plugin: handle string like index type (#10460)
  • eslint-plugin: [no-unnecessary-template-expression] don't report when an expression includes comment (#10444)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

8.18.0 (2024-12-09)

🚀 Features

  • eslint-plugin: [switch-exhaustiveness-check] add support for "no default" comment (#10218)
  • eslint-plugin: [no-deprecated] report on super call of deprecated constructor (#10397)

🩹 Fixes

  • eslint-plugin: [use-unknown-in-catch-callback-variable] only flag function literals (#10436)
  • eslint-plugin: [no-base-to-string] handle more robustly when multiple toString() declarations are present for a type (#10432)
  • eslint-plugin: [no-deprecated] check if a JSX attribute is deprecated (#10374)
  • typescript peer dependency (#10373)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

8.17.0 (2024-12-02)

🚀 Features

  • eslint-plugin: [prefer-promise-reject-errors] options to allow any and unknown (#10392)

🩹 Fixes

... (truncated)

Commits
  • b2ce158 chore(release): publish 8.18.1
  • 5a9788c fix(scope-manager): visit params decorator before nest scope (#10475)
  • 334d025 fix(eslint-plugin): [no-unnecessary-condition] better message when comparing ...
  • 984f177 fix(eslint-plugin): use consistent naming for asserting types and casting val...
  • eaae68c fix(eslint-plugin): [no-unnecessary-boolean-literal-compare] flag values of a...
  • bddb35b fix(eslint-plugin): handle string like index type (#10460)
  • d5415e2 fix(eslint-plugin): [no-unnecessary-template-expression] don't report when an...
  • c60dbab chore(release): publish 8.18.0
  • 0d65f17 chore: enforce repo nullish check style (#10419)
  • a54a8e1 fix(eslint-plugin): [use-unknown-in-catch-callback-variable] only flag functi...
  • Additional commits viewable in compare view

Updates @typescript-eslint/parser from 7.18.0 to 8.18.1

Release notes

Sourced from @​typescript-eslint/parser's releases.

v8.18.1

8.18.1 (2024-12-16)

🩹 Fixes

  • eslint-plugin: [no-unnecessary-template-expression] don't report when an expression includes comment (#10444)
  • eslint-plugin: handle string like index type (#10460)
  • eslint-plugin: [no-unnecessary-boolean-literal-compare] flag values of a type parameter with boolean type constraints (#10474)
  • eslint-plugin: use consistent naming for asserting types and casting values (#10472)
  • eslint-plugin: [no-unnecessary-condition] better message when comparing between literal types (#10454)
  • scope-manager: visit params decorator before nest scope (#10475)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.18.0

8.18.0 (2024-12-09)

🚀 Features

  • eslint-plugin: [no-deprecated] report on super call of deprecated constructor (#10397)
  • eslint-plugin: [switch-exhaustiveness-check] add support for "no default" comment (#10218)

🩹 Fixes

  • typescript peer dependency (#10373)
  • deps: update dependency eslint to v9.16.0 (#10471)
  • eslint-plugin: [no-deprecated] check if a JSX attribute is deprecated (#10374)
  • eslint-plugin: [no-base-to-string] handle more robustly when multiple toString() declarations are present for a type (#10432)
  • eslint-plugin: [use-unknown-in-catch-callback-variable] only flag function literals (#10436)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.17.0

8.17.0 (2024-12-02)

🚀 Features

... (truncated)

Changelog

Sourced from @​typescript-eslint/parser's changelog.

8.18.1 (2024-12-16)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

8.18.0 (2024-12-09)

🩹 Fixes

  • typescript peer dependency (#10373)

❤️ Thank You

  • rtritto

You can read about our versioning strategy and releases on our website.

8.17.0 (2024-12-02)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

8.16.0 (2024-11-25)

🚀 Features

  • support TypeScript 5.7 (#10372)

❤️ Thank You

  • Josh Goldberg ✨

You can read about our versioning strategy and releases on our website.

8.15.0 (2024-11-18)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

8.14.0 (2024-11-11)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

8.13.0 (2024-11-04)

... (truncated)

Commits

Updates astro-purgecss from 3.2.1 to 5.0.0

Release notes

Sourced from astro-purgecss's releases.

astro-purgecss@5.0.0

Major Changes

astro-purgecss@4.9.0

Minor Changes

astro-purgecss@4.8.0

Minor Changes

Bumps the all-updates group with 13 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@astrojs/svelte](https://github.com/withastro/astro/tree/HEAD/packages/integrations/svelte) | `4.0.4` | `7.0.2` |
| [@astrojs/tailwind](https://github.com/withastro/astro/tree/HEAD/packages/integrations/tailwind) | `5.1.0` | `5.1.4` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `3.6.5` | `5.1.1` |
| [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) | `4.2.18` | `5.15.0` |
| [@tailwindcss/forms](https://github.com/tailwindlabs/tailwindcss-forms) | `0.5.7` | `0.5.9` |
| [@types/chrome](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/chrome) | `0.0.269` | `0.0.287` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `7.18.0` | `8.18.1` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `7.18.0` | `8.18.1` |
| [astro-purgecss](https://github.com/codiume/orbit/tree/HEAD/packages/astro-purgecss) | `3.2.1` | `5.0.0` |
| [chalk](https://github.com/chalk/chalk) | `5.3.0` | `5.4.1` |
| [prettier](https://github.com/prettier/prettier) | `3.3.3` | `3.4.2` |
| [purgecss](https://github.com/FullHuman/purgecss) | `5.0.0` | `7.0.2` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss) | `3.4.7` | `3.4.17` |



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

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

Updates `astro` from 3.6.5 to 5.1.1
- [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.1.1/packages/astro)

Updates `svelte` from 4.2.18 to 5.15.0
- [Release notes](https://github.com/sveltejs/svelte/releases)
- [Changelog](https://github.com/sveltejs/svelte/blob/main/packages/svelte/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/svelte/commits/svelte@5.15.0/packages/svelte)

Updates `@tailwindcss/forms` from 0.5.7 to 0.5.9
- [Release notes](https://github.com/tailwindlabs/tailwindcss-forms/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss-forms/blob/main/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss-forms@v0.5.7...v0.5.9)

Updates `@types/chrome` from 0.0.269 to 0.0.287
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/chrome)

Updates `@typescript-eslint/eslint-plugin` from 7.18.0 to 8.18.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.18.1/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 7.18.0 to 8.18.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.18.1/packages/parser)

Updates `astro-purgecss` from 3.2.1 to 5.0.0
- [Release notes](https://github.com/codiume/orbit/releases)
- [Changelog](https://github.com/codiume/orbit/blob/main/packages/astro-purgecss/CHANGELOG.md)
- [Commits](https://github.com/codiume/orbit/commits/astro-purgecss@5.0.0/packages/astro-purgecss)

Updates `bun-types` from 1.1.21 to 1.1.42
- [Release notes](https://github.com/oven-sh/bun/releases)
- [Commits](https://github.com/oven-sh/bun/commits/bun-v1.1.42/packages/bun-types)

Updates `chalk` from 5.3.0 to 5.4.1
- [Release notes](https://github.com/chalk/chalk/releases)
- [Commits](chalk/chalk@v5.3.0...v5.4.1)

Updates `eslint` from 8.57.0 to 9.17.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.57.0...v9.17.0)

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

Updates `purgecss` from 5.0.0 to 7.0.2
- [Release notes](https://github.com/FullHuman/purgecss/releases)
- [Changelog](https://github.com/FullHuman/purgecss/blob/main/CHANGELOG.md)
- [Commits](FullHuman/purgecss@v5.0.0...v7.0.2)

Updates `tailwindcss` from 3.4.7 to 3.4.17
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/v3.4.17/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss@v3.4.7...v3.4.17)

---
updated-dependencies:
- dependency-name: "@astrojs/svelte"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: "@astrojs/tailwind"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: astro
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: svelte
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: "@tailwindcss/forms"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: "@types/chrome"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: astro-purgecss
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: bun-types
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: chalk
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: purgecss
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-updates
- dependency-name: tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 23, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 30, 2024

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot rebase.

Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 6, 2025

Superseded by #223.

@dependabot dependabot bot closed this Jan 6, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/all-updates-7f158a8cfa branch January 6, 2025 07:12
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants