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

build(deps): bump the minor group across 1 directory with 26 updates #485

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 10, 2024

Bumps the minor group with 26 updates in the /client directory:

Package From To
@emotion/react 11.11.3 11.14.0
@fontsource/material-icons 5.0.11 5.1.0
@mantine/core 7.3.2 7.15.0
@mantine/dates 7.3.2 7.15.0
@mantine/form 7.3.2 7.15.0
@mantine/hooks 7.3.2 7.15.0
@mantine/notifications 7.3.2 7.15.0
@reduxjs/toolkit 2.0.1 2.4.0
immer 10.0.3 10.1.1
jotai 2.6.1 2.10.3
react-redux 9.0.4 9.1.2
react-virtuoso 4.6.2 4.12.3
workbox-core 7.0.0 7.3.0
workbox-expiration 7.0.0 7.3.0
workbox-precaching 7.0.0 7.3.0
workbox-routing 7.0.0 7.3.0
workbox-strategies 7.0.0 7.3.0
zod 3.22.4 3.24.0
@playwright/experimental-ct-react 1.40.1 1.49.1
eslint-import-resolver-typescript 3.6.1 3.7.0
eslint-plugin-import 2.29.1 2.31.0
eslint-plugin-jsx-a11y 6.8.0 6.10.2
eslint-plugin-react 7.33.2 7.37.2
openapi-zod-client 1.15.0 1.18.2
playwright 1.40.1 1.49.1
vite-plugin-pwa 0.17.4 0.21.1

Updates @emotion/react from 11.11.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

@​emotion/react@​11.13.3

Patch Changes

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

... (truncated)

Commits

Updates @fontsource/material-icons from 5.0.11 to 5.1.0

Commits

Updates @mantine/core from 7.3.2 to 7.15.0

Release notes

Sourced from @​mantine/core's releases.

7.15.0 💋

View changelog with demos on mantine.dev website

Support Mantine development

You can now sponsor Mantine development with OpenCollective. All funds will be used to improve Mantine and create new features and components.

use-radial-move hook

New use-radial-move hook can be used to create custom radial sliders:

import { useState } from 'react';
import { Box } from '@mantine/core';
import { useRadialMove } from '@mantine/hooks';
import classes from './Demo.module.css';
function Demo() {
const [value, setValue] = useState(115);
const { ref } = useRadialMove(setValue);
return (
<Box className={classes.root} ref={ref} style={{ '--angle': ${value}deg }}>
<div className={classes.value}>{value}°</div>
<div className={classes.thumb} />
</Box>
);
}

BarChart color based on value

BarChart component now supports getBarColor prop to assign color based on value. getBarColor function is called with two arguments: value and series object. It should return a color string (theme color reference or any valid CSS color value).

import { BarChart } from '@mantine/charts';
import { data } from './data';
function Demo() {
return (
<BarChart
h={300}
data={data}
dataKey="month"
getBarColor={(value) => (value > 700 ? 'teal.8' : 'red.8')}
series={[{ name: 'Laptops', color: 'gray.6' }]}
/>
</tr></table>

... (truncated)

Commits
  • aae7b81 [release] Version: 7.15.0
  • ecd05d8 [core] Update @types/react and @types/react-dom to 19
  • e110a50 [@​mantine/core] Add mantineHtmlProps exports
  • d0e70b6 Merge branch master into 7.15
  • 29f5df2 [release] Version: 7.14.3
  • a4edfa4 [@​mantine/core] Slider: Fix restrictToMarks prop not working with arrow and...
  • 9c622e4 [@​mantine/core] Checkbox: Fix Checkbox.Card component not working with `form....
  • 99f531e [@​mantine/core] Tree: Add checkOnSpace prop support (#7132)
  • a2c8b30 [@​mantine/core] ScrollArea: Fix opacity style of thumb being too specific (...
  • dd98960 [mantine.dev] Update data prop description to emphasize unique values requi...
  • Additional commits viewable in compare view

Updates @mantine/dates from 7.3.2 to 7.15.0

Release notes

Sourced from @​mantine/dates's releases.

7.15.0 💋

View changelog with demos on mantine.dev website

Support Mantine development

You can now sponsor Mantine development with OpenCollective. All funds will be used to improve Mantine and create new features and components.

use-radial-move hook

New use-radial-move hook can be used to create custom radial sliders:

import { useState } from 'react';
import { Box } from '@mantine/core';
import { useRadialMove } from '@mantine/hooks';
import classes from './Demo.module.css';
function Demo() {
const [value, setValue] = useState(115);
const { ref } = useRadialMove(setValue);
return (
<Box className={classes.root} ref={ref} style={{ '--angle': ${value}deg }}>
<div className={classes.value}>{value}°</div>
<div className={classes.thumb} />
</Box>
);
}

BarChart color based on value

BarChart component now supports getBarColor prop to assign color based on value. getBarColor function is called with two arguments: value and series object. It should return a color string (theme color reference or any valid CSS color value).

import { BarChart } from '@mantine/charts';
import { data } from './data';
function Demo() {
return (
<BarChart
h={300}
data={data}
dataKey="month"
getBarColor={(value) => (value > 700 ? 'teal.8' : 'red.8')}
series={[{ name: 'Laptops', color: 'gray.6' }]}
/>
</tr></table>

... (truncated)

Commits
  • aae7b81 [release] Version: 7.15.0
  • bfbc229 Merge branch 'master' of github.com:mantinedev/mantine into 7.15
  • 1d62b4e [@​mantine/code] DatePicker: Fix withWeekNumbers not being passed to calend...
  • ecd05d8 [core] Update @types/react and @types/react-dom to 19
  • d0e70b6 Merge branch master into 7.15
  • 29f5df2 [release] Version: 7.14.3
  • ad88645 [refactor] Fix incorrect font-size of week numbers
  • f825743 [@​mantine/dates] Add withWeekNumbers prop support to all components based o...
  • 44407db [@​mantine/core] Replace global JSX types with React.JSX to support React ...
  • 1f4bb71 Merge branch master into 7.15
  • Additional commits viewable in compare view

Updates @mantine/form from 7.3.2 to 7.15.0

Release notes

Sourced from @​mantine/form's releases.

7.15.0 💋

View changelog with demos on mantine.dev website

Support Mantine development

You can now sponsor Mantine development with OpenCollective. All funds will be used to improve Mantine and create new features and components.

use-radial-move hook

New use-radial-move hook can be used to create custom radial sliders:

import { useState } from 'react';
import { Box } from '@mantine/core';
import { useRadialMove } from '@mantine/hooks';
import classes from './Demo.module.css';
function Demo() {
const [value, setValue] = useState(115);
const { ref } = useRadialMove(setValue);
return (
<Box className={classes.root} ref={ref} style={{ '--angle': ${value}deg }}>
<div className={classes.value}>{value}°</div>
<div className={classes.thumb} />
</Box>
);
}

BarChart color based on value

BarChart component now supports getBarColor prop to assign color based on value. getBarColor function is called with two arguments: value and series object. It should return a color string (theme color reference or any valid CSS color value).

import { BarChart } from '@mantine/charts';
import { data } from './data';
function Demo() {
return (
<BarChart
h={300}
data={data}
dataKey="month"
getBarColor={(value) => (value > 700 ? 'teal.8' : 'red.8')}
series={[{ name: 'Laptops', color: 'gray.6' }]}
/>
</tr></table>

... (truncated)

Commits
  • aae7b81 [release] Version: 7.15.0
  • d0e70b6 Merge branch master into 7.15
  • 29f5df2 [release] Version: 7.14.3
  • 44407db [@​mantine/core] Replace global JSX types with React.JSX to support React ...
  • 1f4bb71 Merge branch master into 7.15
  • c83f5b0 [release] Version: 7.14.2
  • b07b275 [@​mantine/form] Add submitting state support
  • 7fad3d6 [@​mantine/form] Add onSubmitPreventDefault option support (#7142)
  • 79280aa [release] Version: 7.14.2-alpha.0
  • 12adf69 [release] Version: 7.14.1
  • Additional commits viewable in compare view

Updates @mantine/hooks from 7.3.2 to 7.15.0

Release notes

Sourced from @​mantine/hooks's releases.

7.15.0 💋

View changelog with demos on mantine.dev website

Support Mantine development

You can now sponsor Mantine development with OpenCollective. All funds will be used to improve Mantine and create new features and components.

use-radial-move hook

New use-radial-move hook can be used to create custom radial sliders:

import { useState } from 'react';
import { Box } from '@mantine/core';
import { useRadialMove } from '@mantine/hooks';
import classes from './Demo.module.css';
function Demo() {
const [value, setValue] = useState(115);
const { ref } = useRadialMove(setValue);
return (
<Box className={classes.root} ref={ref} style={{ '--angle': ${value}deg }}>
<div className={classes.value}>{value}°</div>
<div className={classes.thumb} />
</Box>
);
}

BarChart color based on value

BarChart component now supports getBarColor prop to assign color based on value. getBarColor function is called with two arguments: value and series object. It should return a color string (theme color reference or any valid CSS color value).

import { BarChart } from '@mantine/charts';
import { data } from './data';
function Demo() {
return (
<BarChart
h={300}
data={data}
dataKey="month"
getBarColor={(value) => (value > 700 ? 'teal.8' : 'red.8')}
series={[{ name: 'Laptops', color: 'gray.6' }]}
/>
</tr></table>

... (truncated)

Commits
  • aae7b81 [release] Version: 7.15.0
  • ecfd1da [@​mantine/hooks] use-interval: Fix interval not starting correctly in some cases
  • ecd05d8 [core] Update @types/react and @types/react-dom to 19
  • d0e70b6 Merge branch master into 7.15
  • 29f5df2 [release] Version: 7.14.3
  • 0c1e304 [@​mantine/core] AngleSlider: Migrate to use-radial-move hook
  • 1fd27b0 [@​mantine/hooks] use-radial-move: Finish hook and add demo
  • e0d1ce7 [@​mantine/hooks] use-radial-move: Init hook
  • c83f5b0 [release] Version: 7.14.2
  • 79280aa [release] Version: 7.14.2-alpha.0
  • Additional commits viewable in compare view

Updates @mantine/notifications from 7.3.2 to 7.15.0

Release notes

Sourced from @​mantine/notifications's releases.

7.15.0 💋

View changelog with demos on mantine.dev website

Support Mantine development

You can now sponsor Mantine development with OpenCollective. All funds will be used to improve Mantine and create new features and components.

use-radial-move hook

New use-radial-move hook can be used to create custom radial sliders:

import { useState } from 'react';
import { Box } from '@mantine/core';
import { useRadialMove } from '@mantine/hooks';
import classes from './Demo.module.css';
function Demo() {
const [value, setValue] = useState(115);
const { ref } = useRadialMove(setValue);
return (
<Box className={classes.root} ref={ref} style={{ '--angle': ${value}deg }}>
<div className={classes.value}>{value}°</div>
<div className={classes.thumb} />
</Box>
);
}

BarChart color based on value

BarChart component now supports getBarColor prop to assign color based on value. getBarColor function is called with two arguments: value and series object. It should return a color string (theme color reference or any valid CSS color value).

import { BarChart } from '@mantine/charts';
import { data } from './data';
function Demo() {
return (
<BarChart
h={300}
data={data}
dataKey="month"
getBarColor={(value) => (value > 700 ? 'teal.8' : 'red.8')}
series={[{ name: 'Laptops', color: 'gray.6' }]}
/>
</tr></table>

... (truncated)

Commits
  • aae7b81 [release] Version: 7.15.0
  • ecd05d8 [core] Update @types/react and @types/react-dom to 19
  • d0e70b6 Merge branch master into 7.15
  • 29f5df2 [release] Version: 7.14.3
  • 1f4bb71 Merge branch master into 7.15
  • c83f5b0 [release] Version: 7.14.2
  • ed96599 [core] Resolve most peer dependencies warnings
  • e0bd74c [@​mantine/notifications] Fix notifications with bottom-right and top-right po...
  • 79280aa [release] Version: 7.14.2-alpha.0
  • 12adf69 [release] Version: 7.14.1
  • Additional commits viewable in compare view

Updates @reduxjs/toolkit from 2.0.1 to 2.4.0

Release notes

Sourced from @​reduxjs/toolkit's releases.

v2.4.0

This feature release includes multiple tweaks and fixes to RTK Query functionality, additional exported TS types, and drops support for TS versions earlier than 5.0.

Changelog

RTK Query Improvements

Lazy query hooks can now be reset.

retry.fail now accepts meta as a second argument.

Tag invalidation arrays now ignore nullish values.

We did some small internal refactoring around Maps and default values that shrank bundle size slightly.

Bugfixes

Passing skipToken to a query hook now bails out before running any other logic, which fixes cases where serializeQueryArgs previously threw an error because there were no args to process.

The autoBatchEnhancer now reads window.requestAnimationFrame later, which it to work properly with Jest fake timers.

We fixed cases where the hook result isSuccess flag would briefly flicker to false when switched to a different cache entry that was uninitialized, and would briefly flicker to true when refetching a query that previously errored.

The listener middleware previously had inconsistent logic checks for comparing against existing listener entries (effect + type, vs effect only). It now always checks both effect + type.

Additional TS Types

We now export Typed[Query|Mutation]OnQueryStarted helpers to let you define onQueryStarted callbacks outside of createApi if desired.

We also now export a CreateAsyncThunkFunction type that can be used to type userland wrappers around createAsyncThunk.

TS Support Matrix Updates

We've historically tried to maintain TS backwards compatibility as long as possible, and made occasional updates to our TS support matrix in minor versions over time. As of RTK 2.3.0, we officially supported back through TS 4.7.

As of this release, we're tweaking that support policy to match the policy used by DefinitelyTyped:

Definitely Typed only tests packages on versions of TypeScript that are less than 2 years old image

Given that, we've dropped official support for TS versions earlier than 5.0. (RTK may work with those versions, but we no longer test against them and won't try to fix issues with those versions.)

We'll continue to update our TS support matrix over time based on that 2-year rolling window.

What's Changed

... (truncated)

Commits
  • 3a6ec28 Release 2.4.0
  • fdfc3b7 Merge pull request #4735 from reduxjs/upsert-new
  • 05a8322 add test for fix
  • c65558a Fix listener logic to properly compare combination of effect and predicate/type
  • ee22bef Merge pull request #4732 from reduxjs/bugfix/4240-isSuccess
  • 98d7753 fix wrong import
  • d632dd5 use getOrInsert in RTKQ
  • 3bb8486 Simplify listener/dynamic middleware code
  • 2ad4bb4 Update to new version of upsert proposal
  • 311f31c Keep isSuccess consistent when refetching after an error
  • Additional commits viewable in compare view

Updates immer from 10.0.3 to 10.1.1

Release notes

Sourced from immer's releases.

v10.1.1

10.1.1 (2024-04-27)

Bug Fixes

v10.1.0

10.1.0 (2024-04-27)

Features

  • performance: Make non-strict mode faster for classes. Addresses #1071 (53e3203). Immer 10.x solved slow iteration for plain JS objects. This update applies the same handling to class instances. In cases this makes class instance handling 3 times faster. Note that this slightly modifies the behavior of Immer with classes in obscure corner cases, in ways that match current documentation, but do not match previous behavior. If you run into issues with this release icmw. class instances, use setUseStrictShallowCopy("class_only") to revert to the old behavior. For more details see https://immerjs.github.io/immer/complex-objects#semantics-in-detail

v10.0.4

10.0.4 (2024-03-09)

Bug Fixes

Commits
  • e2d222b docs: [Doc]: Update /zh-CN/ (#1067)
  • 4da2e0d fix: Make applyPatches to accept readonly Patch[] (#1094)
  • 073d634 chore: Fix typo in comment in common.ts (#1113)
  • a3a7d0c chore(deps): bump express from 4.18.2 to 4.19.2 in /website (#1112)
  • 5a8f6e7 fix: export lost types (#1116)
  • 53e3203 feat(performance): Make non-strict mode faster for classes. Addresses #1071
  • 511ccee introduce StrictMode enum
  • 85a8f7b Introduce class_only strict mode setting
  • 7f1b3b9 Merge branch 'main' into faster-unstrict-mode
  • 9713677 chore: fix git ignore with watchman
  • Additional commits viewable in compare view

Updates jotai from 2.6.1 to 2.10.3

Release notes

Sourced from jotai's releases.

v2.10.3

This fixes various edge cases. Huge thanks to @​dmaskasky ! 🎉

What's Changed

Full Changelog: pmndrs/jotai@v2.10.2...v2.10.3

v2.10.2

Fixed some jotai/utils for a regression in v2.10.0.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.10.1...v2.10.2

v2.10.1

This fixes a bug in an extreme edge case. If you find this change breaks something, please report to us.

What's Changed

New Contributors

... (truncated)

Commits
  • 6b406ff 2.10.3
  • 6a854a9 chore(deps): update dev dependencies (#2830)
  • 71d4a6b feat(docs): update docs for jotai-history (#2736)
  • ad2f83c docs: add jotai-derive extension documentation (#2656)
  • cc3f3b6 feat(website): UI/UX improvements (#2829)
  • 14c028a prefer epoch number comparisons to indicate value change (#2828)
  • 474e369 use iterative approach in recompute dependents (#2821)
  • c41a6de call subscribers when setatom changes value in onmount (#2815)
  • 1bf91ce add tests: can read sync derived atom in write without initializing (#2824)
  • 29662ea fix: setAtom uses stale pending on atom unmount (#2811)
  • Additional commits viewable in compare view

Updates react-redux from 9.0.4 to 9.1.2

Release notes

Sourced from react-redux's releases.

v9.1.2

This bugfix release removes the no-longer-necessary peer dependency on react-native, and tweaks a few TS types for compat with the upcoming React 19 release.

Changes

React Native Peer Dependency Removed

We've always had an awkward peer dependency on both ReactDOM and React Native, because of the need to import the unstable_batchedUpdates API directly from each reconciler. That's part of what led to the sequence of 9.x patch releases to deal with RN compat.

As of 9.0.3, we dropped the batching imports completely, since React 18 now batches by default. That means we didn't even have any remaining imports from react-native.

Meanwhile, React 18.3 just came out, but so did React Native 0.74. RN 0.74 still requires React 18.2.

This caused NPM users to have installation failures when trying to use React-Redux:

  • React-Redux has a peer dep on RN
  • RN has a peer dep on React 18.2
  • But the latest React, 18.3 would get installed in the app
  • NPM errors with a peer dep mismatch

We no longer need to list RN as a peer dep, and dropping that also fixes the NPM installation issues as well.

What's Changed

Full Changelog: reduxjs/react-redux@v9.1.1...v9.1.2

v9.1.1

This bugfix release fixes an issue with connect and React Native caused by changes to our bundling setup in v9. Nested connect calls should work correctly now.

What's Changed

Full Changelog: reduxjs/react-redux@v9.1.0...v9.1.1

v9.1.0

This minor release adds a new syntax for pre-typing hooks.

.withTypes

Previously, the approach for "pre-typing" hooks with your app settings was a little varied. The result would look something like the below:

import type { TypedUseSelectorHook } from "react-redux"
</tr></table> 

... (truncated)

Commits
  • 1af75b3 Release 9.1.2
  • eec5f9b Merge pull request #2168 from reduxjs/feature/react-19-types
  • a752cc6 Fix remaining React 19 types compat issues
  • 23c0c22 Add explicit @​types/prop-types dep
  • bfa3c36 Merge pull request #2167 from reduxjs/bugfix/remove-rn-peerdep
  • 427791b Drop now-unneeded RN peer dep
  • f404f82 Replace usage of deprecated JSX global namespace with React.JSX (#2163)
  • 5ec7970 Fix useRef usages to be called with an explicit argument of undefined. (#...
  • d44ff74 Release 9.1.1
  • 0396da3 Merge pull request #2156 from aryaemami59/fix-RN-useIsomorphicLayoutEffect-issue
  • Additional commits viewable in compare view

Updates react-virtuoso from 4.6.2 to 4.12.3

Release notes

Sourced from react-virtuoso's releases.

v4.12.3

4.12.3 (2024-12-01)

Bug Fixes

  • gridSystem.ts: call onEndReached when the data is less than cont… (#1166) (7a80ea2)

v4.12.2

4.12.2 (2024-11-24)

Bug Fixes

v4.12.1

4.12.1 (2024-11-21)

Bug Fixes

  • grid does not render items when initialTopMostItemIndex is set to 1 or more (#1162) (483654f)

v4.12.0

4.12.0 (2024-10-15)

Features

v4.11.0

4.11.0 (2024-10-14)

Features

  • increaseViewportBy for VirtuosoGrid (67bc341)

v4.10.4

4.10.4 (2024-09-10)

Bug Fixes

  • grid SSR works with initial topmost item index (62d577d)

v4.10.3

4.10.3 (2024-09-07)

... (truncated)

Commits
  • 7a80ea2 fix(gridSystem.ts): call onEndReached when the data is less than cont… (#1166)
  • fa4934d fix: allow toggling top item count to zero (#1164)
  • 483654f fix: grid does not render items when initialTopMostItemIndex is set to 1 or m...
  • 3405b64 feat: topItemCount for TableVirtuoso (#1147)
  • 67bc341 feat: increaseViewportBy for VirtuosoGrid
  • 62d577d fix: grid SSR works with initial topmost item index
  • 78aa3dd fix: grid hooks
  • 1df9a68 chore: comment out template comment
  • 30ed457 chore: upgrade vite and local react
  • 24d045b fix: drop explicit createElement
  • Additional commits viewable in compare view

Updates workbox-core from 7.0.0 to 7.3.0

Release notes

Sourced from workbox-core's releases.

Workbox v7.3.0

v7.3.0

  • Critical dependency updates.

v7.1.0

What's Changed ✏️

  • Updating dependencies with critical vulnerabilities, plus some other dependencies maintenance

Thanks 🙏

Full Changelog: GoogleChrome/workbox@v7.0.0...v7.1.0

Commits

Bumps the minor group with 26 updates in the /client directory:

| Package | From | To |
| --- | --- | --- |
| [@emotion/react](https://github.com/emotion-js/emotion) | `11.11.3` | `11.14.0` |
| [@fontsource/material-icons](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/material-icons) | `5.0.11` | `5.1.0` |
| [@mantine/core](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/core) | `7.3.2` | `7.15.0` |
| [@mantine/dates](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dates) | `7.3.2` | `7.15.0` |
| [@mantine/form](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form) | `7.3.2` | `7.15.0` |
| [@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks) | `7.3.2` | `7.15.0` |
| [@mantine/notifications](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/notifications) | `7.3.2` | `7.15.0` |
| [@reduxjs/toolkit](https://github.com/reduxjs/redux-toolkit) | `2.0.1` | `2.4.0` |
| [immer](https://github.com/immerjs/immer) | `10.0.3` | `10.1.1` |
| [jotai](https://github.com/pmndrs/jotai) | `2.6.1` | `2.10.3` |
| [react-redux](https://github.com/reduxjs/react-redux) | `9.0.4` | `9.1.2` |
| [react-virtuoso](https://github.com/petyosi/react-virtuoso) | `4.6.2` | `4.12.3` |
| [workbox-core](https://github.com/googlechrome/workbox) | `7.0.0` | `7.3.0` |
| [workbox-expiration](https://github.com/googlechrome/workbox) | `7.0.0` | `7.3.0` |
| [workbox-precaching](https://github.com/googlechrome/workbox) | `7.0.0` | `7.3.0` |
| [workbox-routing](https://github.com/googlechrome/workbox) | `7.0.0` | `7.3.0` |
| [workbox-strategies](https://github.com/googlechrome/workbox) | `7.0.0` | `7.3.0` |
| [zod](https://github.com/colinhacks/zod) | `3.22.4` | `3.24.0` |
| [@playwright/experimental-ct-react](https://github.com/microsoft/playwright) | `1.40.1` | `1.49.1` |
| [eslint-import-resolver-typescript](https://github.com/import-js/eslint-import-resolver-typescript) | `3.6.1` | `3.7.0` |
| [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import) | `2.29.1` | `2.31.0` |
| [eslint-plugin-jsx-a11y](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y) | `6.8.0` | `6.10.2` |
| [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) | `7.33.2` | `7.37.2` |
| [openapi-zod-client](https://github.com/astahmer/openapi-zod-client) | `1.15.0` | `1.18.2` |
| [playwright](https://github.com/microsoft/playwright) | `1.40.1` | `1.49.1` |
| [vite-plugin-pwa](https://github.com/vite-pwa/vite-plugin-pwa) | `0.17.4` | `0.21.1` |



Updates `@emotion/react` from 11.11.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/[email protected]...@emotion/[email protected])

Updates `@fontsource/material-icons` from 5.0.11 to 5.1.0
- [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/material-icons)

Updates `@mantine/core` from 7.3.2 to 7.15.0
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/7.15.0/packages/@mantine/core)

Updates `@mantine/dates` from 7.3.2 to 7.15.0
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/7.15.0/packages/@mantine/dates)

Updates `@mantine/form` from 7.3.2 to 7.15.0
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/7.15.0/packages/@mantine/form)

Updates `@mantine/hooks` from 7.3.2 to 7.15.0
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/7.15.0/packages/@mantine/hooks)

Updates `@mantine/notifications` from 7.3.2 to 7.15.0
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/7.15.0/packages/@mantine/notifications)

Updates `@reduxjs/toolkit` from 2.0.1 to 2.4.0
- [Release notes](https://github.com/reduxjs/redux-toolkit/releases)
- [Commits](reduxjs/redux-toolkit@v2.0.1...v2.4.0)

Updates `immer` from 10.0.3 to 10.1.1
- [Release notes](https://github.com/immerjs/immer/releases)
- [Commits](immerjs/immer@v10.0.3...v10.1.1)

Updates `jotai` from 2.6.1 to 2.10.3
- [Release notes](https://github.com/pmndrs/jotai/releases)
- [Commits](pmndrs/jotai@v2.6.1...v2.10.3)

Updates `react-redux` from 9.0.4 to 9.1.2
- [Release notes](https://github.com/reduxjs/react-redux/releases)
- [Changelog](https://github.com/reduxjs/react-redux/blob/master/CHANGELOG.md)
- [Commits](reduxjs/react-redux@v9.0.4...v9.1.2)

Updates `react-virtuoso` from 4.6.2 to 4.12.3
- [Release notes](https://github.com/petyosi/react-virtuoso/releases)
- [Commits](petyosi/react-virtuoso@v4.6.2...v4.12.3)

Updates `workbox-core` from 7.0.0 to 7.3.0
- [Release notes](https://github.com/googlechrome/workbox/releases)
- [Commits](GoogleChrome/workbox@v7.0.0...v7.3.0)

Updates `workbox-expiration` from 7.0.0 to 7.3.0
- [Release notes](https://github.com/googlechrome/workbox/releases)
- [Commits](GoogleChrome/workbox@v7.0.0...v7.3.0)

Updates `workbox-precaching` from 7.0.0 to 7.3.0
- [Release notes](https://github.com/googlechrome/workbox/releases)
- [Commits](GoogleChrome/workbox@v7.0.0...v7.3.0)

Updates `workbox-routing` from 7.0.0 to 7.3.0
- [Release notes](https://github.com/googlechrome/workbox/releases)
- [Commits](GoogleChrome/workbox@v7.0.0...v7.3.0)

Updates `workbox-strategies` from 7.0.0 to 7.3.0
- [Release notes](https://github.com/googlechrome/workbox/releases)
- [Commits](GoogleChrome/workbox@v7.0.0...v7.3.0)

Updates `zod` from 3.22.4 to 3.24.0
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Changelog](https://github.com/colinhacks/zod/blob/main/CHANGELOG.md)
- [Commits](colinhacks/zod@v3.22.4...v3.24.0)

Updates `@playwright/experimental-ct-react` from 1.40.1 to 1.49.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.40.1...v1.49.1)

Updates `eslint-import-resolver-typescript` from 3.6.1 to 3.7.0
- [Release notes](https://github.com/import-js/eslint-import-resolver-typescript/releases)
- [Changelog](https://github.com/import-js/eslint-import-resolver-typescript/blob/master/CHANGELOG.md)
- [Commits](import-js/eslint-import-resolver-typescript@v3.6.1...v3.7.0)

Updates `eslint-plugin-import` from 2.29.1 to 2.31.0
- [Release notes](https://github.com/import-js/eslint-plugin-import/releases)
- [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md)
- [Commits](import-js/eslint-plugin-import@v2.29.1...v2.31.0)

Updates `eslint-plugin-jsx-a11y` from 6.8.0 to 6.10.2
- [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.8.0...v6.10.2)

Updates `eslint-plugin-react` from 7.33.2 to 7.37.2
- [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.37.2)

Updates `openapi-zod-client` from 1.15.0 to 1.18.2
- [Release notes](https://github.com/astahmer/openapi-zod-client/releases)
- [Changelog](https://github.com/astahmer/openapi-zod-client/blob/main/CHANGELOG.md)
- [Commits](https://github.com/astahmer/openapi-zod-client/compare/[email protected]@1.18.2)

Updates `playwright` from 1.40.1 to 1.49.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.40.1...v1.49.1)

Updates `vite-plugin-pwa` from 0.17.4 to 0.21.1
- [Release notes](https://github.com/vite-pwa/vite-plugin-pwa/releases)
- [Commits](vite-pwa/vite-plugin-pwa@v0.17.4...v0.21.1)

---
updated-dependencies:
- dependency-name: "@emotion/react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@fontsource/material-icons"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@mantine/core"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@mantine/dates"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@mantine/form"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@mantine/hooks"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@mantine/notifications"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@reduxjs/toolkit"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: immer
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: jotai
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: react-redux
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: react-virtuoso
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: workbox-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: workbox-expiration
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: workbox-precaching
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: workbox-routing
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: workbox-strategies
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: zod
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@playwright/experimental-ct-react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: eslint-import-resolver-typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: eslint-plugin-import
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: eslint-plugin-jsx-a11y
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: eslint-plugin-react
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: openapi-zod-client
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: playwright
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: vite-plugin-pwa
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 10, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 11, 2024

Superseded by #487.

@dependabot dependabot bot closed this Dec 11, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/client/minor-584d23aa44 branch December 11, 2024 21:48
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