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 with 23 updates #465

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the npm group with 23 updates:

Package From To
@astrojs/preact 3.0.2 3.5.1
@preact/signals 1.2.1 1.3.0
clsx 2.0.0 2.1.1
preact 10.17.1 10.23.1
sharp 0.32.6 0.33.4
@astrojs/check 0.8.1 0.9.1
@astrojs/ts-plugin 1.1.3 1.9.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.3
autoprefixer 10.4.15 10.4.19
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.40
postcss-html 1.5.0 1.7.0
postcss-preset-env 9.1.3 9.6.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.1

Release notes

Sourced from @​astrojs/preact's releases.

@​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);
    };

@​astrojs/preact@​3.4.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';

... (truncated)

Changelog

Sourced from @​astrojs/preact's changelog.

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

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.

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

Release notes

Sourced from preact's releases.

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

Maintenance

10.22.1

Fixes

... (truncated)

Commits
  • 9351588 10.23.1 (#4455)
  • f0e4917 Fix issue in testing libraries where there might not be a DOM node (#4454)
  • 2f1712a 10.23.0 (#4450)
  • f573891 fix(child-diffing): Should shift keyed fragmented lists (#4448)
  • 16c7fb7 Fix debug check not firing when it has a parent (#4449)
  • a75b217 Publish fixes for streaming renders (#4446)
  • f7f9d9b Merge pull request #4440 from 3846masa-tmp/fix/export-render-to-pipeable-stream
  • b75edab fix: import renderToPipeableStream in server.mjs for re-exporting
  • 212b1f6 Merge pull request #4436 from preactjs/ref-cleanup
  • 7bb245a chore: work around TS complaining
  • Additional commits viewable in compare view

Updates sharp from 0.32.6 to 0.33.4

Changelog

Sourced from sharp's changelog.

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

  • Expose bilinear resizing kernel (and interpolator). #4061

  • Ensure extend operation stays sequential for multi-page TIFF (regression in 0.32.0). #4069

  • Tighten validation of constructor text integer properties. #4071

  • Simplify internal StaySequential logic. #4074 @​kleisauke

  • Ensure negate operation occurs after profile conversion. #4096 @​adriaanmeuris

v0.33.3 - 23rd March 2024

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

  • Ensure keepIccProfile retains P3 and CMYK input profiles. #3906 #4008

  • Ensure text.wrap property can accept word-char as value. #4028 @​yolopunk

  • Ensure clone takes a deep copy of existing options. #4029

  • Add bitdepth option to heif output (prebuilt binaries support 8-bit only). #4036 @​mertalev

v0.33.2 - 12th January 2024

... (truncated)

Commits
  • 19d0e27 Release v0.33.4
  • 16b764f Prerelease v0.33.4-rc.0
  • 1593ee3 Bump devDeps
  • 668b5ba Docs: changelog and credit for #4096
  • 29336f4 Ensure negate op occurs after profile conversion (#4096)
  • b5fddd7 Install: log node-addon-api version if available
  • da655a1 Reduce default concurrency for musl thread over-subscription
  • 93c615d Bump devDeps
  • f325dc3 Refactor to use C++ boolean literals rather than macros
  • 0fde71c Ensure all contributor email addresses are valid (#4088)
  • Additional commits viewable in compare view

Updates @astrojs/check from 0.8.1 to 0.9.1

Release notes

Sourced from @​astrojs/check's releases.

@​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.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
  • Updated dependencies [708167e]
    • @​astrojs/language-server@​2.12.1
Commits

Updates @astrojs/ts-plugin from 1.1.3 to 1.9.1

Release notes

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

@​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

  • 9ca368b: Update to the latest version of Volar. This release should fix some of the caching issues that has crept up recently

@​astrojs/ts-plugin@​1.6.0

Minor Changes

  • 85b42dc: Update to the latest version of Volar. This release fixes a few issues such as missing Prettier crashing the language server in some cases, resolutions not working correctly inside TSX files, and more.

@​astrojs/ts-plugin@​1.5.3

Patch Changes

  • 7c4c1f2: Update Volar services. This update fixes an issue where typescript.validate settings wouldn't work in Astro files the same way they would inside TypeScript files

@​astrojs/ts-plugin@​1.5.2

Patch Changes

  • 6924c7e: Fixes semantic highlighting not working inside .ts(x) files in certain cases
  • 310fbfe: Fix Svelte and Vue integrations not working on Windows in certain cases

@​astrojs/ts-plugin@​1.5.1

Patch Changes

  • de58706: Fix imports from certain packages not working correctly in certain cases

@​astrojs/ts-plugin@​1.5.0

Minor Changes

  • 15a5532: Upgrade to Volar 2.0. No regressions are currently expected, however as this is a fairly consequential backend change, please report any issues you encounter.

... (truncated)

Changelog

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

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

Minor Changes

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

1.6.1

Patch Changes

  • 9ca368b: Update to the latest version of Volar. This release should fix some of the caching issues that has crept up recently

1.6.0

Minor Changes

  • 85b42dc: Update to the latest version of Volar. This release fixes a few issues such as missing Prettier crashing the language server in some cases, resolutions not working correctly inside TSX files, and more.

1.5.3

Patch Changes

  • 7c4c1f2: Update Volar services. This update fixes an issue where typescript.validate settings wouldn't work in Astro files the same way they would inside TypeScript files

1.5.2

Patch Changes

  • 6924c7e: Fixes semantic highlighting not working inside .ts(x) files in certain cases
  • 310fbfe: Fix Svelte and Vue integrations not working on Windows in certain cases

1.5.1

... (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.3

Commits

Updates autoprefixer from 10.4.15 to 10.4.19

Release notes

Sourced from autoprefixer's releases.

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.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 5d14408
  • [Deps] pin aria-query and axobject-query, add ls-engines test to CI Description has been truncated

Bumps the npm group with 23 updates:

| Package | From | To |
| --- | --- | --- |
| [@astrojs/preact](https://github.com/withastro/astro/tree/HEAD/packages/integrations/preact) | `3.0.2` | `3.5.1` |
| [@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.1` |
| [sharp](https://github.com/lovell/sharp) | `0.32.6` | `0.33.4` |
| [@astrojs/check](https://github.com/withastro/language-tools/tree/HEAD/packages/astro-check) | `0.8.1` | `0.9.1` |
| [@astrojs/ts-plugin](https://github.com/withastro/language-tools/tree/HEAD/packages/ts-plugin) | `1.1.3` | `1.9.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.3` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.15` | `10.4.19` |
| [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.40` |
| [postcss-html](https://github.com/ota-meshi/postcss-html) | `1.5.0` | `1.7.0` |
| [postcss-preset-env](https://github.com/csstools/postcss-plugins/tree/HEAD/plugin-packs/postcss-preset-env) | `9.1.3` | `9.6.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.1
- [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.1/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.1
- [Release notes](https://github.com/preactjs/preact/releases)
- [Commits](preactjs/preact@10.17.1...10.23.1)

Updates `sharp` from 0.32.6 to 0.33.4
- [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.4)

Updates `@astrojs/check` from 0.8.1 to 0.9.1
- [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.1/packages/astro-check)

Updates `@astrojs/ts-plugin` from 1.1.3 to 1.9.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.9.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.3
- [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.19
- [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.19)

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.40
- [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.40)

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 `postcss-preset-env` from 9.1.3 to 9.6.0
- [Changelog](https://github.com/csstools/postcss-plugins/blob/main/plugin-packs/postcss-preset-env/CHANGELOG.md)
- [Commits](https://github.com/csstools/postcss-plugins/commits/HEAD/plugin-packs/postcss-preset-env)

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: postcss-preset-env
  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 Aug 1, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 1, 2024

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

@dependabot dependabot bot closed this Sep 1, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/npm-12d49880db branch September 1, 2024 18:21
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