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 npm group across 1 directory with 22 updates #469

Merged
merged 2 commits into from
Sep 9, 2024

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the npm group with 22 updates in the / directory:

Package From To
@astrojs/preact 3.0.2 3.5.2
@preact/signals 1.2.1 1.3.0
clsx 2.0.0 2.1.1
preact 10.17.1 10.23.2
sharp 0.32.6 0.33.5
@astrojs/check 0.8.1 0.9.3
@astrojs/ts-plugin 1.1.3 1.10.1
@types/lodash-es 4.17.9 4.17.12
@types/mapbox__rehype-prism 0.8.0 0.8.3
@types/react 18.2.21 18.3.5
autoprefixer 10.4.15 10.4.20
concurrently 8.2.1 8.2.2
eslint-config-prettier 9.0.0 9.1.0
eslint-plugin-jsx-a11y 6.7.1 6.9.0
eslint-plugin-react 7.33.2 7.35.0
eslint-plugin-react-hooks 4.6.0 4.6.2
postcss 8.4.31 8.4.42
postcss-html 1.5.0 1.7.0
prettier 3.0.3 3.3.3
prettier-plugin-astro 0.12.0 0.14.1
typescript 5.2.2 5.5.4
typescript-plugin-css-modules 5.0.1 5.1.0

Updates @astrojs/preact from 3.0.2 to 3.5.2

Release notes

Sourced from @​astrojs/preact's releases.

@​astrojs/preact@​3.5.2

Patch Changes

  • #11834 5f2536b Thanks @​ph1p! - Preact signals are now serialized correctly in arrays when they are given to components.

@​astrojs/preact@​3.5.1

Patch Changes

@​astrojs/preact@​3.5.0

Minor Changes

  • #11234 4385bf7 Thanks @​ematipico! - Adds a new function called addServerRenderer to the Container API. Use this function to manually store renderers inside the instance of your container.

    This new function should be preferred when using the Container API in environments like on-demand pages:

    import type { APIRoute } from 'astro';
    import { experimental_AstroContainer } from 'astro/container';
    import reactRenderer from '@astrojs/react/server.js';
    import vueRenderer from '@astrojs/vue/server.js';
    import ReactComponent from '../components/button.jsx';
    import VueComponent from '../components/button.vue';
    // MDX runtime is contained inside the Astro core
    import mdxRenderer from 'astro/jsx/server.js';
    // In case you need to import a custom renderer
    import customRenderer from '../renderers/customRenderer.js';
    export const GET: APIRoute = async (ctx) => {
    const container = await experimental_AstroContainer.create();
    container.addServerRenderer({ renderer: reactRenderer });
    container.addServerRenderer({ renderer: vueRenderer });
    container.addServerRenderer({ renderer: customRenderer });
    // You can pass a custom name too
    container.addServerRenderer({
    name: 'customRenderer',
    renderer: customRenderer,
    });
    const vueComponent = await container.renderToString(VueComponent);
    return await container.renderToResponse(Component);
    };

Changelog

Sourced from @​astrojs/preact's changelog.

3.5.2

Patch Changes

  • #11834 5f2536b Thanks @​ph1p! - Preact signals are now serialized correctly in arrays when they are given to components.

3.5.1

Patch Changes

3.5.0

Minor Changes

  • #11234 4385bf7 Thanks @​ematipico! - Adds a new function called addServerRenderer to the Container API. Use this function to manually store renderers inside the instance of your container.

    This new function should be preferred when using the Container API in environments like on-demand pages:

    import type { APIRoute } from 'astro';
    import { experimental_AstroContainer } from 'astro/container';
    import reactRenderer from '@astrojs/react/server.js';
    import vueRenderer from '@astrojs/vue/server.js';
    import ReactComponent from '../components/button.jsx';
    import VueComponent from '../components/button.vue';
    // MDX runtime is contained inside the Astro core
    import mdxRenderer from 'astro/jsx/server.js';
    // In case you need to import a custom renderer
    import customRenderer from '../renderers/customRenderer.js';
    export const GET: APIRoute = async (ctx) => {
    const container = await experimental_AstroContainer.create();
    container.addServerRenderer({ renderer: reactRenderer });
    container.addServerRenderer({ renderer: vueRenderer });
    container.addServerRenderer({ renderer: customRenderer });
    // You can pass a custom name too
    container.addServerRenderer({
    name: 'customRenderer',
    renderer: customRenderer,
    });
    const vueComponent = await container.renderToString(VueComponent);
    return await container.renderToResponse(Component);
    };

3.4.0

... (truncated)

Commits

Updates @preact/signals from 1.2.1 to 1.3.0

Release notes

Sourced from @​preact/signals's releases.

@​preact/signals@​1.3.0

Minor Changes

  • #578 931404e Thanks @​JoviDeCroock! - Allow for passing no argument to the signal and the type to be automatically inferred as T | undefined

Patch Changes

  • Updated dependencies [931404e]:
    • @​preact/signals-core@​1.7.0

@​preact/signals@​1.2.3

Patch Changes

@​preact/signals-core 1.2.2

Patch Changes

@​preact/signals@​1.2.2

1.2.2

Patch Changes

Changelog

Sourced from @​preact/signals's changelog.

1.3.0

Minor Changes

  • #578 931404e Thanks @​JoviDeCroock! - Allow for passing no argument to the signal and the type to be automatically inferred as T | undefined

Patch Changes

  • Updated dependencies [931404e]:
    • @​preact/signals-core@​1.7.0

1.2.3

Patch Changes

1.2.2

Patch Changes

Commits

Updates clsx from 2.0.0 to 2.1.1

Release notes

Sourced from clsx's releases.

v2.1.1

Patches

  • (types) Include bigint in ClassValue type: (#96): 3d960ab Accommodates recent @types/react changes to ReactNode. Thank you @​ViliamKopecky~!

Chores

  • Add licenses.dev badge: 684509c This service recursively analyzes entire dependency graphs to ensure that a package (or your project) is using permissive licenses. For example, here's a results table for polka@next and a larger astro example.

Full Changelog: lukeed/clsx@v2.1.0...v2.1.1

v2.1.0

Features

  • Add new clsx/lite submodule for string-only usage: 1a49142

    This is a 140b version of clsx that is ideal for Tailwind and/or React contexts, which typically follow this clsx usage pattern:

    clsx('foo bar', props.maybe && 'conditional classes', props.className);

    Important: This clsx/lite module ignores all non-string arguments and is therefore not a 1:1 replacement for clsx itself!

    import { clsx } from 'clsx';
    import { clsx as lite } from 'clsx/lite';
    // strings-only usage is identical
    clsx('foo', null, 'bar', true && 'baz'); //=> "foo bar baz"
    lite('foo', null, 'bar', true && 'baz'); //=> "foo bar baz"
    // clsx/lite ignores all non-strings
    clsx('foo', { a: true, b: false, c: true }); //=> "foo a c"
    lite('foo', { a: true, b: false, c: true }); //=> "foo"


Full Changelog: lukeed/clsx@v2.0.1...v2.1.0

v2.0.1

Patches

  • (perf) Cache arguments.length & array.length for 6% performance gain (#26): deff09b

... (truncated)

Commits

Updates preact from 10.17.1 to 10.23.2

Release notes

Sourced from preact's releases.

10.23.2

Fixes

Types

Maintenance

10.23.1

Fixes

  • Fix debug-issue in testing libraries where there might not be a DOM node (#4454, thanks @​JoviDeCroock)

10.23.0

Features

This adds support for returning a function in functional refs, example

<input
  ref={(ref) => {
    // Assign ref, do something with it
    return () => {
      // ref cleanup, when the element unmounts
      // we run the cleanup
    };
  }}
/>

Fixes

Types

  • Add missing types ElementType and ComponentPropsWithoutRef (#4433, thanks @​hamza0867)

... (truncated)

Commits

Updates sharp from 0.32.6 to 0.33.5

Changelog

Sourced from sharp's changelog.

v0.33.5 - 16th August 2024

  • Upgrade to libvips v8.15.3 for upstream bug fixes.

  • Add pageHeight and pages to response of multi-page output. #3411

  • Ensure option to force use of a globally-installed libvips works correctly. #4111 @​project0

  • Minimise use of engines property to improve yarn v1 support. #4130

  • Ensure sharp.format.heif includes only AVIF when using prebuilt binaries. #4132

  • Add support to recomb operation for 4x4 matrices. #4147 @​ton11797

  • Expose PNG text chunks as comments metadata. #4157 @​nkeynes

  • Expose optional precision and minAmplitude parameters of blur operation. #4168 #4172 @​marcosc90

  • Ensure keepIccProfile avoids colour transformation where possible. #4186

  • TypeScript: chromaSubsampling metadata is optional. #4191 @​DavidVaness

v0.33.4 - 16th May 2024

  • Remove experimental status from pipelineColourspace.

  • Reduce default concurrency when musl thread over-subscription detected.

  • TypeScript: add missing definitions for OverlayOptions. #4048 @​ike-gg

  • Install: add advanced option to force use of a globally-installed libvips. #4060

... (truncated)

Commits
  • fc32e0b Release v0.33.5
  • 0546e48 Docs: changelog entry for #4191
  • ab65b7a TypeScript: chromaSubsampling can be undefined (#4191)
  • 2474bd4 Prerelease v0.33.5-rc.1
  • ff2e689 Remove yarn v1 specifics from help text
  • 6327f13 CI: Add yarn v1 to packaging tests
  • f1e69a2 Prerelease v0.33.5-rc.0
  • 3c14dbb Minimise use of engines property to improve yarn v1 support
  • 82cebc3 Upgrade to libvips v8.15.3 for Linux ARMv6
  • ad36fa0 Ensure emnapiInit function is exported
  • Additional commits viewable in compare view

Updates @astrojs/check from 0.8.1 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
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/ts-plugin from 1.1.3 to 1.10.1

Release notes

Sourced from @​astrojs/ts-plugin's releases.

@​astrojs/ts-plugin@​1.10.1

Patch Changes

  • 28dfebe: Updates to the stable version of Volar 2.4.0
  • Updated dependencies [28dfebe]
    • @​astrojs/yaml2ts@​0.2.1

@​astrojs/ts-plugin@​1.10.0

Minor Changes

  • d624646: Adds support for Content Collection Intellisense

Patch Changes

  • Updated dependencies [d624646]
    • @​astrojs/yaml2ts@​0.2.0

@​astrojs/ts-plugin@​1.9.3

Patch Changes

  • e5732ff: Updates internal dependencies

@​astrojs/ts-plugin@​1.9.2

Patch Changes

  • 5186329: Update internal dependencies

@​astrojs/ts-plugin@​1.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

@​astrojs/ts-plugin@​1.9.0

Minor Changes

  • b8a6af3: Upgrades to the latest version of Volar, the underlying framework powering the Astro language server. This update should fix some of the recent issues regarding intellisense inside script tags.

@​astrojs/ts-plugin@​1.8.0

Minor Changes

  • c8af6db: Upgrades the language server to use the latest version of Volar. This changes should have no negative impacts on the experience.

@​astrojs/ts-plugin@​1.7.0

Minor Changes

  • 65d3425: Upgrades the language server to use Volar 2.2. This changes should have no negative impacts on the experience.

@​astrojs/ts-plugin@​1.6.1

Patch Changes

... (truncated)

Changelog

Sourced from @​astrojs/ts-plugin's changelog.

1.10.1

Patch Changes

  • 28dfebe: Updates to the stable version of Volar 2.4.0
  • Updated dependencies [28dfebe]
    • @​astrojs/yaml2ts@​0.2.1

1.10.0

Minor Changes

  • d624646: Adds support for Content Collection Intellisense

Patch Changes

  • Updated dependencies [d624646]
    • @​astrojs/yaml2ts@​0.2.0

1.9.3

Patch Changes

  • e5732ff: Updates internal dependencies

1.9.2

Patch Changes

  • 5186329: Update internal dependencies

1.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

1.9.0

Minor Changes

  • b8a6af3: Upgrades to the latest version of Volar, the underlying framework powering the Astro language server. This update should fix some of the recent issues regarding intellisense inside script tags.

1.8.0

Minor Changes

  • c8af6db: Upgrades the language server to use the latest version of Volar. This changes should have no negative impacts on the experience.

1.7.0

... (truncated)

Commits

Updates @types/lodash-es from 4.17.9 to 4.17.12

Commits

Updates @types/mapbox__rehype-prism from 0.8.0 to 0.8.3

Commits

Updates @types/react from 18.2.21 to 18.3.5

Commits

Updates autoprefixer from 10.4.15 to 10.4.20

Release notes

Sourced from autoprefixer's releases.

10.4.20

  • Fixed fit-content prefix for Firefox.

10.4.19

  • Removed end value has mixed support, consider using flex-end warning since end/start now have good support.

10.4.18

  • Fixed removing -webkit-box-orient on -webkit-line-clamp (@​Goodwine).

10.4.17

  • Fixed user-select: contain prefixes.

10.4.16

Changelog

Sourced from autoprefixer's changelog.

10.4.20

  • Fixed fit-content prefix for Firefox.

10.4.19

  • Removed end value has mixed support, consider using flex-end warning since end/start now have good support.

10.4.18

  • Fixed removing -webkit-box-orient on -webkit-line-clamp (@​Goodwine).

10.4.17

  • Fixed user-select: contain prefixes.

10.4.16

  • Improved performance (by Romain Menke).
  • Fixed docs (by Christian Oliff).
Commits

Updates concurrently from 8.2.1 to 8.2.2

Release notes

Sourced from concurrently's releases.

v8.2.2

What's Changed

New Contributors

Full Changelog: open-cli-tools/concurrently@v8.2.1...v8.2.2

Commits

Updates eslint-config-prettier from 9.0.0 to 9.1.0

Changelog

Sourced from eslint-config-prettier's changelog.

Version 9.1.0 (2023-12-02)

  • Added: [unicorn/template-indent], (as a [special rule][unicorn/template-indent-special]). Thanks to Gürgün Dayıoğlu (@​gurgunday)!
  • Changed: All the [formatting rules that were deprecated in ESLint 8.53.0][deprecated-8.53.0] are now excluded if you set the ESLINT_CONFIG_PRETTIER_NO_DEPRECATED environment variable.
Commits
  • 40c7f3d eslint-config-prettier v9.1.0
  • 4110dff Merge pull request #271 from prettier/deprecated
  • 6d0bd92 Update tests to handle newly deprecated rules
  • 4c876b9 Move rules deprecated in ESLint 8.53.0 to the deprecated section
  • 24445c0 Use specialRule constant
  • 7827196 Group deprecated and removed rules by version
  • 48f804c Roll back to ESLint 8.52.0 for now
  • 16f03b8 Update Prettier
  • b06d618 Update npm packages
  • 25fc427 turn off unicorn/template-indent (#269)
  • Additional commits viewable in compare view

Updates eslint-plugin-jsx-a11y from 6.7.1 to 6.9.0

Release notes

Sourced from eslint-plugin-jsx-a11y's releases.

v6.9.0

Added

  • add support for Flat Config 6b5f096
  • no-noninteractive-element-to-interactive-role: allow menuitemradio and menuitemcheckbox on <li> c0733f9

Fixed

Changed

Full Changelog: jsx-eslint/eslint-plugin-jsx-a11y@v6.8.0...v6.9.0

v6.8.0

Full Changelog: jsx-eslint/eslint-plugin-jsx-a11y@v6.7.1...v6.8.0

Changelog

Sourced from eslint-plugin-jsx-a11y's changelog.

v6.9.0 - 2024-06-19

Fixed

Commits

  • [New] add support for Flat Config 6b5f096
  • Revert "[Fix] isNonInteractiveElement: Upgrade aria-query to 5.3.0 and axobject-query to 3.2.1" 75d5dd7
  • [Robustness] use safe-regex-test 4c7e781
  • [actions] update actions/checkout 51a1ca7
  • [Dev Deps] update @babel/cli, @babel/core, @babel/eslint-parser, @babel/plugin-transform-flow-strip-types, @babel/register, eslint-doc-generator, object.entries 1271ac1
  • [Dev Deps] update @babel/cli, @babel/core, @babel/register, aud, eslint-plugin-import, npmignore, object.assign 540cb7a
  • [Deps] update @babel/runtime, array-includes, es-iterator-helpers, hasown, object.fromentries, safe-regex-test

Bumps the npm group with 22 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@astrojs/preact](https://github.com/withastro/astro/tree/HEAD/packages/integrations/preact) | `3.0.2` | `3.5.2` |
| [@preact/signals](https://github.com/preactjs/signals/tree/HEAD/packages/preact) | `1.2.1` | `1.3.0` |
| [clsx](https://github.com/lukeed/clsx) | `2.0.0` | `2.1.1` |
| [preact](https://github.com/preactjs/preact) | `10.17.1` | `10.23.2` |
| [sharp](https://github.com/lovell/sharp) | `0.32.6` | `0.33.5` |
| [@astrojs/check](https://github.com/withastro/language-tools/tree/HEAD/packages/astro-check) | `0.8.1` | `0.9.3` |
| [@astrojs/ts-plugin](https://github.com/withastro/language-tools/tree/HEAD/packages/ts-plugin) | `1.1.3` | `1.10.1` |
| [@types/lodash-es](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash-es) | `4.17.9` | `4.17.12` |
| [@types/mapbox__rehype-prism](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/mapbox__rehype-prism) | `0.8.0` | `0.8.3` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.2.21` | `18.3.5` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.15` | `10.4.20` |
| [concurrently](https://github.com/open-cli-tools/concurrently) | `8.2.1` | `8.2.2` |
| [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | `9.0.0` | `9.1.0` |
| [eslint-plugin-jsx-a11y](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y) | `6.7.1` | `6.9.0` |
| [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) | `7.33.2` | `7.35.0` |
| [eslint-plugin-react-hooks](https://github.com/facebook/react/tree/HEAD/packages/eslint-plugin-react-hooks) | `4.6.0` | `4.6.2` |
| [postcss](https://github.com/postcss/postcss) | `8.4.31` | `8.4.42` |
| [postcss-html](https://github.com/ota-meshi/postcss-html) | `1.5.0` | `1.7.0` |
| [prettier](https://github.com/prettier/prettier) | `3.0.3` | `3.3.3` |
| [prettier-plugin-astro](https://github.com/withastro/prettier-plugin-astro) | `0.12.0` | `0.14.1` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.2.2` | `5.5.4` |
| [typescript-plugin-css-modules](https://github.com/mrmckeb/typescript-plugin-css-modules) | `5.0.1` | `5.1.0` |



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

Updates `@preact/signals` from 1.2.1 to 1.3.0
- [Release notes](https://github.com/preactjs/signals/releases)
- [Changelog](https://github.com/preactjs/signals/blob/main/packages/preact/CHANGELOG.md)
- [Commits](https://github.com/preactjs/signals/commits/@preact/signals@1.3.0/packages/preact)

Updates `clsx` from 2.0.0 to 2.1.1
- [Release notes](https://github.com/lukeed/clsx/releases)
- [Commits](lukeed/clsx@v2.0.0...v2.1.1)

Updates `preact` from 10.17.1 to 10.23.2
- [Release notes](https://github.com/preactjs/preact/releases)
- [Commits](preactjs/preact@10.17.1...10.23.2)

Updates `sharp` from 0.32.6 to 0.33.5
- [Release notes](https://github.com/lovell/sharp/releases)
- [Changelog](https://github.com/lovell/sharp/blob/main/docs/changelog.md)
- [Commits](lovell/sharp@v0.32.6...v0.33.5)

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

Updates `@astrojs/ts-plugin` from 1.1.3 to 1.10.1
- [Release notes](https://github.com/withastro/language-tools/releases)
- [Changelog](https://github.com/withastro/language-tools/blob/main/packages/ts-plugin/CHANGELOG.md)
- [Commits](https://github.com/withastro/language-tools/commits/@astrojs/ts-plugin@1.10.1/packages/ts-plugin)

Updates `@types/lodash-es` from 4.17.9 to 4.17.12
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/lodash-es)

Updates `@types/mapbox__rehype-prism` from 0.8.0 to 0.8.3
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/mapbox__rehype-prism)

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

Updates `autoprefixer` from 10.4.15 to 10.4.20
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](postcss/autoprefixer@10.4.15...10.4.20)

Updates `concurrently` from 8.2.1 to 8.2.2
- [Release notes](https://github.com/open-cli-tools/concurrently/releases)
- [Commits](open-cli-tools/concurrently@v8.2.1...v8.2.2)

Updates `eslint-config-prettier` from 9.0.0 to 9.1.0
- [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/eslint-config-prettier@v9.0.0...v9.1.0)

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

Updates `eslint-plugin-react` from 7.33.2 to 7.35.0
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases)
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-react@v7.33.2...v7.35.0)

Updates `eslint-plugin-react-hooks` from 4.6.0 to 4.6.2
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/packages/eslint-plugin-react-hooks/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/HEAD/packages/eslint-plugin-react-hooks)

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

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

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

Updates `prettier-plugin-astro` from 0.12.0 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.12.0...v0.14.1)

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

Updates `typescript-plugin-css-modules` from 5.0.1 to 5.1.0
- [Release notes](https://github.com/mrmckeb/typescript-plugin-css-modules/releases)
- [Commits](mrmckeb/typescript-plugin-css-modules@v5.0.1...v5.1.0)

---
updated-dependencies:
- dependency-name: "@astrojs/preact"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@preact/signals"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: clsx
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: preact
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: sharp
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@astrojs/check"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@astrojs/ts-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@types/lodash-es"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@types/mapbox__rehype-prism"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: autoprefixer
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: concurrently
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: eslint-config-prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: eslint-plugin-jsx-a11y
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: eslint-plugin-react
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: eslint-plugin-react-hooks
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: postcss-html
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: prettier-plugin-astro
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: typescript-plugin-css-modules
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Sep 1, 2024
@Acconut Acconut merged commit affa373 into main Sep 9, 2024
1 check passed
@Acconut Acconut deleted the dependabot/npm_and_yarn/npm-9a82cff6ce branch September 9, 2024 11:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant