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 24 updates #74

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 1, 2024

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

Package From To
@astrojs/rss 4.0.5 4.0.7
@astrojs/sitemap 3.1.2 3.1.6
@fontsource-variable/inter 5.0.17 5.0.20
astro 4.5.12 4.15.1
astro-icon 1.1.0 1.1.1
@astrojs/check 0.5.10 0.9.3
@astrojs/mdx 2.2.2 3.1.5
@astrojs/partytown 2.0.4 2.1.2
@iconify-json/flat-color-icons 1.1.10 1.1.11
@iconify-json/tabler 1.1.109 1.1.121
@tailwindcss/typography 0.5.12 0.5.15
@typescript-eslint/eslint-plugin 7.4.0 8.3.0
@typescript-eslint/parser 7.4.0 8.3.0
eslint 8.57.0 9.9.1
eslint-plugin-astro 0.33.1 1.2.3
eslint-plugin-jsx-a11y 6.8.0 6.9.0
postcss-html 1.6.0 1.7.0
prettier 3.2.5 3.3.3
prettier-plugin-astro 0.13.0 0.14.1
stylelint 16.3.1 16.9.0
stylelint-config-standard 36.0.0 36.0.1
tailwind-merge 2.2.2 2.5.2
tailwindcss 3.4.3 3.4.10
typescript 5.4.3 5.5.4

Updates @astrojs/rss from 4.0.5 to 4.0.7

Release notes

Sourced from @​astrojs/rss's releases.

@​astrojs/rss@​4.0.7

Patch Changes

Changelog

Sourced from @​astrojs/rss's changelog.

4.0.7

Patch Changes

4.0.6

Patch Changes

  • #11050 841df1f Thanks @​mingjunlu! - Fixes an issue where trailing slash is not removed even if the trailingSlash option is set to false.
Commits

Updates @astrojs/sitemap from 3.1.2 to 3.1.6

Release notes

Sourced from @​astrojs/sitemap's releases.

@​astrojs/sitemap@​3.1.6

Patch Changes

Changelog

Sourced from @​astrojs/sitemap's changelog.

3.1.6

Patch Changes

3.1.5

Patch Changes

3.1.4

Patch Changes

3.1.3

Patch Changes

Commits

Updates @fontsource-variable/inter from 5.0.17 to 5.0.20

Commits

Updates astro from 4.5.12 to 4.15.1

Release notes

Sourced from astro's releases.

[email protected]

Patch Changes

[email protected]

Minor Changes

  • #11729 1c54e63 Thanks @​ematipico! - Adds a new variant sync for the astro:config:setup hook's command property. This value is set when calling the command astro sync.

    If your integration previously relied on knowing how many variants existed for the command property, you must update your logic to account for this new option.

  • #11743 cce0894 Thanks @​ph1p! - Adds a new, optional property timeout for the client:idle directive.

    This value allows you to specify a maximum time to wait, in milliseconds, before hydrating a UI framework component, even if the page is not yet done with its initial load. This means you can delay hydration for lower-priority UI elements with more control to ensure your element is interactive within a specified time frame.

    <ShowHideButton client:idle={{ timeout: 500 }} />
  • #11677 cb356a5 Thanks @​ematipico! - Adds a new option fallbackType to i18n.routing configuration that allows you to control how fallback pages are handled.

    When i18n.fallback is configured, this new routing option controls whether to redirect to the fallback page, or to rewrite the fallback page's content in place.

    The "redirect" option is the default value and matches the current behavior of the existing fallback system.

    The option "rewrite" uses the new rewriting system to create fallback pages that render content on the original, requested URL without a browser refresh.

    For example, the following configuration will generate a page /fr/index.html that will contain the same HTML rendered by the page /en/index.html when src/pages/fr/index.astro does not exist.

    // astro.config.mjs
    export default defineConfig({
      i18n: {
        locals: ['en', 'fr'],
        defaultLocale: 'en',
        routing: {
          prefixDefaultLocale: true,
          fallbackType: 'rewrite',
        },
        fallback: {
          fr: 'en',
        },
      },
    });
  • #11708 62b0d20 Thanks @​martrapp! - Adds a new object swapFunctions to expose the necessary utility functions on astro:transitions/client that allow you to build custom swap functions to be used with view transitions.

... (truncated)

Changelog

Sourced from astro's changelog.

4.15.1

Patch Changes

4.15.0

Minor Changes

  • #11729 1c54e63 Thanks @​ematipico! - Adds a new variant sync for the astro:config:setup hook's command property. This value is set when calling the command astro sync.

    If your integration previously relied on knowing how many variants existed for the command property, you must update your logic to account for this new option.

  • #11743 cce0894 Thanks @​ph1p! - Adds a new, optional property timeout for the client:idle directive.

    This value allows you to specify a maximum time to wait, in milliseconds, before hydrating a UI framework component, even if the page is not yet done with its initial load. This means you can delay hydration for lower-priority UI elements with more control to ensure your element is interactive within a specified time frame.

    <ShowHideButton client:idle={{ timeout: 500 }} />
  • #11677 cb356a5 Thanks @​ematipico! - Adds a new option fallbackType to i18n.routing configuration that allows you to control how fallback pages are handled.

    When i18n.fallback is configured, this new routing option controls whether to redirect to the fallback page, or to rewrite the fallback page's content in place.

    The "redirect" option is the default value and matches the current behavior of the existing fallback system.

    The option "rewrite" uses the new rewriting system to create fallback pages that render content on the original, requested URL without a browser refresh.

    For example, the following configuration will generate a page /fr/index.html that will contain the same HTML rendered by the page /en/index.html when src/pages/fr/index.astro does not exist.

    // astro.config.mjs
    export default defineConfig({
      i18n: {
        locals: ['en', 'fr'],
        defaultLocale: 'en',
        routing: {
          prefixDefaultLocale: true,
          fallbackType: 'rewrite',
        },
        fallback: {
          fr: 'en',
        },
      },
    });

... (truncated)

Commits

Updates astro-icon from 1.1.0 to 1.1.1

Release notes

Sourced from astro-icon's releases.

[email protected]

Patch Changes

Changelog

Sourced from astro-icon's changelog.

1.1.1

Patch Changes

Commits

Updates @astrojs/check from 0.5.10 to 0.9.3

Release notes

Sourced from @​astrojs/check's releases.

@​astrojs/check@​0.9.3

Patch Changes

  • 28dfebe: Updates to the stable version of Volar 2.4.0
  • Updated dependencies [28dfebe]
    • @​astrojs/language-server@​2.14.1

@​astrojs/check@​0.9.2

Patch Changes

  • e8e18a8: Fixes an issue where errors inside script and style tags could be offset by a few characters when multi bytes characters were present in the file
  • Updated dependencies [e8e18a8]
    • @​astrojs/language-server@​2.13.2

@​astrojs/check@​0.9.1

Patch Changes

  • cc94bef: Revert a change to top-level returns that could prevent the return types of functions from being correct in certain cases
  • Updated dependencies [cc94bef]
    • @​astrojs/language-server@​2.13.1

@​astrojs/check@​0.9.0

Minor Changes

  • b65d6b4: Adds support for SCSS and LESS intellisense inside style tags

Patch Changes

  • Updated dependencies [3a60f00]
  • Updated dependencies [b65d6b4]
    • @​astrojs/language-server@​2.13.0

@​astrojs/check@​0.8.3

Patch Changes

  • 0a46801: Fixes a regression where errors could wrongly show (or not show) inside scripts and style tags
  • Updated dependencies [0a46801]
  • Updated dependencies [72f61e1]
    • @​astrojs/language-server@​2.12.7

@​astrojs/check@​0.8.2

Patch Changes

  • 708167e: Fixes script and style tags being wrongfully included in the generated TSX
  • Updated dependencies [708167e]
    • @​astrojs/language-server@​2.12.1

@​astrojs/check@​0.8.1

Patch Changes

... (truncated)

Changelog

Sourced from @​astrojs/check's changelog.

0.9.3

Patch Changes

  • 28dfebe: Updates to the stable version of Volar 2.4.0
  • Updated dependencies [28dfebe]
    • @​astrojs/language-server@​2.14.1

0.9.2

Patch Changes

  • e8e18a8: Fixes an issue where errors inside script and style tags could be offset by a few characters when multi bytes characters were present in the file
  • Updated dependencies [e8e18a8]
    • @​astrojs/language-server@​2.13.2

0.9.1

Patch Changes

  • cc94bef: Revert a change to top-level returns that could prevent the return types of functions from being correct in certain cases
  • Updated dependencies [cc94bef]
    • @​astrojs/language-server@​2.13.1

0.9.0

Minor Changes

  • b65d6b4: Adds support for SCSS and LESS intellisense inside style tags

Patch Changes

  • Updated dependencies [3a60f00]
  • Updated dependencies [b65d6b4]
    • @​astrojs/language-server@​2.13.0

0.8.3

Patch Changes

  • 0a46801: Fixes a regression where errors could wrongly show (or not show) inside scripts and style tags
  • Updated dependencies [0a46801]
  • Updated dependencies [72f61e1]
    • @​astrojs/language-server@​2.12.7

0.8.2

Patch Changes

  • 708167e: Fixes script and style tags being wrongfully included in the generated TSX

... (truncated)

Commits

Updates @astrojs/mdx from 2.2.2 to 3.1.5

Release notes

Sourced from @​astrojs/mdx's releases.

@​astrojs/mdx@​3.1.5

Patch Changes

  • #11818 88ef1d0 Thanks @​bluwy! - Fixes CSS in the layout component to be ordered first before any other components in the MDX file

@​astrojs/mdx@​3.1.4

Patch Changes

  • #11717 423614e Thanks @​bluwy! - Fixes stack trace location when failed to parse an MDX file with frontmatter

@​astrojs/mdx@​3.1.3

Patch Changes

  • Updated dependencies [49b5145]:
    • @​astrojs/markdown-remark@​5.2.0

@​astrojs/mdx@​3.1.2

Patch Changes

  • Updated dependencies [b6afe6a]:
    • @​astrojs/markdown-remark@​5.1.1

@​astrojs/mdx@​3.1.1

Patch Changes

Changelog

Sourced from @​astrojs/mdx's changelog.

3.1.5

Patch Changes

  • #11818 88ef1d0 Thanks @​bluwy! - Fixes CSS in the layout component to be ordered first before any other components in the MDX file

3.1.4

Patch Changes

  • #11717 423614e Thanks @​bluwy! - Fixes stack trace location when failed to parse an MDX file with frontmatter

3.1.3

Patch Changes

  • Updated dependencies [49b5145]:
    • @​astrojs/markdown-remark@​5.2.0

3.1.2

Patch Changes

  • Updated dependencies [b6afe6a]:
    • @​astrojs/markdown-remark@​5.1.1

3.1.1

Patch Changes

3.1.0

Minor Changes

  • #11144 803dd80 Thanks @​ematipico! - The integration now exposes a function called getContainerRenderer, that can be used inside the Container APIs to load the relative renderer.

    import { experimental_AstroContainer as AstroContainer } from 'astro/container';
    import ReactWrapper from '../src/components/ReactWrapper.astro';
    import { loadRenderers } from 'astro:container';
    import { getContainerRenderer } from '@astrojs/react';
    test('ReactWrapper with react renderer', async () => {
    const renderers = await loadRenderers([getContainerRenderer()]);
    const container = await AstroContainer.create({
    renderers,
    });
    const result = await container.renderToString(ReactWrapper);

... (truncated)

Commits

Updates @astrojs/partytown from 2.0.4 to 2.1.2

Release notes

Sourced from @​astrojs/partytown's releases.

@​astrojs/partytown@​2.1.2

Patch Changes

@​astrojs/partytown@​2.1.1

Patch Changes

  • #11083 416c4ac Thanks @​V3RON! - Prevent Partytown from crashing when View Transitions are enabled

    When View Transitions are turned on, Partytown executes on every transition. It's not meant to be like that, and therefore it breaks the integration completely. Starting from now, Partytown will be executed only once.

Changelog

Sourced from @​astrojs/partytown's changelog.

2.1.2

Patch Changes

2.1.1

Patch Changes

  • #11083 416c4ac Thanks @​V3RON! - Prevent Partytown from crashing when View Transitions are enabled

    When View Transitions are turned on, Partytown executes on every transition. It's not meant to be like that, and therefore it breaks the integration completely. Starting from now, Partytown will be executed only once.

2.1.0

Minor Changes

  • #10833 8d5f3e8 Thanks @​renovate! - Updates the @builder.io/partytown dependency to v0.10. This should not affect projects in most cases.
Commits

Updates @iconify-json/flat-color-icons from 1.1.10 to 1.1.11

Commits

Updates @iconify-json/tabler from 1.1.109 to 1.1.121

Commits
  • d51fc6b Update OpenMoji
  • 3afa403 Update Font Awesome 5 Brands, Font Awesome 5 Regular, Font Awesome 5 Solid, M...
  • 27975d9 Update OpenMoji
  • cc4e286 Update Google Material Icons
  • 0bc21e1 Update OpenMoji
  • b26225e Update Noto Emoji, OpenMoji, Simple Icons
  • 66c2289 Update OpenMoji
  • 7e72b42 Update Material Design Icons, OpenMoji
  • 0aacbc3 Update Noto Emoji, OpenMoji
  • 6a2fa08 Update Material Design Icons
  • Additional commits viewable in compare view

Updates @tailwindcss/typography from 0.5.12 to 0.5.15

Release notes

Sourced from @​tailwindcss/typography's releases.

v0.5.15

Fixed

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

v0.5.14

  • Fix table text alignment (#346)

v0.5.13

Fixed

  • Don't apply margins to <br> elements contained in an <li> in FF (#350)
Changelog

Sourced from @​tailwindcss/typography's changelog.

[0.5.15] - 2024-08-28

Fixed

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

[0.5.14] - 2024-08-07

Fixed

  • Fix table text alignment (#346)

[0.5.13] - 2024-04-26

Fixed

  • Don't apply margins to <br> elements contained in an <li> in FF (#350)
Commits

Updates @typescript-eslint/eslint-plugin from 7.4.0 to 8.3.0

Release notes

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

v8.3.0

8.3.0 (2024-08-26)

🚀 Features

  • eslint-plugin: [no-deprecation] add rule (#9783)
  • typescript-estree: replace globby w/ fast-glob (#9518)
  • typescript-estree: reload project service once when file config isn't found (#9853)

🩹 Fixes

  • ast-spec: use Expression in argument of ThrowStatement (#9632)
  • eslint-plugin: [no-unnecessary-template-expression] add missing parentheses in autofix (#8673)
  • eslint-plugin: [no-unnecessary-type-parameters] check mapped alias type arguments (#9741)
  • utils: add missing TSSatisfiesExpression in RuleListenerBaseSelectors (#9832)
  • utils: add TSDeclareFunction to functionTypeTypes (#9788)

❤️ Thank You

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

v8.2.0

8.2.0 (2024-08-19)

🚀 Features

  • eslint-plugin: add suggestion to require-await to remove async keyword (#9718)
  • typescript-estree: special-case error for parserOptions.project and project references (#9686)

🩹 Fixes

  • eslint-plugin: [use-unknown-in-catch-callback-variable] flag second argument of .then (#9059)
  • eslint-plugin: [no-unnecessary-type-assertion] conflict with TS for variables used before assignment (#9209)
  • eslint-plugin: delete [] in message if ReadOnly is detected (#9513)
  • eslint-plugin: [no-redundant-type-constituents] differentiate a types-error any from a true any (#9555)
  • eslint-plugin: [no-unnecessary-type-parameters] check mapped constraint types if necessary (#9740)
  • eslint-plugin: [no-unsafe-enum-comparison] add logic to see through intersections (#9777)
  • typescript-estree: pass in tsconfigRootDir as cwd to getParsedConfigFile (#9804)

❤️ Thank You

... (truncated)

Changelog

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

8.3.0 (2024-08-26)

🚀 Features

  • eslint-plugin: [no-deprecation] add rule

🩹 Fixes

  • eslint-plugin: [no-unnecessary-template-expression] add missing parentheses in autofix

  • eslint-plugin: [no-unnecessary-type-parameters] check mapped alias type arguments

  • utils: add TSDeclareFunction to functionTypeTypes

  • ast-spec: use Expression in argument of ThrowStatement

❤️ Thank You

  • Abraham Guo
  • Daichi Kamiyama
  • Josh Goldberg ✨
  • Kim Sang Du
  • Sukka
  • Vida Xie

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

8.2.0 (2024-08-19)

🚀 Features

  • eslint-plugin: add suggestion to require-await to remove async keyword

🩹 Fixes

  • eslint-plugin: [use-unknown-in-catch-callback-variable] flag second argument of .then

  • eslint-plugin: [no-unnecessary-type-assertion] conflict with TS for variables used before assignment

  • eslint-plugin: delete [] in message if ReadOnly is detected

  • eslint-plugin: [no-redundant-type-constituents] differentiate a types-error any from a true any

  • eslint-plugin: [no-unnecessary-type-parameters] check mapped constraint types if necessary

... (truncated)

Commits
  • ef2eab1 chore(release): publish 8.3.0
  • fd55358 chore: enable sonarjs/no-duplicated-branches (#9821)
  • 9f70ed1 fix(ast-spec): use Expression in argument of ThrowStatement (

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

| Package | From | To |
| --- | --- | --- |
| [@astrojs/rss](https:/withastro/astro/tree/HEAD/packages/astro-rss) | `4.0.5` | `4.0.7` |
| [@astrojs/sitemap](https:/withastro/astro/tree/HEAD/packages/integrations/sitemap) | `3.1.2` | `3.1.6` |
| [@fontsource-variable/inter](https:/fontsource/font-files/tree/HEAD/fonts/variable/inter) | `5.0.17` | `5.0.20` |
| [astro](https:/withastro/astro/tree/HEAD/packages/astro) | `4.5.12` | `4.15.1` |
| [astro-icon](https:/natemoo-re/astro-icon/tree/HEAD/packages/core) | `1.1.0` | `1.1.1` |
| [@astrojs/check](https:/withastro/language-tools/tree/HEAD/packages/astro-check) | `0.5.10` | `0.9.3` |
| [@astrojs/mdx](https:/withastro/astro/tree/HEAD/packages/integrations/mdx) | `2.2.2` | `3.1.5` |
| [@astrojs/partytown](https:/withastro/astro/tree/HEAD/packages/integrations/partytown) | `2.0.4` | `2.1.2` |
| [@iconify-json/flat-color-icons](https:/iconify/icon-sets) | `1.1.10` | `1.1.11` |
| [@iconify-json/tabler](https:/iconify/icon-sets) | `1.1.109` | `1.1.121` |
| [@tailwindcss/typography](https:/tailwindlabs/tailwindcss-typography) | `0.5.12` | `0.5.15` |
| [@typescript-eslint/eslint-plugin](https:/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `7.4.0` | `8.3.0` |
| [@typescript-eslint/parser](https:/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `7.4.0` | `8.3.0` |
| [eslint](https:/eslint/eslint) | `8.57.0` | `9.9.1` |
| [eslint-plugin-astro](https:/ota-meshi/eslint-plugin-astro) | `0.33.1` | `1.2.3` |
| [eslint-plugin-jsx-a11y](https:/jsx-eslint/eslint-plugin-jsx-a11y) | `6.8.0` | `6.9.0` |
| [postcss-html](https:/ota-meshi/postcss-html) | `1.6.0` | `1.7.0` |
| [prettier](https:/prettier/prettier) | `3.2.5` | `3.3.3` |
| [prettier-plugin-astro](https:/withastro/prettier-plugin-astro) | `0.13.0` | `0.14.1` |
| [stylelint](https:/stylelint/stylelint) | `16.3.1` | `16.9.0` |
| [stylelint-config-standard](https:/stylelint/stylelint-config-standard) | `36.0.0` | `36.0.1` |
| [tailwind-merge](https:/dcastil/tailwind-merge) | `2.2.2` | `2.5.2` |
| [tailwindcss](https:/tailwindlabs/tailwindcss) | `3.4.3` | `3.4.10` |
| [typescript](https:/Microsoft/TypeScript) | `5.4.3` | `5.5.4` |



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

Updates `@astrojs/sitemap` from 3.1.2 to 3.1.6
- [Release notes](https:/withastro/astro/releases)
- [Changelog](https:/withastro/astro/blob/main/packages/integrations/sitemap/CHANGELOG.md)
- [Commits](https:/withastro/astro/commits/@astrojs/[email protected]/packages/integrations/sitemap)

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

Updates `astro` from 4.5.12 to 4.15.1
- [Release notes](https:/withastro/astro/releases)
- [Changelog](https:/withastro/astro/blob/main/packages/astro/CHANGELOG.md)
- [Commits](https:/withastro/astro/commits/[email protected]/packages/astro)

Updates `astro-icon` from 1.1.0 to 1.1.1
- [Release notes](https:/natemoo-re/astro-icon/releases)
- [Changelog](https:/natemoo-re/astro-icon/blob/main/packages/core/CHANGELOG.md)
- [Commits](https:/natemoo-re/astro-icon/commits/[email protected]/packages/core)

Updates `@astrojs/check` from 0.5.10 to 0.9.3
- [Release notes](https:/withastro/language-tools/releases)
- [Changelog](https:/withastro/language-tools/blob/main/packages/astro-check/CHANGELOG.md)
- [Commits](https:/withastro/language-tools/commits/@astrojs/[email protected]/packages/astro-check)

Updates `@astrojs/mdx` from 2.2.2 to 3.1.5
- [Release notes](https:/withastro/astro/releases)
- [Changelog](https:/withastro/astro/blob/main/packages/integrations/mdx/CHANGELOG.md)
- [Commits](https:/withastro/astro/commits/@astrojs/[email protected]/packages/integrations/mdx)

Updates `@astrojs/partytown` from 2.0.4 to 2.1.2
- [Release notes](https:/withastro/astro/releases)
- [Changelog](https:/withastro/astro/blob/main/packages/integrations/partytown/CHANGELOG.md)
- [Commits](https:/withastro/astro/commits/@astrojs/[email protected]/packages/integrations/partytown)

Updates `@iconify-json/flat-color-icons` from 1.1.10 to 1.1.11
- [Commits](iconify/icon-sets@1.1.10...1.1.11)

Updates `@iconify-json/tabler` from 1.1.109 to 1.1.121
- [Commits](iconify/icon-sets@1.1.109...1.1.121)

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

Updates `@typescript-eslint/eslint-plugin` from 7.4.0 to 8.3.0
- [Release notes](https:/typescript-eslint/typescript-eslint/releases)
- [Changelog](https:/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https:/typescript-eslint/typescript-eslint/commits/v8.3.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 7.4.0 to 8.3.0
- [Release notes](https:/typescript-eslint/typescript-eslint/releases)
- [Changelog](https:/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https:/typescript-eslint/typescript-eslint/commits/v8.3.0/packages/parser)

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

Updates `eslint-plugin-astro` from 0.33.1 to 1.2.3
- [Release notes](https:/ota-meshi/eslint-plugin-astro/releases)
- [Changelog](https:/ota-meshi/eslint-plugin-astro/blob/main/CHANGELOG.md)
- [Commits](ota-meshi/eslint-plugin-astro@v0.33.1...v1.2.3)

Updates `eslint-plugin-jsx-a11y` from 6.8.0 to 6.9.0
- [Release notes](https:/jsx-eslint/eslint-plugin-jsx-a11y/releases)
- [Changelog](https:/jsx-eslint/eslint-plugin-jsx-a11y/blob/main/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-jsx-a11y@v6.8.0...v6.9.0)

Updates `postcss-html` from 1.6.0 to 1.7.0
- [Release notes](https:/ota-meshi/postcss-html/releases)
- [Commits](ota-meshi/postcss-html@v1.6.0...v1.7.0)

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

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

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

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

Updates `tailwind-merge` from 2.2.2 to 2.5.2
- [Release notes](https:/dcastil/tailwind-merge/releases)
- [Commits](dcastil/tailwind-merge@v2.2.2...v2.5.2)

Updates `tailwindcss` from 3.4.3 to 3.4.10
- [Release notes](https:/tailwindlabs/tailwindcss/releases)
- [Changelog](https:/tailwindlabs/tailwindcss/blob/v3.4.10/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss@v3.4.3...v3.4.10)

Updates `typescript` from 5.4.3 to 5.5.4
- [Release notes](https:/Microsoft/TypeScript/releases)
- [Changelog](https:/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.4.3...v5.5.4)

---
updated-dependencies:
- dependency-name: "@astrojs/rss"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: js-dependencies
- dependency-name: "@astrojs/sitemap"
  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-minor
  dependency-group: js-dependencies
- dependency-name: astro-icon
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: js-dependencies
- dependency-name: "@astrojs/check"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  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-minor
  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-major
  dependency-group: js-dependencies
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: js-dependencies
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: js-dependencies
- dependency-name: eslint-plugin-astro
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: js-dependencies
- dependency-name: eslint-plugin-jsx-a11y
  dependency-type: direct:development
  update-type: version-update:semver-minor
  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: prettier-plugin-astro
  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-patch
  dependency-group: js-dependencies
- dependency-name: tailwind-merge
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-dependencies
- dependency-name: tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  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 Sep 1, 2024
Copy link

vercel bot commented Sep 1, 2024

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

Name Status Preview Comments Updated (UTC)
vipyrsec-site ❌ Failed (Inspect) Sep 1, 2024 6:57am

Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 29, 2024

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

@dependabot dependabot bot closed this Sep 29, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/js-dependencies-0d8b66e4ed branch September 29, 2024 17:29
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