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 12 updates #2365

Merged

Conversation

dependabot[bot]
Copy link
Contributor

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

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

Package From To
astro 4.12.2 4.13.0
axios 1.7.2 1.7.3
rsuite 5.67.0 5.68.1
unplugin-icons 0.19.0 0.19.1
@astrojs/check 0.8.2 0.9.1
@astrojs/react 3.6.0 3.6.1
@iconify/json 2.2.230 2.2.233
@tanstack/eslint-plugin-query 5.51.12 5.51.15
@testing-library/jest-dom 6.4.7 6.4.8
msw 2.3.2 2.3.5
tailwindcss 3.4.6 3.4.7
vitest 2.0.4 2.0.5

Updates astro from 4.12.2 to 4.13.0

Release notes

Sourced from astro's releases.

[email protected]

Minor Changes

  • #11507 a62345f Thanks @​ematipico! - Adds color-coding to the console output during the build to highlight slow pages.

    Pages that take more than 500 milliseconds to render will have their build time logged in red. This change can help you discover pages of your site that are not performant and may need attention.

  • #11379 e5e2d3e Thanks @​alexanderniebuhr! - The experimental.contentCollectionJsonSchema feature introduced behind a flag in v4.5.0 is no longer experimental and is available for general use.

    If you are working with collections of type data, Astro will now auto-generate JSON schema files for your editor to get IntelliSense and type-checking. A separate file will be created for each data collection in your project based on your collections defined in src/content/config.ts using a library called zod-to-json-schema.

    This feature requires you to manually set your schema's file path as the value for $schema in each data entry file of the collection:

    {
      "$schema": "../../../.astro/collections/authors.schema.json",
      "name": "Armand",
      "skills": ["Astro", "Starlight"]
    }

    Alternatively, you can set this value in your editor settings. For example, to set this value in VSCode's json.schemas setting, provide the path of files to match and the location of your JSON schema:

    {
      "json.schemas": [
        {
          "fileMatch": ["/src/content/authors/**"],
          "url": "./.astro/collections/authors.schema.json"
        }
      ]
    }

    If you were previously using this feature, please remove the experimental flag from your Astro config:

    import { defineConfig } from 'astro'
    export default defineConfig({
    
    experimental: {
    contentCollectionJsonSchema: true
    }
    })

If you have been waiting for stabilization before using JSON Schema generation for content collections, you can now do so.

Please see the content collections guide for more about this feature.

... (truncated)

Changelog

Sourced from astro's changelog.

4.13.0

Minor Changes

  • #11507 a62345f Thanks @​ematipico! - Adds color-coding to the console output during the build to highlight slow pages.

    Pages that take more than 500 milliseconds to render will have their build time logged in red. This change can help you discover pages of your site that are not performant and may need attention.

  • #11379 e5e2d3e Thanks @​alexanderniebuhr! - The experimental.contentCollectionJsonSchema feature introduced behind a flag in v4.5.0 is no longer experimental and is available for general use.

    If you are working with collections of type data, Astro will now auto-generate JSON schema files for your editor to get IntelliSense and type-checking. A separate file will be created for each data collection in your project based on your collections defined in src/content/config.ts using a library called zod-to-json-schema.

    This feature requires you to manually set your schema's file path as the value for $schema in each data entry file of the collection:

    {
      "$schema": "../../../.astro/collections/authors.schema.json",
      "name": "Armand",
      "skills": ["Astro", "Starlight"]
    }

    Alternatively, you can set this value in your editor settings. For example, to set this value in VSCode's json.schemas setting, provide the path of files to match and the location of your JSON schema:

    {
      "json.schemas": [
        {
          "fileMatch": ["/src/content/authors/**"],
          "url": "./.astro/collections/authors.schema.json"
        }
      ]
    }

    If you were previously using this feature, please remove the experimental flag from your Astro config:

    import { defineConfig } from 'astro'
    export default defineConfig({
    
    experimental: {
    contentCollectionJsonSchema: true
    }
    })

If you have been waiting for stabilization before using JSON Schema generation for content collections, you can now do so.

Please see the content collections guide for more about this feature.

... (truncated)

Commits

Updates axios from 1.7.2 to 1.7.3

Release notes

Sourced from axios's releases.

Release v1.7.3

Release notes:

Bug Fixes

  • adapter: fix progress event emitting; (#6518) (e3c76fc)
  • fetch: fix withCredentials request config (#6505) (85d4d0e)
  • xhr: return original config on errors from XHR adapter (#6515) (8966ee7)

Contributors to this release

Changelog

Sourced from axios's changelog.

1.7.3 (2024-08-01)

Bug Fixes

  • adapter: fix progress event emitting; (#6518) (e3c76fc)
  • fetch: fix withCredentials request config (#6505) (85d4d0e)
  • xhr: return original config on errors from XHR adapter (#6515) (8966ee7)

Contributors to this release

Commits

Updates rsuite from 5.67.0 to 5.68.1

Release notes

Sourced from rsuite's releases.

v5.68.1

Bug Fixes

  • CheckTree: fix uncontrolled component default value (#3906) (01aab7d)

Full Changelog: rsuite/rsuite@v5.68.0...v5.68.1

v5.68.0

Features

Bug Fixes

Other Changes

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

Changelog

Sourced from rsuite's changelog.

5.68.1 (2024-08-02)

Bug Fixes

  • CheckTree: fix uncontrolled component default value (#3906) (01aab7d)

5.68.0 (2024-07-26)

Bug Fixes

  • DateInput,DateRangeInput: fix the date in the text box cannot be copied (#3888) (1d95107)
  • Form: fix proxy function in schema-typed not work in form (#3863) (63c0e3a)
  • Stack: fix the compatibility of spacing in Linux Firefox (#3889) (44ed16f)
  • Whisper: fix Whisper children not support string and other basic types (#3893) (70fb61d)

Features

  • Nav,Tabs: add pills value to the appearance property (#3890) (eae279f)
Commits
  • 93fb299 build: bump 5.68.1
  • 01aab7d fix(CheckTree): fix uncontrolled component default value (#3906)
  • 7087458 docs(palette): fix color reset when rerender (#3904)
  • 581fc26 docs(palette): fix color reset when rerender (#3901)
  • 9fd1962 build(docs): bump rsuite 5.68.0
  • b4218a6 build: bump 5.68.0
  • c170878 docs: refactor components overview page (#3900)
  • eae279f feat(Nav,Tabs): add pills value to the appearance property (#3890)
  • c91b55d docs(resources): add color page and refactor palette page (#3896)
  • a50f252 docs(Icon): refactor icon resources page (#3894)
  • Additional commits viewable in compare view

Updates unplugin-icons from 0.19.0 to 0.19.1

Release notes

Sourced from unplugin-icons's releases.

v0.19.1

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates @astrojs/check from 0.8.2 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
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
Commits

Updates @astrojs/react from 3.6.0 to 3.6.1

Release notes

Sourced from @​astrojs/react's releases.

@​astrojs/react@​3.6.1

Patch Changes

  • #11571 1c3265a Thanks @​bholmesdev! - BREAKING CHANGE to the experimental Actions API only. Install the latest @astrojs/react integration as well if you're using React 19 features.

    Make .safe() the default return value for actions. This means { data, error } will be returned when calling an action directly. If you prefer to get the data while allowing errors to throw, chain the .orThrow() modifier.

    import { actions } from 'astro:actions';
    // Before
    const { data, error } = await actions.like.safe();
    // After
    const { data, error } = await actions.like();
    // Before
    const newLikes = await actions.like();
    // After
    const newLikes = await actions.like.orThrow();

    Migration

    To migrate your existing action calls:

    • Remove .safe from existing safe action calls
    • Add .orThrow to existing unsafe action calls
  • #11570 84189b6 Thanks @​bholmesdev! - BREAKING CHANGE to the experimental Actions API only. Install the latest @astrojs/react integration as well if you're using React 19 features.

    Updates the Astro Actions fallback to support action={actions.name} instead of using getActionProps(). This will submit a form to the server in zero-JS scenarios using a search parameter:

    ---
    import { actions } from 'astro:actions';
    ---
    <form action={actions.logOut}>
    <!--output: action="?_astroAction=logOut"-->
    <button>Log Out</button>
    </form>

    You may also construct form action URLs using string concatenation, or by using the URL() constructor, with the an action's .queryString property:

    ---
    import { actions } from 'astro:actions';
    const confirmationUrl = new URL('/confirmation', Astro.url);

... (truncated)

Changelog

Sourced from @​astrojs/react's changelog.

3.6.1

Patch Changes

  • #11571 1c3265a Thanks @​bholmesdev! - BREAKING CHANGE to the experimental Actions API only. Install the latest @astrojs/react integration as well if you're using React 19 features.

    Make .safe() the default return value for actions. This means { data, error } will be returned when calling an action directly. If you prefer to get the data while allowing errors to throw, chain the .orThrow() modifier.

    import { actions } from 'astro:actions';
    // Before
    const { data, error } = await actions.like.safe();
    // After
    const { data, error } = await actions.like();
    // Before
    const newLikes = await actions.like();
    // After
    const newLikes = await actions.like.orThrow();

    Migration

    To migrate your existing action calls:

    • Remove .safe from existing safe action calls
    • Add .orThrow to existing unsafe action calls
  • #11570 84189b6 Thanks @​bholmesdev! - BREAKING CHANGE to the experimental Actions API only. Install the latest @astrojs/react integration as well if you're using React 19 features.

    Updates the Astro Actions fallback to support action={actions.name} instead of using getActionProps(). This will submit a form to the server in zero-JS scenarios using a search parameter:

    ---
    import { actions } from 'astro:actions';
    ---
    <form action={actions.logOut}>
    <!--output: action="?_astroAction=logOut"-->
    <button>Log Out</button>
    </form>

    You may also construct form action URLs using string concatenation, or by using the URL() constructor, with the an action's .queryString property:

    ---
    import { actions } from 'astro:actions';

... (truncated)

Commits

Updates @iconify/json from 2.2.230 to 2.2.233

Commits

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

Release notes

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

v5.51.15

Version 5.51.15 - 7/26/24, 11:47 AM (Manual Release)

Changes

Other

  • (cd68280) by Ryan Kuruppu

Packages

  • @​tanstack/eslint-plugin-query@​5.51.15
  • @​tanstack/query-async-storage-persister@​5.51.15
  • @​tanstack/query-broadcast-client-experimental@​5.51.15
  • @​tanstack/query-core@​5.51.15
  • @​tanstack/query-devtools@​5.51.15
  • @​tanstack/query-persist-client-core@​5.51.15
  • @​tanstack/query-sync-storage-persister@​5.51.15
  • @​tanstack/react-query@​5.51.15
  • @​tanstack/react-query-devtools@​5.51.15
  • @​tanstack/react-query-persist-client@​5.51.15
  • @​tanstack/react-query-next-experimental@​5.51.15
  • @​tanstack/solid-query@​5.51.15
  • @​tanstack/solid-query-devtools@​5.51.15
  • @​tanstack/solid-query-persist-client@​5.51.15
  • @​tanstack/svelte-query@​5.51.15
  • @​tanstack/svelte-query-devtools@​5.51.15
  • @​tanstack/svelte-query-persist-client@​5.51.15
  • @​tanstack/vue-query@​5.51.15
  • @​tanstack/vue-query-devtools@​5.51.15
  • @​tanstack/angular-query-devtools-experimental@​5.51.15
  • @​tanstack/angular-query-experimental@​5.51.15

v5.51.14

Version 5.51.14 - 7/26/24, 8:47 AM

Changes

Fix

  • query-core: abort fetch loop for infinite queries if getNextPageParam returns null or undefined (#7799) (3ef7887) by Dominik Dorfmeister

Refactor

  • react-query: add error message for skipToken in useSuspenseQueries and useSuspenseInfiniteQuery (#7797) (34a5672) by Lich

Chore

  • Update @tanstack/config to v0.11.0 (#7795) (bd3296b) by Lachlan Collins
  • svelte-query: Tweak provider tests (#7794) (1814f56) by Lachlan Collins

... (truncated)

Commits

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

Release notes

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

v6.4.8

6.4.8 (2024-07-23)

Bug Fixes

  • Drop peerDependencies from package.json (#610) (faf534b)
Commits
  • d02e80b docs: add ddolcimascolo as a contributor for maintenance (#616)
  • faf534b fix: Drop peerDependencies from package.json (#610)
  • 78a2934 docs: add tonyhallett as a contributor for bug (#615)
  • See full diff in compare view

Updates msw from 2.3.2 to 2.3.5

Release notes

Sourced from msw's releases.

v2.3.5 (2024-08-02)

Bug Fixes

  • HttpResponse: skip setting "Content-Length" if it is already set (#2228) (a0234c9abebada6f66f8a14dfa04bf2aac6e6dcf) @​kettanaito

v2.3.4 (2024-07-23)

Bug Fixes

  • cookieStore: remove left-over console.log (#2217) (00fdbb265dbb5cf0f9f89bd91b546966463535a4) @​Lalem001

v2.3.3 (2024-07-23)

Bug Fixes

Commits

Updates tailwindcss from 3.4.6 to 3.4.7

Release notes

Sourced from tailwindcss's releases.

v3.4.7

Fixed

  • Fix class detection in Slim templates with attached attributes and ID (#14019)
  • Ensure attribute values in data-* and aria-* modifiers are always quoted in the generated CSS (#14037)
Changelog

Sourced from tailwindcss's changelog.

[3.4.7] - 2024-07-25

Fixed

  • Fix class detection in Slim templates with attached attributes and ID (#14019)
  • Ensure attribute values in data-* and aria-* modifiers are always quoted in the generated CSS (#14037)
Commits
  • 9824cb6 Update version in package.json
  • aa6c10f Add missing heading to changelog
  • 245058c Update changelog for v3.4.7
  • 605d8cd Update CHANGELOG.md
  • 680c55c Normalize attribute selector for data-* and aria-* modifiers (#14037)
  • 866860e Print eventual lightning CSS parsing errors when the CSS matcher fail (#14034)
  • bdc87ae Fix class detection in Slim templates with attached attributes and IDs (#14019)
  • See full diff in compare view

Updates vitest from 2.0.4 to 2.0.5

Release notes

Sourced from vitest's releases.

v2.0.5

   🚀 Features

  • Introduce experimental reported tasks  -  by @​sheremet-va in vitest-dev/vitest#6149 (13d85)
    • This is part of the experimental API and doesn't follow semver. We are hoping to stabilize it for 2.1. If you are working with custom reporters, give this a go!

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • 99452a7 chore: release v2.0.5
  • 9b9bdf7 chore: remove unnecessary await (#6249)
  • 40dfad8 docs: add reported tasks docs (#6245)
  • 13d85bd feat: introduce experimental reported tasks (#6149)
  • b76a927 refactor(vitest): move public exports to public folder (#6218)
  • 56dbfa6 refactor: make a distinction between node and runtime types (#6214)
  • a48be6f fix(vitest): correctly resolve mocked node:* imports in mocks folder (#6204)
  • 3aab8a1 refactor: deprecate all config types from the main Vitest entrypoint, introdu...
  • 57d23ce docs: fix inconsistencies, remove low informative twoslash examples (#6200)
  • 8cd8272 fix(vitest): improve defineProject and defineWorkspace types (#6198)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…updates

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

| Package | From | To |
| --- | --- | --- |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `4.12.2` | `4.13.0` |
| [axios](https://github.com/axios/axios) | `1.7.2` | `1.7.3` |
| [rsuite](https://github.com/rsuite/rsuite) | `5.67.0` | `5.68.1` |
| [unplugin-icons](https://github.com/unplugin/unplugin-icons) | `0.19.0` | `0.19.1` |
| [@astrojs/check](https://github.com/withastro/language-tools/tree/HEAD/packages/astro-check) | `0.8.2` | `0.9.1` |
| [@astrojs/react](https://github.com/withastro/astro/tree/HEAD/packages/integrations/react) | `3.6.0` | `3.6.1` |
| [@iconify/json](https://github.com/iconify/icon-sets) | `2.2.230` | `2.2.233` |
| [@tanstack/eslint-plugin-query](https://github.com/TanStack/query/tree/HEAD/packages/eslint-plugin-query) | `5.51.12` | `5.51.15` |
| [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) | `6.4.7` | `6.4.8` |
| [msw](https://github.com/mswjs/msw) | `2.3.2` | `2.3.5` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss) | `3.4.6` | `3.4.7` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `2.0.4` | `2.0.5` |



Updates `astro` from 4.12.2 to 4.13.0
- [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 `axios` from 1.7.2 to 1.7.3
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.7.2...v1.7.3)

Updates `rsuite` from 5.67.0 to 5.68.1
- [Release notes](https://github.com/rsuite/rsuite/releases)
- [Changelog](https://github.com/rsuite/rsuite/blob/main/CHANGELOG.md)
- [Commits](rsuite/rsuite@v5.67.0...v5.68.1)

Updates `unplugin-icons` from 0.19.0 to 0.19.1
- [Release notes](https://github.com/unplugin/unplugin-icons/releases)
- [Commits](unplugin/unplugin-icons@v0.19.0...v0.19.1)

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

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

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

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

Updates `@testing-library/jest-dom` from 6.4.7 to 6.4.8
- [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.7...v6.4.8)

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

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

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

---
updated-dependencies:
- dependency-name: astro
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: axios
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: rsuite
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: unplugin-icons
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@astrojs/check"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minorandpatch
- dependency-name: "@astrojs/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minorandpatch
- dependency-name: "@iconify/json"
  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/jest-dom"
  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: tailwindcss
  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 Aug 2, 2024
@anna-parker anna-parker merged commit 2747f0e into main Aug 2, 2024
15 checks passed
@anna-parker anna-parker deleted the dependabot/npm_and_yarn/website/minorandpatch-4d1bab63c2 branch August 2, 2024 13:10
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