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 dependencies group across 1 directory with 20 updates #118

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 11, 2025

Bumps the dependencies group with 20 updates in the /web directory:

Package From To
@astrojs/check 0.9.3 0.9.4
@astrojs/react 3.6.2 4.2.0
@astrojs/tailwind 5.1.0 6.0.0
@emotion/react 11.13.3 11.14.0
@emotion/styled 11.13.0 11.14.0
@fontsource/roboto 5.1.0 5.1.1
@mui/material 6.1.0 6.4.3
@mui/x-charts 7.17.0 7.26.0
@octokit/rest 21.0.2 21.1.0
@types/node 22.5.5 22.13.1
astro 4.15.6 5.2.5
axios 1.7.7 1.7.9
react 18.3.1 19.0.0
@types/react 18.3.5 19.0.8
react-dom 18.3.1 19.0.0
@types/react-dom 18.3.0 19.0.3
tailwindcss 3.4.11 4.0.6
typescript 5.6.2 5.7.3
@types/adm-zip 0.5.5 0.5.7
prettier 3.3.3 3.5.0

Updates @astrojs/check from 0.9.3 to 0.9.4

Release notes

Sourced from @​astrojs/check's releases.

@​astrojs/check@​0.9.4

Patch Changes

  • 6e62aaa: Upgrades chokidar to v4
  • 5a44072: Fixes formatting not working by default in certain circumstances
  • Updated dependencies [5a44072]
  • Updated dependencies [3a836de]
    • @​astrojs/language-server@​2.15.0
Changelog

Sourced from @​astrojs/check's changelog.

0.9.4

Patch Changes

  • 6e62aaa: Upgrades chokidar to v4
  • 5a44072: Fixes formatting not working by default in certain circumstances
  • Updated dependencies [5a44072]
  • Updated dependencies [3a836de]
    • @​astrojs/language-server@​2.15.0
Commits

Updates @astrojs/react from 3.6.2 to 4.2.0

Release notes

Sourced from @​astrojs/react's releases.

@​astrojs/react@​4.2.0

Minor Changes

  • #13036 3c90d8f Thanks @​artmsilva! - Adds experimental support for disabling streaming

    This is useful to support libraries that are not compatible with streaming such as some CSS-in-JS libraries. To disable streaming for all React components in your project, set experimentalDisableStreaming: true as a configuration option for @astrojs/react:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    import react from '@astrojs/react';
    export default defineConfig({
    integrations: [
    react({
    
    
     experimentalDisableStreaming: true,
    
    }),
    ],
    });

@​astrojs/react@​4.1.6

Patch Changes

  • #12996 80c6801 Thanks @​bluwy! - Removes hardcoded ssr.external: ['react-dom/server', 'react-dom/client'] config that causes issues with adapters that bundle all dependencies (e.g. Cloudflare). These externals should already be inferred by default by Vite when deploying to a server environment.

  • #13011 cf30880 Thanks @​ascorbic! - Upgrades Vite

@​astrojs/react@​4.1.5

Patch Changes

  • #12887 ea603ae Thanks @​louisescher! - Adds a warning message when multiple JSX-based UI frameworks are being used without either the include or exclude property being set on the integration.

@​astrojs/react@​4.1.4

Patch Changes

  • #12923 c7642fb Thanks @​bluwy! - Removes react-specific entrypoints in optimizeDeps.include and rely on @vitejs/plugin-react to add

@​astrojs/react@​4.1.3

Patch Changes

@​astrojs/react@​4.1.2

Patch Changes

@​astrojs/react@​4.1.1

Patch Changes

... (truncated)

Changelog

Sourced from @​astrojs/react's changelog.

4.2.0

Minor Changes

  • #13036 3c90d8f Thanks @​artmsilva! - Adds experimental support for disabling streaming

    This is useful to support libraries that are not compatible with streaming such as some CSS-in-JS libraries. To disable streaming for all React components in your project, set experimentalDisableStreaming: true as a configuration option for @astrojs/react:

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    import react from '@astrojs/react';
    export default defineConfig({
    integrations: [
    react({
    
    
     experimentalDisableStreaming: true,
    
    }),
    ],
    });

4.1.6

Patch Changes

  • #12996 80c6801 Thanks @​bluwy! - Removes hardcoded ssr.external: ['react-dom/server', 'react-dom/client'] config that causes issues with adapters that bundle all dependencies (e.g. Cloudflare). These externals should already be inferred by default by Vite when deploying to a server environment.

  • #13011 cf30880 Thanks @​ascorbic! - Upgrades Vite

4.1.5

Patch Changes

  • #12887 ea603ae Thanks @​louisescher! - Adds a warning message when multiple JSX-based UI frameworks are being used without either the include or exclude property being set on the integration.

4.1.4

Patch Changes

  • #12923 c7642fb Thanks @​bluwy! - Removes react-specific entrypoints in optimizeDeps.include and rely on @vitejs/plugin-react to add

4.1.3

Patch Changes

4.1.2

... (truncated)

Commits

Updates @astrojs/tailwind from 5.1.0 to 6.0.0

Release notes

Sourced from @​astrojs/tailwind's releases.

@​astrojs/tailwind@​6.0.0

Major Changes

  • #13049 2ed4bd9 Thanks @​florian-lefebvre! - Deprecates the integration

    Tailwind CSS now offers a Vite plugin which is the preferred way to use Tailwind 4 in Astro. Please uninstall @astrojs/tailwind and follow the Tailwind documentation for manual installation.

    This updated major version is only provided as a convenience for existing projects until they are able to migrate to the new plugin. It offers no additional functionality and is no longer recommended, but may continue to be used in your projects until it is removed entirely.

@​astrojs/tailwind@​5.1.5

Patch Changes

@​astrojs/tailwind@​5.1.4

Patch Changes

Changelog

Sourced from @​astrojs/tailwind's changelog.

6.0.0

Major Changes

  • #13049 2ed4bd9 Thanks @​florian-lefebvre! - Deprecates the integration

    Tailwind CSS now offers a Vite plugin which is the preferred way to use Tailwind 4 in Astro. Please uninstall @astrojs/tailwind and follow the Tailwind documentation for manual installation.

    This updated major version is only provided as a convenience for existing projects until they are able to migrate to the new plugin. It offers no additional functionality and is no longer recommended, but may continue to be used in your projects until it is removed entirely.

5.1.5

Patch Changes

5.1.4

Patch Changes

5.1.3

Patch Changes

6.0.0-alpha.0

Patch Changes

5.1.2

Patch Changes

  • #12161 8e500f2 Thanks @​delucis! - Adds keywords to package.json to improve categorization in the Astro integrations catalog

6.0.0-alpha.0

Patch Changes

5.1.1

... (truncated)

Commits

Updates @emotion/react from 11.13.3 to 11.14.0

Release notes

Sourced from @​emotion/react's releases.

@​emotion/react@​11.14.0

Minor Changes

  • #3281 fc4d7bd Thanks @​Andarist! - Source code has been migrated to TypeScript. From now on type declarations will be emitted based on that, instead of being hand-written.

Patch Changes

  • Updated dependencies [8dc1a6d, e1bf17e]:
    • @​emotion/cache@​11.14.0
    • @​emotion/use-insertion-effect-with-fallbacks@​1.2.0

@​emotion/react@​11.13.5

Patch Changes

  • #3270 77d930d Thanks @​emmatown! - Fix inconsistent hashes using development vs production bundles/exports conditions when using @emotion/babel-plugin with sourceMap: true (the default). This is particularly visible when using Emotion with the Next.js Pages router where the development condition is used when bundling code but not when importing external code with Node.js.

  • Updated dependencies [77d930d]:

    • @​emotion/serialize@​1.3.3
    • @​emotion/cache@​11.13.5
    • @​emotion/utils@​1.4.2
    • @​emotion/babel-plugin@​11.13.5
Commits

Updates @emotion/styled from 11.13.0 to 11.14.0

Release notes

Sourced from @​emotion/styled's releases.

@​emotion/styled@​11.14.0

Minor Changes

  • #3284 a19d019 Thanks @​Andarist! - Source code has been migrated to TypeScript. From now on type declarations will be emitted based on that, instead of being hand-written.

Patch Changes

  • Updated dependencies [e1bf17e]:
    • @​emotion/use-insertion-effect-with-fallbacks@​1.2.0

@​emotion/styled@​11.13.5

Patch Changes

  • #3270 77d930d Thanks @​emmatown! - Fix inconsistent hashes using development vs production bundles/exports conditions when using @emotion/babel-plugin with sourceMap: true (the default). This is particularly visible when using Emotion with the Next.js Pages router where the development condition is used when bundling code but not when importing external code with Node.js.

  • Updated dependencies [77d930d]:

    • @​emotion/serialize@​1.3.3
    • @​emotion/utils@​1.4.2
    • @​emotion/babel-plugin@​11.13.5
Commits

Updates @fontsource/roboto from 5.1.0 to 5.1.1

Commits

Updates @mui/material from 6.1.0 to 6.4.3

Release notes

Sourced from @​mui/material's releases.

v6.4.3

Feb 4, 2025

A big thanks to the 3 contributors who made this release possible.

@mui/material@6.4.3

Core

All contributors of this release in alphabetical order: @​DiegoAndai, @​sai6855, @​ZeeshanTamboli

v6.4.2

Jan 29, 2025

A big thanks to the 5 contributors who made this release possible.

@mui/material@6.4.2

  • [Autocomplete] Prevent shrink animation in uncontrolled Autocomplete when default value is set (#44873) @​ZeeshanTamboli
  • [Slider] Fix arrow keys past the end for Slider with custom marks (#45050) @​joshkel
  • [TextareaAutosize] Temporarily disconnect ResizeObserver to avoid loop error (#44540) @​mj12albert

Core

Docs

All contributors of this release in alphabetical order: @​DiegoAndai, @​Janpot, @​joshkel, @​mj12albert, @​ZeeshanTamboli

v6.4.1

Jan 21, 2025

A big thanks to the 9 contributors who made this release possible.

@mui/material@6.4.1

... (truncated)

Changelog

Sourced from @​mui/material's changelog.

6.4.3

Feb 4, 2025

A big thanks to the 3 contributors who made this release possible.

@mui/material@6.4.3

Core

All contributors of this release in alphabetical order: @​DiegoAndai, @​sai6855, @​ZeeshanTamboli

6.4.2

Jan 29, 2025

A big thanks to the 5 contributors who made this release possible.

@mui/material@6.4.2

  • [Autocomplete] Prevent shrink animation in uncontrolled Autocomplete when default value is set (#44873) @​ZeeshanTamboli
  • [Slider] Fix arrow keys past the end for Slider with custom marks (#45050) @​joshkel
  • [TextareaAutosize] Temporarily disconnect ResizeObserver to avoid loop error (#44540) @​mj12albert

Core

Docs

All contributors of this release in alphabetical order: @​DiegoAndai, @​Janpot, @​joshkel, @​mj12albert, @​ZeeshanTamboli

6.4.1

... (truncated)

Commits
  • cee310a [release] v6.4.3 (#45209)
  • 4ae7e7a [material-ui][LinearProgress][CircularProgress] Add variant overrides for mod...
  • 1813d89 [release] v6.4.2 (#45138)
  • 045b84d [code-infra] a few fixes uncovered during ESM updates (@​Janpot) (#45100)
  • e6c9d99 [material-ui][Slider] Fix arrow keys past the end for Slider with custom mark...
  • cce1222 [material-ui][TextareaAutosize] Temporarily disconnect ResizeObserver to avoi...
  • 8a4eaf6 [Autocomplete] Prevent shrink animation in uncontrolled Autocomplete when def...
  • 819e662 [release] v6.4.1 (#45077)
  • 4f872d6 [code-infra] Add "use client" directive to files with React APIs (#45036)
  • cb2a191 [material-ui][TextField] Fix filled state to be synced with autofill (#44135)
  • Additional commits viewable in compare view

Updates @mui/x-charts from 7.17.0 to 7.26.0

Release notes

Sourced from @​mui/x-charts's releases.

v7.26.0

We'd like to offer a big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:

  • ⚡ Mount and resize performance improvements for the Data Grid
  • 🐞 Bugfixes

Special thanks go out to the community contributors who have helped make this release possible: @​lauri865. Following are all team members who have contributed to this release: @​arminmeh, @​noraleonte, @​LukasTy, @​KenanYusuf, @​flaviendelangle.

Data Grid

@mui/x-data-grid@7.26.0

  • [DataGrid] Avoid <GridRoot /> double-render pass on mount in SPA mode (#16480) @​lauri865

@mui/x-data-grid-pro@7.26.0 pro

Same changes as in @mui/x-data-grid@7.26.0, plus:

  • [DataGridPro] Fix the return type of useGridApiContext() for Pro and Premium packages on React < 19 (#16446) @​arminmeh

@mui/x-data-grid-premium@7.26.0 premium

Same changes as in @mui/x-data-grid-pro@7.26.0, plus:

  • [DataGridPremium] Fix "no rows" overlay not showing with active aggregation (#16468) @​KenanYusuf

Date and Time Pickers

@mui/x-date-pickers@7.26.0

Internal changes.

@mui/x-date-pickers-pro@7.26.0 pro

Same changes as in @mui/x-date-pickers@7.26.0, plus:

  • [DateRangePicker] Fix currentMonthCalendarPosition prop behavior on mobile (#16457) @​LukasTy
  • [DateRangePicker] Fix vertical alignment for multi input fields (#16490) @​noraleonte

Charts

@mui/x-charts@7.26.0

Internal changes.

... (truncated)

Changelog

Sourced from @​mui/x-charts's changelog.

7.26.0

Feb 7, 2025

We'd like to offer a big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:

  • ⚡ Mount and resize performance improvements for the Data Grid
  • 🐞 Bugfixes

Special thanks go out to the community contributors who have helped make this release possible: @​lauri865. Following are all team members who have contributed to this release: @​arminmeh, @​noraleonte, @​LukasTy, @​KenanYusuf, @​flaviendelangle.

Data Grid

@mui/x-data-grid@7.26.0

  • [DataGrid] Avoid <GridRoot /> double-render pass on mount in SPA mode (#16480) @​lauri865

@mui/x-data-grid-pro@7.26.0 pro

Same changes as in @mui/x-data-grid@7.26.0, plus:

  • [DataGridPro] Fix the return type of useGridApiContext() for Pro and Premium packages on React < 19 (#16446) @​arminmeh

@mui/x-data-grid-premium@7.26.0 premium

Same changes as in @mui/x-data-grid-pro@7.26.0, plus:

  • [DataGridPremium] Fix "no rows" overlay not showing with active aggregation (#16468) @​KenanYusuf

Date and Time Pickers

@mui/x-date-pickers@7.26.0

Internal changes.

@mui/x-date-pickers-pro@7.26.0 pro

Same changes as in @mui/x-date-pickers@7.26.0, plus:

  • [DateRangePicker] Fix currentMonthCalendarPosition prop behavior on mobile (#16457) @​LukasTy
  • [DateRangePicker] Fix vertical alignment for multi input fields (#16490) @​noraleonte

Charts

@mui/x-charts@7.26.0

... (truncated)

Commits

Updates @octokit/rest from 21.0.2 to 21.1.0

Release notes

Sourced from @​octokit/rest's releases.

v21.1.0

21.1.0 (2025-01-08)

Features

  • new endpoints, bump Octokit deps to fix Deno (#477) (908b1c8)
Commits
  • 908b1c8 feat: new endpoints, bump Octokit deps to fix Deno (#477)
  • 751b522 chore(deps): update dependency fetch-mock to v12 (#470)
  • 5ad12fd chore(deps): update dependency @​types/node to v22 (#472)
  • c88980a ci(action): update actions/checkout digest to 11bd719 (#469)
  • 94443df ci(action): update actions/checkout digest to eef6144 (#467)
  • c59fcf6 chore(deps): update dependency @​octokit/tsconfig to v4 (#464)
  • 2f97e4c build(deps): Bump body-parser and express (#465)
  • 2dec6cc chore(deps): update dependency esbuild to ^0.24.0 (#463)
  • See full diff in compare view

Updates @types/node from 22.5.5 to 22.13.1

Commits

Updates astro from 4.15.6 to 5.2.5

Release notes

Sourced from astro's releases.

astro@5.2.5

Patch Changes

  • #13133 e76aa83 Thanks @​ematipico! - Fixes a bug where Astro was failing to build an external redirect when the middleware was triggered

  • #13119 ac43580 Thanks @​Hacksore! - Adds extra guidance in the terminal when using the astro add tailwind CLI command

    Now, users are given a friendly reminder to import the stylesheet containing their Tailwind classes into any pages where they want to use Tailwind. Commonly, this is a shared layout component so that Tailwind styling can be used on multiple pages.

astro@5.2.4

Patch Changes

astro@5.2.3

Patch Changes

  • #13113 3a26e45 Thanks @​unprintable123! - Fixes the bug that rewrite will pass encoded url to the dynamic routing and cause params mismatch.

  • #13111 23978dd Thanks @​ascorbic! - Fixes a bug that caused injected endpoint routes to return not found when trailingSlash was set to always

  • #13112 0fa5c82 Thanks @​ematipico! - Fixes a bug where the i18n middleware was blocking a server island request when the prefixDefaultLocale option is set to true

astro@5.2.2

Patch Changes

astro@5.2.1

Patch Changes

  • #13095 740eb60 Thanks @​ascorbic! - Fixes a bug that caused some dev server asset requests to return 404 when trailingSlash was set to "always"

astro@5.2.0

Minor Changes

  • #12994 5361755 Thanks @​ascorbic! - Redirects trailing slashes for on-demand pages

    When the trailingSlash option is set to always or never, on-demand rendered pages will now redirect to the correct URL when the trailing slash doesn't match the configuration option. This was previously the case for static pages, but now works for on-demand pages as well.

    Now, it doesn't matter whether your visitor navigates to /about/, /about, or even /about///. In production, they'll always end up on the correct page. For GET requests, the redirect will be a 301 (permanent) redirect, and for all other request methods, it will be a 308 (permanent, and preserve the request method) redirect.

    In development, you'll see a helpful 404 page to alert you of a trailing slash mismatch so you can troubleshoot routes.

  • #12979 e621712 Thanks @​ematipico! - Adds support for redirecting to external sites with the redirects configuration option.

...

Description has been truncated

Bumps the dependencies group with 20 updates in the /web directory:

| Package | From | To |
| --- | --- | --- |
| [@astrojs/check](https://github.com/withastro/language-tools/tree/HEAD/packages/astro-check) | `0.9.3` | `0.9.4` |
| [@astrojs/react](https://github.com/withastro/astro/tree/HEAD/packages/integrations/react) | `3.6.2` | `4.2.0` |
| [@astrojs/tailwind](https://github.com/withastro/astro/tree/HEAD/packages/integrations/tailwind) | `5.1.0` | `6.0.0` |
| [@emotion/react](https://github.com/emotion-js/emotion) | `11.13.3` | `11.14.0` |
| [@emotion/styled](https://github.com/emotion-js/emotion) | `11.13.0` | `11.14.0` |
| [@fontsource/roboto](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/roboto) | `5.1.0` | `5.1.1` |
| [@mui/material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material) | `6.1.0` | `6.4.3` |
| [@mui/x-charts](https://github.com/mui/mui-x/tree/HEAD/packages/x-charts) | `7.17.0` | `7.26.0` |
| [@octokit/rest](https://github.com/octokit/rest.js) | `21.0.2` | `21.1.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.5.5` | `22.13.1` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `4.15.6` | `5.2.5` |
| [axios](https://github.com/axios/axios) | `1.7.7` | `1.7.9` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `18.3.1` | `19.0.0` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.3.5` | `19.0.8` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `18.3.1` | `19.0.0` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `18.3.0` | `19.0.3` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `3.4.11` | `4.0.6` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.6.2` | `5.7.3` |
| [@types/adm-zip](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/adm-zip) | `0.5.5` | `0.5.7` |
| [prettier](https://github.com/prettier/prettier) | `3.3.3` | `3.5.0` |



Updates `@astrojs/check` from 0.9.3 to 0.9.4
- [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.4/packages/astro-check)

Updates `@astrojs/react` from 3.6.2 to 4.2.0
- [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/react@4.2.0/packages/integrations/react)

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

Updates `@emotion/react` from 11.13.3 to 11.14.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/react@11.13.3...@emotion/react@11.14.0)

Updates `@emotion/styled` from 11.13.0 to 11.14.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/styled@11.13.0...@emotion/styled@11.14.0)

Updates `@fontsource/roboto` from 5.1.0 to 5.1.1
- [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md)
- [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/roboto)

Updates `@mui/material` from 6.1.0 to 6.4.3
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/v6.4.3/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v6.4.3/packages/mui-material)

Updates `@mui/x-charts` from 7.17.0 to 7.26.0
- [Release notes](https://github.com/mui/mui-x/releases)
- [Changelog](https://github.com/mui/mui-x/blob/v7.26.0/CHANGELOG.md)
- [Commits](https://github.com/mui/mui-x/commits/v7.26.0/packages/x-charts)

Updates `@octokit/rest` from 21.0.2 to 21.1.0
- [Release notes](https://github.com/octokit/rest.js/releases)
- [Commits](octokit/rest.js@v21.0.2...v21.1.0)

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

Updates `astro` from 4.15.6 to 5.2.5
- [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/astro@5.2.5/packages/astro)

Updates `axios` from 1.7.7 to 1.7.9
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.7.7...v1.7.9)

Updates `react` from 18.3.1 to 19.0.0
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.0.0/packages/react)

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

Updates `react-dom` from 18.3.1 to 19.0.0
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.0.0/packages/react-dom)

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

Updates `tailwindcss` from 3.4.11 to 4.0.6
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.0.6/packages/tailwindcss)

Updates `typescript` from 5.6.2 to 5.7.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.6.2...v5.7.3)

Updates `@types/adm-zip` from 0.5.5 to 0.5.7
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/adm-zip)

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

---
updated-dependencies:
- dependency-name: "@astrojs/check"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@astrojs/react"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@astrojs/tailwind"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@emotion/react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@emotion/styled"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@fontsource/roboto"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@mui/material"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@mui/x-charts"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@octokit/rest"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: astro
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: axios
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: react
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@types/react"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: react-dom
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@types/react-dom"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: tailwindcss
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: typescript
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/adm-zip"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

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 Feb 11, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 12, 2025

Superseded by #120.

@dependabot dependabot bot closed this Feb 12, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/web/dependencies-1a8d57ce3f branch February 12, 2025 06:27
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