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 js-dependencies group across 1 directory with 22 updates #91

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 1, 2025

Bumps the js-dependencies group with 22 updates in the / directory:

Package From To
@astrojs/rss 4.0.9 4.0.11
@fontsource-variable/inter 5.1.0 5.1.1
astro 4.16.8 5.2.3
astro-icon 1.1.1 1.1.5
unpic 3.19.0 4.0.1
@astrojs/mdx 3.1.9 4.0.8
@astrojs/partytown 2.1.2 2.1.3
@astrojs/tailwind 5.1.2 6.0.0
@iconify-json/flat-color-icons 1.2.0 1.2.1
@iconify-json/tabler 1.2.7 1.2.15
@tailwindcss/typography 0.5.15 0.5.16
@typescript-eslint/eslint-plugin 8.12.2 8.22.0
@typescript-eslint/parser 8.12.2 8.22.0
eslint 9.13.0 9.19.0
eslint-plugin-astro 1.3.0 1.3.1
postcss-html 1.7.0 1.8.0
prettier 3.3.3 3.4.2
stylelint 16.10.0 16.14.1
stylelint-config-standard 36.0.1 37.0.0
tailwind-merge 2.5.4 3.0.1
tailwindcss 3.4.14 4.0.2
typescript 5.6.3 5.7.3

Updates @astrojs/rss from 4.0.9 to 4.0.11

Release notes

Sourced from @​astrojs/rss's releases.

@​astrojs/rss@​4.0.11

Patch Changes

@​astrojs/rss@​4.0.10

Patch Changes

Changelog

Sourced from @​astrojs/rss's changelog.

4.0.11

Patch Changes

4.0.10

Patch Changes

Commits

Updates @fontsource-variable/inter from 5.1.0 to 5.1.1

Commits

Updates astro from 4.16.8 to 5.2.3

Release notes

Sourced from astro's releases.

[email protected]

Patch Changes

  • #13113 3a26e45 Thanks @​unprintable123! - Fixes the bug that rewrite will pass encoded url to the dynamic routing and cause params mismatch.

  • #13111 23978dd Thanks @​ascorbic! - Fixes a bug that caused injected endpoint routes to return not found when trailingSlash was set to always

  • #13112 0fa5c82 Thanks @​ematipico! - Fixes a bug where the i18n middleware was blocking a server island request when the prefixDefaultLocale option is set to true

[email protected]

Patch Changes

[email protected]

Patch Changes

  • #13095 740eb60 Thanks @​ascorbic! - Fixes a bug that caused some dev server asset requests to return 404 when trailingSlash was set to "always"

[email protected]

Minor Changes

  • #12994 5361755 Thanks @​ascorbic! - Redirects trailing slashes for on-demand pages

    When the trailingSlash option is set to always or never, on-demand rendered pages will now redirect to the correct URL when the trailing slash doesn't match the configuration option. This was previously the case for static pages, but now works for on-demand pages as well.

    Now, it doesn't matter whether your visitor navigates to /about/, /about, or even /about///. In production, they'll always end up on the correct page. For GET requests, the redirect will be a 301 (permanent) redirect, and for all other request methods, it will be a 308 (permanent, and preserve the request method) redirect.

    In development, you'll see a helpful 404 page to alert you of a trailing slash mismatch so you can troubleshoot routes.

  • #12979 e621712 Thanks @​ematipico! - Adds support for redirecting to external sites with the redirects configuration option.

    Now, you can redirect routes either internally to another path or externally by providing a URL beginning with http or https:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    export default defineConfig({
    redirects: {
    '/blog': 'https://example.com/blog',
    '/news': {
    status: 302,
    destination: 'https://example.com/news',
    },
    },
    });

  • #13084 0f3be31 Thanks @​ematipico! - Adds a new experimental virtual module astro:config that exposes a type-safe subset of your astro.config.mjs configuration

... (truncated)

Changelog

Sourced from astro's changelog.

5.2.3

Patch Changes

  • #13113 3a26e45 Thanks @​unprintable123! - Fixes the bug that rewrite will pass encoded url to the dynamic routing and cause params mismatch.

  • #13111 23978dd Thanks @​ascorbic! - Fixes a bug that caused injected endpoint routes to return not found when trailingSlash was set to always

  • #13112 0fa5c82 Thanks @​ematipico! - Fixes a bug where the i18n middleware was blocking a server island request when the prefixDefaultLocale option is set to true

5.2.2

Patch Changes

5.2.1

Patch Changes

  • #13095 740eb60 Thanks @​ascorbic! - Fixes a bug that caused some dev server asset requests to return 404 when trailingSlash was set to "always"

5.2.0

Minor Changes

  • #12994 5361755 Thanks @​ascorbic! - Redirects trailing slashes for on-demand pages

    When the trailingSlash option is set to always or never, on-demand rendered pages will now redirect to the correct URL when the trailing slash doesn't match the configuration option. This was previously the case for static pages, but now works for on-demand pages as well.

    Now, it doesn't matter whether your visitor navigates to /about/, /about, or even /about///. In production, they'll always end up on the correct page. For GET requests, the redirect will be a 301 (permanent) redirect, and for all other request methods, it will be a 308 (permanent, and preserve the request method) redirect.

    In development, you'll see a helpful 404 page to alert you of a trailing slash mismatch so you can troubleshoot routes.

  • #12979 e621712 Thanks @​ematipico! - Adds support for redirecting to external sites with the redirects configuration option.

    Now, you can redirect routes either internally to another path or externally by providing a URL beginning with http or https:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    export default defineConfig({
    redirects: {
    '/blog': 'https://example.com/blog',
    '/news': {
    status: 302,
    destination: 'https://example.com/news',
    },
    },

... (truncated)

Commits

Updates astro-icon from 1.1.1 to 1.1.5

Release notes

Sourced from astro-icon's releases.

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

Changelog

Sourced from astro-icon's changelog.

1.1.5

Patch Changes

1.1.4

Patch Changes

1.1.3

Patch Changes

1.1.2

Patch Changes

Commits

Updates unpic from 3.19.0 to 4.0.1

Release notes

Sourced from unpic's releases.

v4.0.1

4.0.1 (2025-01-31)

Bug Fixes

  • update imagekit crop options and add crop mode (#158) (537ee24)

v4.0.0

4.0.0 (2025-01-19)

⚠ BREAKING CHANGES

This is a major release with several breaking changes. See https://github.com/ascorbic/unpic/blob/HEAD/UPGRADING.md for a detailed migration guide.

New Features

  • Added support for provider-specific operations with type safety
  • Added support for provider-specific options (e.g., base URLs, project keys)
  • Added fallback option to specify a fallback provider if URL isn't recognized

Breaking Changes

  • Removed Features

    • Removed delegated URL system
    • Removed support for some CDN-specific params in favor of new provider operations system
  • API Changes

    • Removed URL delegation system and canonical URL detection
    • Changed transformUrl signature to accept operations and provider options as separate arguments
    • Updated parseUrl return type structure to use operations and provider terminology
    • Added new URL parsing functions: getExtractorForUrl, getExtractorForProvider
  • Function Renames

    • getImageCdnForUrlgetProviderForUrl
    • getImageCdnForUrlByDomaingetProviderForUrlByDomain
    • getImageCdnForUrlByPathgetProviderForUrlByPath
    • Old functions marked as deprecated but still available
  • Type System Changes

    • Added generic type support for provider-specific operations
    • Updated UrlTransformerOptions to support typed provider operations
    • Removed ParsedUrl type in favor of new ParseURLResult
    • Added new types for enhanced type safety:
      • Operations
      • OperationMap

... (truncated)

Changelog

Sourced from unpic's changelog.

Changelog

Commits

Updates @astrojs/mdx from 3.1.9 to 4.0.8

Release notes

Sourced from @​astrojs/mdx's releases.

@​astrojs/mdx@​4.0.8

Patch Changes

  • Updated dependencies [db252e0]:
    • @​astrojs/markdown-remark@​6.1.0

@​astrojs/mdx@​4.0.7

Patch Changes

@​astrojs/mdx@​4.0.6

Patch Changes

  • Updated dependencies [3d89e62]:
    • @​astrojs/markdown-remark@​6.0.2

@​astrojs/mdx@​4.0.5

Patch Changes

@​astrojs/mdx@​4.0.4

Patch Changes

  • #12921 aeb7e1a Thanks @​ascorbic! - Fixes a bug that caused Image component to be imported on MDX pages that did not include images

  • #12913 9a3b48c Thanks @​bluwy! - Makes internal check() function a no-op to allow faster component renders and prevent React 19 component warnings

@​astrojs/mdx@​4.0.3

Patch Changes

@​astrojs/mdx@​4.0.2

Patch Changes

Changelog

Sourced from @​astrojs/mdx's changelog.

4.0.8

Patch Changes

  • Updated dependencies [db252e0]:
    • @​astrojs/markdown-remark@​6.1.0

4.0.7

Patch Changes

4.0.6

Patch Changes

  • Updated dependencies [3d89e62]:
    • @​astrojs/markdown-remark@​6.0.2

4.0.5

Patch Changes

4.0.4

Patch Changes

  • #12921 aeb7e1a Thanks @​ascorbic! - Fixes a bug that caused Image component to be imported on MDX pages that did not include images

  • #12913 9a3b48c Thanks @​bluwy! - Makes internal check() function a no-op to allow faster component renders and prevent React 19 component warnings

4.0.3

Patch Changes

4.0.2

Patch Changes

4.0.1

Patch Changes

... (truncated)

Commits

Updates @astrojs/partytown from 2.1.2 to 2.1.3

Release notes

Sourced from @​astrojs/partytown's releases.

@​astrojs/partytown@​2.1.3

Patch Changes

Changelog

Sourced from @​astrojs/partytown's changelog.

2.1.3

Patch Changes

Commits

Updates @astrojs/tailwind from 5.1.2 to 6.0.0

Release notes

Sourced from @​astrojs/tailwind's releases.

@​astrojs/tailwind@​6.0.0

Major Changes

  • #13049 2ed4bd9 Thanks @​florian-lefebvre! - Deprecates the integration

    Tailwind CSS now offers a Vite plugin which is the preferred way to use Tailwind 4 in Astro. Please uninstall @astrojs/tailwind and follow the Tailwind documentation for manual installation.

    This updated major version is only provided as a convenience for existing projects until they are able to migrate to the new plugin. It offers no additional functionality and is no longer recommended, but may continue to be used in your projects until it is removed entirely.

@​astrojs/tailwind@​5.1.5

Patch Changes

@​astrojs/tailwind@​5.1.4

Patch Changes

@​astrojs/tailwind@​5.1.3

Patch Changes

Changelog

Sourced from @​astrojs/tailwind's changelog.

6.0.0

Major Changes

  • #13049 2ed4bd9 Thanks @​florian-lefebvre! - Deprecates the integration

    Tailwind CSS now offers a Vite plugin which is the preferred way to use Tailwind 4 in Astro. Please uninstall @astrojs/tailwind and follow the Tailwind documentation for manual installation.

    This updated major version is only provided as a convenience for existing projects until they are able to migrate to the new plugin. It offers no additional functionality and is no longer recommended, but may continue to be used in your projects until it is removed entirely.

5.1.5

Patch Changes

5.1.4

Patch Changes

5.1.3

Patch Changes

6.0.0-alpha.0

Patch Changes

Commits

Updates @iconify-json/flat-color-icons from 1.2.0 to 1.2.1

Commits

Updates @iconify-json/tabler from 1.2.7 to 1.2.15

Commits

Updates @tailwindcss/typography from 0.5.15 to 0.5.16

Release notes

Sourced from @​tailwindcss/typography's releases.

v0.5.16

Fixed

  • Support installing with beta versions of Tailwind CSS v4 (#365)
Changelog

Sourced from @​tailwindcss/typography's changelog.

[0.5.16] - 2025-01-07

Fixed

  • Support installing with beta versions of Tailwind CSS v4 (#365)
Commits

Updates @typescript-eslint/eslint-plugin from 8.12.2 to 8.22.0

Release notes

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

v8.22.0

8.22.0 (2025-01-27)

🚀 Features

  • parser: add standalone isolatedDeclarations option (#10499)

🩹 Fixes

  • eslint-plugin: [prefer-nullish-coalescing] doesn't report on ternary but on equivalent || (#10517)
  • eslint-plugin: [no-duplicate-type-constituents] handle nested types (#10638)
  • eslint-plugin: [no-shadow] don't report unnecessarily on valid ways of using module augmentation (#10616)
  • eslint-plugin: [no-extraneous-class] handle accessor keyword (#10678)
  • eslint-plugin: [prefer-readonly] autofixer doesn't add type to property that is mutated in the constructor (#10552)
  • eslint-plugin: [no-unnecessary-template-expression] handle template literal type (#10612)
  • type-utils: support matching intersection types in TypeOrValueSpecifier with a PackageSpecifier (#10667)

❤️ Thank You

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

v8.21.0

8.21.0 (2025-01-20)

🚀 Features

  • ast-spec: support import attributes in TSImportType (#10640)

🩹 Fixes

  • eslint-plugin: [no-unnecessary-type-arguments] handle type args on jsx (#10630)
  • eslint-plugin: check JSX spread elements for misused spread usage (#10653)
  • eslint-plugin: [no-for-in-array] report on any type which may be an array or array-like (#10535)
  • eslint-plugin: [no-base-to-string] don't crash for recursive array or tuple types (#10633)
  • eslint-plugin: [no-duplicate-enum-values] handle template literal (#10675)
  • eslint-plugin-internal: [debug-namespace] on windows (#10661)
  • rule-tester: handle window root path (#10654)
  • scope-manager: add a reference for JSX closing element if it exists (#10614)

❤️ Thank You

... (truncated)

Changelog

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

8.22.0 (2025-01-27)

🩹 Fixes

  • eslint-plugin: [no-unnecessary-template-expression] handle template literal type (#10612)
  • eslint-plugin: [prefer-readonly] autofixer doesn't add type to property that is mutated in the constructor (#10552)
  • eslint-plugin: [no-extraneous-class] handle accessor keyword (#10678)
  • eslint-plugin: [no-shadow] don't report unnecessarily on valid ways of using module augmentation (#10616)
  • eslint-plugin: [no-duplicate-type-constituents] handle nested types (#10638)
  • eslint-plugin: [prefer-nullish-coalescing] doesn't report on ternary but on equivalent || (#10517)

❤️ Thank You

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

8.21.0 (2025-01-20)

🩹 Fixes

  • eslint-plugin: [no-duplicate-enum-values] handle template literal (#10675)
  • eslint-plugin: [no-base-to-string] don't crash for recursive array or tuple types (#10633)
  • eslint-plugin: [no-for-in-array] report on any type which may be an array or array-like (#10535)
  • eslint-plugin: check JSX spread elements for misused spread usage (#10653)
  • eslint-plugin: [no-unnecessary-type-arguments] handle type args on jsx (#10630)

❤️ Thank You

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

8.20.0 (2025-01-13)

🚀 Features

  • eslint-plugin: [consistent-type-assertions] add arrayLiteralTypeAssertions options (#10565)
  • eslint-plugin: [no-deprecated] add allow options (#10585)
  • eslint-plugin: [no-misused-spread] add new rule (#10551)

🩹 Fixes

  • eslint-plugin: [no-unnecessary-condit...

    Description has been truncated

Bumps the js-dependencies group with 22 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@astrojs/rss](https://github.com/withastro/astro/tree/HEAD/packages/astro-rss) | `4.0.9` | `4.0.11` |
| [@fontsource-variable/inter](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/inter) | `5.1.0` | `5.1.1` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `4.16.8` | `5.2.3` |
| [astro-icon](https://github.com/natemoo-re/astro-icon/tree/HEAD/packages/core) | `1.1.1` | `1.1.5` |
| [unpic](https://github.com/ascorbic/unpic) | `3.19.0` | `4.0.1` |
| [@astrojs/mdx](https://github.com/withastro/astro/tree/HEAD/packages/integrations/mdx) | `3.1.9` | `4.0.8` |
| [@astrojs/partytown](https://github.com/withastro/astro/tree/HEAD/packages/integrations/partytown) | `2.1.2` | `2.1.3` |
| [@astrojs/tailwind](https://github.com/withastro/astro/tree/HEAD/packages/integrations/tailwind) | `5.1.2` | `6.0.0` |
| [@iconify-json/flat-color-icons](https://github.com/iconify/icon-sets) | `1.2.0` | `1.2.1` |
| [@iconify-json/tabler](https://github.com/iconify/icon-sets) | `1.2.7` | `1.2.15` |
| [@tailwindcss/typography](https://github.com/tailwindlabs/tailwindcss-typography) | `0.5.15` | `0.5.16` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.12.2` | `8.22.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.12.2` | `8.22.0` |
| [eslint](https://github.com/eslint/eslint) | `9.13.0` | `9.19.0` |
| [eslint-plugin-astro](https://github.com/ota-meshi/eslint-plugin-astro) | `1.3.0` | `1.3.1` |
| [postcss-html](https://github.com/ota-meshi/postcss-html) | `1.7.0` | `1.8.0` |
| [prettier](https://github.com/prettier/prettier) | `3.3.3` | `3.4.2` |
| [stylelint](https://github.com/stylelint/stylelint) | `16.10.0` | `16.14.1` |
| [stylelint-config-standard](https://github.com/stylelint/stylelint-config-standard) | `36.0.1` | `37.0.0` |
| [tailwind-merge](https://github.com/dcastil/tailwind-merge) | `2.5.4` | `3.0.1` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `3.4.14` | `4.0.2` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.6.3` | `5.7.3` |



Updates `@astrojs/rss` from 4.0.9 to 4.0.11
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/astro-rss/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/[email protected]/packages/astro-rss)

Updates `@fontsource-variable/inter` from 5.1.0 to 5.1.1
- [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md)
- [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/inter)

Updates `astro` from 4.16.8 to 5.2.3
- [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 `astro-icon` from 1.1.1 to 1.1.5
- [Release notes](https://github.com/natemoo-re/astro-icon/releases)
- [Changelog](https://github.com/natemoo-re/astro-icon/blob/main/packages/core/CHANGELOG.md)
- [Commits](https://github.com/natemoo-re/astro-icon/commits/[email protected]/packages/core)

Updates `unpic` from 3.19.0 to 4.0.1
- [Release notes](https://github.com/ascorbic/unpic/releases)
- [Changelog](https://github.com/ascorbic/unpic/blob/main/CHANGELOG-old.md)
- [Commits](ascorbic/unpic@v3.19.0...v4.0.1)

Updates `@astrojs/mdx` from 3.1.9 to 4.0.8
- [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 `@astrojs/partytown` from 2.1.2 to 2.1.3
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/partytown/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/[email protected]/packages/integrations/partytown)

Updates `@astrojs/tailwind` from 5.1.2 to 6.0.0
- [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/[email protected]/packages/integrations/tailwind)

Updates `@iconify-json/flat-color-icons` from 1.2.0 to 1.2.1
- [Commits](https://github.com/iconify/icon-sets/commits)

Updates `@iconify-json/tabler` from 1.2.7 to 1.2.15
- [Commits](https://github.com/iconify/icon-sets/commits)

Updates `@tailwindcss/typography` from 0.5.15 to 0.5.16
- [Release notes](https://github.com/tailwindlabs/tailwindcss-typography/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss-typography/blob/main/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss-typography@v0.5.15...v0.5.16)

Updates `@typescript-eslint/eslint-plugin` from 8.12.2 to 8.22.0
- [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.22.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.12.2 to 8.22.0
- [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.22.0/packages/parser)

Updates `eslint` from 9.13.0 to 9.19.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v9.13.0...v9.19.0)

Updates `eslint-plugin-astro` from 1.3.0 to 1.3.1
- [Release notes](https://github.com/ota-meshi/eslint-plugin-astro/releases)
- [Changelog](https://github.com/ota-meshi/eslint-plugin-astro/blob/main/CHANGELOG.md)
- [Commits](ota-meshi/eslint-plugin-astro@v1.3.0...v1.3.1)

Updates `postcss-html` from 1.7.0 to 1.8.0
- [Release notes](https://github.com/ota-meshi/postcss-html/releases)
- [Commits](ota-meshi/postcss-html@v1.7.0...v1.8.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 `stylelint` from 16.10.0 to 16.14.1
- [Release notes](https://github.com/stylelint/stylelint/releases)
- [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md)
- [Commits](stylelint/stylelint@16.10.0...16.14.1)

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

Updates `tailwind-merge` from 2.5.4 to 3.0.1
- [Release notes](https://github.com/dcastil/tailwind-merge/releases)
- [Commits](dcastil/tailwind-merge@v2.5.4...v3.0.1)

Updates `tailwindcss` from 3.4.14 to 4.0.2
- [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.2/packages/tailwindcss)

Updates `typescript` from 5.6.3 to 5.7.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.6.3...v5.7.3)

---
updated-dependencies:
- dependency-name: "@astrojs/rss"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: js-dependencies
- dependency-name: "@fontsource-variable/inter"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: js-dependencies
- dependency-name: astro
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: js-dependencies
- dependency-name: astro-icon
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: js-dependencies
- dependency-name: unpic
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: js-dependencies
- dependency-name: "@astrojs/mdx"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: js-dependencies
- dependency-name: "@astrojs/partytown"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-dependencies
- dependency-name: "@astrojs/tailwind"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: js-dependencies
- dependency-name: "@iconify-json/flat-color-icons"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-dependencies
- dependency-name: "@iconify-json/tabler"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-dependencies
- dependency-name: "@tailwindcss/typography"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-dependencies
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-dependencies
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-dependencies
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-dependencies
- dependency-name: eslint-plugin-astro
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-dependencies
- dependency-name: postcss-html
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-dependencies
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-dependencies
- dependency-name: stylelint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-dependencies
- dependency-name: stylelint-config-standard
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: js-dependencies
- dependency-name: tailwind-merge
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: js-dependencies
- dependency-name: tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: js-dependencies
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Feb 1, 2025
Copy link

vercel bot commented Feb 1, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
vipyrsec-site ❌ Failed (Inspect) Feb 1, 2025 6:54am

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.

0 participants