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

chore(deps): bump the minorandpatch group across 1 directory with 22 updates #2323

Merged

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the minorandpatch group with 22 updates in the /website directory:

Package From To
@astrojs/mdx 3.1.2 3.1.3
@emotion/react 11.11.4 11.13.0
astro 4.11.5 4.12.2
rsuite 5.66.0 5.67.0
@astrojs/check 0.8.1 0.8.2
@emotion/styled 11.11.5 11.13.0
@iconify/json 2.2.228 2.2.230
@playwright/test 1.45.1 1.45.3
@tanstack/eslint-plugin-query 5.51.1 5.51.12
@testing-library/dom 10.3.2 10.4.0
@testing-library/jest-dom 6.4.6 6.4.7
@types/lodash 4.17.6 4.17.7
@types/node 20.14.10 20.14.11
@typescript-eslint/eslint-plugin 7.16.1 7.17.0
@typescript-eslint/parser 7.16.1 7.17.0
eslint-plugin-react 7.34.4 7.35.0
jsdom 24.1.0 24.1.1
msw 2.3.1 2.3.2
prettier-plugin-astro 0.14.0 0.14.1
tailwindcss 3.4.5 3.4.6
typescript 5.5.3 5.5.4
vitest 2.0.3 2.0.4

Updates @astrojs/mdx from 3.1.2 to 3.1.3

Release notes

Sourced from @​astrojs/mdx's releases.

@​astrojs/mdx@​3.1.3

Patch Changes

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

Sourced from @​astrojs/mdx's changelog.

3.1.3

Patch Changes

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

Updates @emotion/react from 11.11.4 to 11.13.0

Release notes

Sourced from @​emotion/react's releases.

@​emotion/react@​11.13.0

Minor Changes

  • #3198 d8ff8a5 Thanks @​Andarist! - Migrated away from relying on process.env.NODE_ENV checks to differentiate between production and development builds.

    Development builds (and other environment-specific builds) can be used by using proper conditions (see here). Most modern bundlers/frameworks already preconfigure those for the user so no action has to be taken.

    Default files should continue to work in all environments.

  • #3215 a9f6912 Thanks @​Andarist! - Added edge-light and workerd conditions to package.json manifest to better serve users using Vercel Edge and Cloudflare Workers.

Patch Changes

  • Updated dependencies [d8ff8a5, a9f6912]:
    • @​emotion/cache@​11.13.0
    • @​emotion/serialize@​1.3.0
    • @​emotion/use-insertion-effect-with-fallbacks@​1.1.0
    • @​emotion/utils@​1.4.0

@​emotion/react@​11.12.0

Minor Changes

  • #2815 65a1eea Thanks @​srmagura! - Automatic labeling at runtime is now an opt-in feature. Define globalThis.EMOTION_RUNTIME_AUTO_LABEL = true before Emotion gets initialized to enable it.

Patch Changes

Commits

Updates astro from 4.11.5 to 4.12.2

Release notes

Sourced from astro's releases.

[email protected]

Patch Changes

  • #11505 8ff7658 Thanks @​ematipico! - Enhances the dev server logging when rewrites occur during the lifecycle or rendering.

    The dev server will log the status code before and after a rewrite:

    08:16:48 [404] (rewrite) /foo/about 200ms
    08:22:13 [200] (rewrite) /about 23ms
  • #11506 026e8ba Thanks @​sarah11918! - Fixes typo in documenting the slot="fallback" attribute for Server Islands experimental feature.

  • #11508 ca335e1 Thanks @​cramforce! - Escapes HTML in serialized props

  • #11501 4db78ae Thanks @​martrapp! - Adds the missing export for accessing the getFallback() function of the client site router.

[email protected]

Patch Changes

  • #11486 9c0c849 Thanks @​ematipico! - Adds a new function called addClientRenderer to the Container API.

    This function should be used when rendering components using the client:* directives. The addClientRenderer API must be used after the use of the addServerRenderer:

    const container = await experimental_AstroContainer.create();
    container.addServerRenderer({ renderer });
    container.addClientRenderer({ name: '@astrojs/react', entrypoint: '@astrojs/react/client.js' });
    const response = await container.renderToResponse(Component);
  • #11500 4e142d3 Thanks @​Princesseuh! - Fixes inferRemoteSize type not working

  • #11496 53ccd20 Thanks @​alfawal! - Hide the dev toolbar on window.print() (CTRL + P)

[email protected]

Minor Changes

  • #11341 49b5145 Thanks @​madcampos! - Adds support for Shiki's defaultColor option.

    This option allows you to override the values of a theme's inline style, adding only CSS variables to give you more flexibility in applying multiple color themes.

    Configure defaultColor: false in your Shiki config to apply throughout your site, or pass to Astro's built-in <Code> component to style an individual code block.

    import { defineConfig } from 'astro/config';
    export default defineConfig({
      markdown: {

... (truncated)

Changelog

Sourced from astro's changelog.

4.12.2

Patch Changes

  • #11505 8ff7658 Thanks @​ematipico! - Enhances the dev server logging when rewrites occur during the lifecycle or rendering.

    The dev server will log the status code before and after a rewrite:

    08:16:48 [404] (rewrite) /foo/about 200ms
    08:22:13 [200] (rewrite) /about 23ms
  • #11506 026e8ba Thanks @​sarah11918! - Fixes typo in documenting the slot="fallback" attribute for Server Islands experimental feature.

  • #11508 ca335e1 Thanks @​cramforce! - Escapes HTML in serialized props

  • #11501 4db78ae Thanks @​martrapp! - Adds the missing export for accessing the getFallback() function of the client site router.

4.12.1

Patch Changes

  • #11486 9c0c849 Thanks @​ematipico! - Adds a new function called addClientRenderer to the Container API.

    This function should be used when rendering components using the client:* directives. The addClientRenderer API must be used after the use of the addServerRenderer:

    const container = await experimental_AstroContainer.create();
    container.addServerRenderer({ renderer });
    container.addClientRenderer({ name: '@astrojs/react', entrypoint: '@astrojs/react/client.js' });
    const response = await container.renderToResponse(Component);
  • #11500 4e142d3 Thanks @​Princesseuh! - Fixes inferRemoteSize type not working

  • #11496 53ccd20 Thanks @​alfawal! - Hide the dev toolbar on window.print() (CTRL + P)

4.12.0

Minor Changes

  • #11341 49b5145 Thanks @​madcampos! - Adds support for Shiki's defaultColor option.

    This option allows you to override the values of a theme's inline style, adding only CSS variables to give you more flexibility in applying multiple color themes.

    Configure defaultColor: false in your Shiki config to apply throughout your site, or pass to Astro's built-in <Code> component to style an individual code block.

... (truncated)

Commits

Updates rsuite from 5.66.0 to 5.67.0

Release notes

Sourced from rsuite's releases.

v5.67.0

Features

Bug Fixes

Other Changes

New Contributors

Full Changelog: rsuite/rsuite@v5.66.0...v5.67.0

Changelog

Sourced from rsuite's changelog.

5.67.0 (2024-07-19)

Bug Fixes

  • Button: fix the misalignment of icons and text in block buttons (#3880) (aa4f02b)
  • NavItem: fix NavItem cannot be used in Navbar and Sidenav (#3882) (be6b2b1)
  • Stack: fix StackItem cannot be rendered correctly in server-side rendering (#3884) (a552e35)

Features

  • locales: add support for Catalan (#3878) (c0bae4d)
  • Uploader: add event parameter to onChange callback (#3881) (a1c1667)
Commits
  • 139f324 build: bump 5.67.0
  • 81e46b1 docs(locales): add support for Catalan (#3886)
  • c0bae4d feat(locales): add support for Catalan (#3878)
  • c5714df docs(Container): fix the style issue in the example (#3879)
  • aa4f02b fix(Button): fix the misalignment of icons and text in block buttons (#3880)
  • a1c1667 feat(Uploader): add event parameter to onChange callback (#3881)
  • be6b2b1 fix(NavItem): fix NavItem cannot be used in Navbar and Sidenav (#3882)
  • a552e35 fix(Stack): fix StackItem cannot be rendered correctly in server-side renderi...
  • cb0a7bd build(docs): bump rsuite 5.66.0
  • See full diff in compare view

Updates @astrojs/check from 0.8.1 to 0.8.2

Release notes

Sourced from @​astrojs/check's releases.

@​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.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 @emotion/styled from 11.11.5 to 11.13.0

Release notes

Sourced from @​emotion/styled's releases.

@​emotion/styled@​11.13.0

Minor Changes

  • #3198 d8ff8a5 Thanks @​Andarist! - Migrated away from relying on process.env.NODE_ENV checks to differentiate between production and development builds.

    Development builds (and other environment-specific builds) can be used by using proper conditions (see here). Most modern bundlers/frameworks already preconfigure those for the user so no action has to be taken.

    Default files should continue to work in all environments.

  • #3215 a9f6912 Thanks @​Andarist! - Added edge-light and workerd conditions to package.json manifest to better serve users using Vercel Edge and Cloudflare Workers.

Patch Changes

  • Updated dependencies [d8ff8a5, a9f6912]:
    • @​emotion/serialize@​1.3.0
    • @​emotion/use-insertion-effect-with-fallbacks@​1.1.0
    • @​emotion/utils@​1.4.0

@​emotion/styled@​11.12.0

Patch Changes

Commits

Updates @iconify/json from 2.2.228 to 2.2.230

Commits

Updates @playwright/test from 1.45.1 to 1.45.3

Release notes

Sourced from @​playwright/test's releases.

v1.45.3

Highlights

microsoft/playwright#31764 - [Bug]: some actions do not appear in the trace file microsoft/playwright-java#1617 - [Bug]: Traceviewer not reporting all actions

Browser Versions

  • Chromium 127.0.6533.5
  • Mozilla Firefox 127.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 126
  • Microsoft Edge 126

v1.45.2

Highlights

microsoft/playwright#31613 - [REGRESSION]: Trace is not showing any screenshots nor test name microsoft/playwright#31601 - [REGRESSION]: missing trace for 2nd browser microsoft/playwright#31541 - [REGRESSION]: Failing tests have a trace with no images and with steps missing

Browser Versions

  • Chromium 127.0.6533.5
  • Mozilla Firefox 127.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 126
  • Microsoft Edge 126
Commits
  • 0e130fa chore: mark v1.45.3 (#31799)
  • 2f17a27 cherry-pick(#31781): chore: show error when opening newer trace with … (#31797)
  • b129aba cherry-pick(#31768): fix(trace viewer): library-only trace should not merge a...
  • d8a5f3b chore: mark v1.45.2 (#31702)
  • 51fa0ff Revert "chore: move artifacts recording to TestLifecycleInstrumentation (#309...
  • 80f44f3 cherry-pick(#31666): Revert "fix(chromium): pass --enable-gpu when running he...
  • 4bd2d25 cherry-pick(#31511): docs(clock): update time types in Python/.NET
  • See full diff in compare view

Updates @tanstack/eslint-plugin-query from 5.51.1 to 5.51.12

Release notes

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

v5.51.12

Version 5.51.12 - 7/20/24, 11:09 AM

Changes

Fix

Packages

  • @​tanstack/eslint-plugin-query@​5.51.12

v5.51.11

Version 5.51.11 - 7/20/24, 10:47 AM

Changes

Fix

  • svelte-query: Correct data type when initialData is set (#7769) (b764009) by Lachlan Collins

Ci

  • Enable autofix on push to release branch (b189e31) by Lachlan Collins

Docs

  • typedoc: Use generateReferenceDocs function (#7765) (e4e65be) by Lachlan Collins
  • typedoc: Update output filename (#7764) (144d3a8) by Lachlan Collins
  • update the syntax highlighting for angular (#7762) (2786196) by @​mgechev
  • Throw error or mutation doesn"t see any the 500 coming from API (#7754) (b970f67) by @​okazkayasi
  • Update paginated-queries.md (#7759) (98d127a) by Andre Sander

Packages

  • @​tanstack/react-query@​5.51.11
  • @​tanstack/svelte-query@​5.51.11
  • @​tanstack/react-query-devtools@​5.51.11
  • @​tanstack/react-query-persist-client@​5.51.11
  • @​tanstack/react-query-next-experimental@​5.51.11
  • @​tanstack/svelte-query-devtools@​5.51.11
  • @​tanstack/svelte-query-persist-client@​5.51.11

v5.51.10

Version 5.51.10 - 7/18/24, 12:03 PM

Changes

Fix

... (truncated)

Commits

Updates @testing-library/dom from 10.3.2 to 10.4.0

Release notes

Sourced from @​testing-library/dom's releases.

v10.4.0

10.4.0 (2024-07-22)

Features

  • Reduce caught exceptions in prettyDom (reland) (#1323) (a86c54c)
Commits

Updates @testing-library/jest-dom from 6.4.6 to 6.4.7

Release notes

Sourced from @​testing-library/jest-dom's releases.

v6.4.7

6.4.7 (2024-07-22)

Bug Fixes

Commits

Updates @types/lodash from 4.17.6 to 4.17.7

Commits

Updates @types/node from 20.14.10 to 20.14.11

Commits

Updates @typescript-eslint/eslint-plugin from 7.16.1 to 7.17.0

Release notes

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

v7.17.0

7.17.0 (2024-07-22)

🚀 Features

  • eslint-plugin: backport no-unsafe-function type, no-wrapper-object-types from v8 to v7 (#9507)
  • eslint-plugin: [return-await] add option to report in error-handling scenarios only, and deprecate "never" (#9364)

🩹 Fixes

  • eslint-plugin: [no-floating-promises] check top-level type assertions (and more) (#9043)
  • eslint-plugin: [strict-boolean-expressions] consider assertion function argument a boolean context (#9074)
  • eslint-plugin: [no-unnecessary-condition] false positive on optional private field (#9602)
  • typescript-estree: don't infer single-run when --fix is in proces.argv (#9577)
  • typescript-estree: disable single-run inference with extraFileExtensions (#9580)
  • website: expose ATA types to eslint instance (#9598)

❤️ Thank You

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

Changelog

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

7.17.0 (2024-07-22)

🚀 Features

  • eslint-plugin: backport no-unsafe-function type, no-wrapper-object-types from v8 to v7

  • eslint-plugin: [return-await] add option to report in error-handling scenarios only, and deprecate "never"

🩹 Fixes

  • eslint-plugin: [no-floating-promises] check top-level type assertions (and more)

  • eslint-plugin: [strict-boolean-expressions] consider assertion function argument a boolean context

  • eslint-plugin: [no-unnecessary-condition] false positive on optional private field

❤️ Thank You

  • Armano
  • Josh Goldberg ✨
  • Kirk Waiblinger
  • StyleShit

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

Commits
  • 05c9cb8 chore(release): publish 7.17.0
  • f6c719f fix(eslint-plugin): [no-unnecessary-condition] false positive on optional pri...
  • 6647f7e chore: enable no-unreachable-loop (#9540)
  • 58be99f chore: enable prefer-object-spread (#9541)
  • 5d895b7 chore: enable @​typescript-eslint/no-unused-expressions (#9542)
  • d8c539d chore: enable no-useless-concat (#9550)
  • f043f30 fix(eslint-plugin): [strict-boolean-expressions] consider assertion function ...
  • 0108e9c chore: enable no-lonely-if (#9547)
  • 970f3f1 feat(eslint-plugin): [return-await] add option to report in error-handling sc...
  • dd965a4 feat(eslint-plugin): backport no-unsafe-function type, no-wrapper-object-type...
  • Additional commits viewable in compare view

Updates @typescript-eslint/parser from 7.16.1 to 7.17.0

Release notes

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

v7.17.0

7.17.0 (2024-07-22)

🚀 Features

  • eslint-plugin: backport no-unsafe-function type, no-wrapper-object-types from v8 to v7 (#9507)
  • eslint-plugin: [return-await] add option to report in error-handling scenarios only, and deprecate "never" (#9364)

🩹 Fixes

  • eslint-plugin: [no-floating-promises] check top-level type assertions (and more) (#9043)
  • eslint-plugin: [strict-boolean-expressions] consider assertion function argument a boolean context (#9074)
  • eslint-plugin: [no-unnecessary-condition] false positive on optional private field (#9602)
  • typescript-estree: don't infer single-run when --fix is in proces.argv (#9577)
  • typescript-estree: disable single-run inference with extraFileExtensions (#9580)
  • website: expose ATA types to eslint instance (#9598)

❤️ Thank You

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

Changelog

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

7.17.0 (2024-07-22)

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

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

Commits

Updates eslint-plugin-react from 7.34.4 to 7.35.0

Release notes

Sourced from eslint-plugin-react's releases.

v7.35.0

Added

Fixed

  • [no-invalid-...

    Description has been truncated

…updates

Bumps the minorandpatch group with 22 updates in the /website directory:

| Package | From | To |
| --- | --- | --- |
| [@astrojs/mdx](https://github.com/withastro/astro/tree/HEAD/packages/integrations/mdx) | `3.1.2` | `3.1.3` |
| [@emotion/react](https://github.com/emotion-js/emotion) | `11.11.4` | `11.13.0` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `4.11.5` | `4.12.2` |
| [rsuite](https://github.com/rsuite/rsuite) | `5.66.0` | `5.67.0` |
| [@astrojs/check](https://github.com/withastro/language-tools/tree/HEAD/packages/astro-check) | `0.8.1` | `0.8.2` |
| [@emotion/styled](https://github.com/emotion-js/emotion) | `11.11.5` | `11.13.0` |
| [@iconify/json](https://github.com/iconify/icon-sets) | `2.2.228` | `2.2.230` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.45.1` | `1.45.3` |
| [@tanstack/eslint-plugin-query](https://github.com/TanStack/query/tree/HEAD/packages/eslint-plugin-query) | `5.51.1` | `5.51.12` |
| [@testing-library/dom](https://github.com/testing-library/dom-testing-library) | `10.3.2` | `10.4.0` |
| [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) | `6.4.6` | `6.4.7` |
| [@types/lodash](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash) | `4.17.6` | `4.17.7` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.14.10` | `20.14.11` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `7.16.1` | `7.17.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `7.16.1` | `7.17.0` |
| [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) | `7.34.4` | `7.35.0` |
| [jsdom](https://github.com/jsdom/jsdom) | `24.1.0` | `24.1.1` |
| [msw](https://github.com/mswjs/msw) | `2.3.1` | `2.3.2` |
| [prettier-plugin-astro](https://github.com/withastro/prettier-plugin-astro) | `0.14.0` | `0.14.1` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss) | `3.4.5` | `3.4.6` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.5.3` | `5.5.4` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `2.0.3` | `2.0.4` |



Updates `@astrojs/mdx` from 3.1.2 to 3.1.3
- [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 `@emotion/react` from 11.11.4 to 11.13.0
- [Release notes](https://github.com/emotion-js/emotion/releases)
- [Changelog](https://github.com/emotion-js/emotion/blob/main/CHANGELOG.md)
- [Commits](https://github.com/emotion-js/emotion/compare/@emotion/[email protected]...@emotion/[email protected])

Updates `astro` from 4.11.5 to 4.12.2
- [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 `rsuite` from 5.66.0 to 5.67.0
- [Release notes](https://github.com/rsuite/rsuite/releases)
- [Changelog](https://github.com/rsuite/rsuite/blob/main/CHANGELOG.md)
- [Commits](rsuite/rsuite@v5.66.0...v5.67.0)

Updates `@astrojs/check` from 0.8.1 to 0.8.2
- [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/[email protected]/packages/astro-check)

Updates `@emotion/styled` from 11.11.5 to 11.13.0
- [Release notes](https://github.com/emotion-js/emotion/releases)
- [Changelog](https://github.com/emotion-js/emotion/blob/main/CHANGELOG.md)
- [Commits](https://github.com/emotion-js/emotion/compare/@emotion/[email protected]...@emotion/[email protected])

Updates `@iconify/json` from 2.2.228 to 2.2.230
- [Commits](iconify/icon-sets@2.2.228...2.2.230)

Updates `@playwright/test` from 1.45.1 to 1.45.3
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.45.1...v1.45.3)

Updates `@tanstack/eslint-plugin-query` from 5.51.1 to 5.51.12
- [Release notes](https://github.com/TanStack/query/releases)
- [Commits](https://github.com/TanStack/query/commits/v5.51.12/packages/eslint-plugin-query)

Updates `@testing-library/dom` from 10.3.2 to 10.4.0
- [Release notes](https://github.com/testing-library/dom-testing-library/releases)
- [Changelog](https://github.com/testing-library/dom-testing-library/blob/main/CHANGELOG.md)
- [Commits](testing-library/dom-testing-library@v10.3.2...v10.4.0)

Updates `@testing-library/jest-dom` from 6.4.6 to 6.4.7
- [Release notes](https://github.com/testing-library/jest-dom/releases)
- [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md)
- [Commits](testing-library/jest-dom@v6.4.6...v6.4.7)

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

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

Updates `@typescript-eslint/eslint-plugin` from 7.16.1 to 7.17.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/v7.17.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 7.16.1 to 7.17.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/v7.17.0/packages/parser)

Updates `eslint-plugin-react` from 7.34.4 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.34.4...v7.35.0)

Updates `jsdom` from 24.1.0 to 24.1.1
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Changelog](https://github.com/jsdom/jsdom/blob/main/Changelog.md)
- [Commits](jsdom/jsdom@24.1.0...24.1.1)

Updates `msw` from 2.3.1 to 2.3.2
- [Release notes](https://github.com/mswjs/msw/releases)
- [Changelog](https://github.com/mswjs/msw/blob/main/CHANGELOG.md)
- [Commits](mswjs/msw@v2.3.1...v2.3.2)

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

Updates `tailwindcss` from 3.4.5 to 3.4.6
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/v3.4.6/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss@v3.4.5...v3.4.6)

Updates `typescript` from 5.5.3 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.5.3...v5.5.4)

Updates `vitest` from 2.0.3 to 2.0.4
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v2.0.4/packages/vitest)

---
updated-dependencies:
- dependency-name: "@astrojs/mdx"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@emotion/react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: astro
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: rsuite
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: "@astrojs/check"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@emotion/styled"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: "@iconify/json"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@tanstack/eslint-plugin-query"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@testing-library/dom"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: "@testing-library/jest-dom"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@types/lodash"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: eslint-plugin-react
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: jsdom
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: msw
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: prettier-plugin-astro
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript labels Jul 23, 2024
@anna-parker anna-parker merged commit 1f54d0b into main Jul 23, 2024
13 checks passed
@anna-parker anna-parker deleted the dependabot/npm_and_yarn/website/minorandpatch-bc6d493413 branch July 23, 2024 08:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant