Skip to content

chore(deps): bump the dependencies group across 1 directory with 19 updates#716

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dependencies-b8c243792a
Closed

chore(deps): bump the dependencies group across 1 directory with 19 updates#716
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dependencies-b8c243792a

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Mar 31, 2025

Bumps the dependencies group with 19 updates in the / directory:

Package From To
@storybook/addon-interactions 8.5.5 8.6.11
storybook 8.5.5 8.6.11
react-hook-form 7.54.2 7.55.0
@availity/authorize 4.1.2 4.1.4
@mui/types 7.2.22 7.4.0
@availity/api-axios 10.0.0 10.0.2
jscodeshift 17.1.2 17.3.0
@types/jscodeshift 0.12.0 17.3.0
postcss-cli 11.0.0 11.0.1
@mui/x-date-pickers 7.26.0 7.28.2
@availity/analytics-core 5.0.8 5.0.10
@availity/message-core 7.0.2 7.0.5
@availity/upload-core 7.0.3 7.0.4
tus-js-client 4.2.3 4.3.1
msw 2.4.11 2.7.3
@availity/hooks 5.1.2 5.1.3
@availity/native-form 6.0.8 6.0.10
@availity/resolve-url 3.0.2 3.0.3
@mui/x-tree-view 7.26.0 7.28.1

Updates @storybook/addon-interactions from 8.5.5 to 8.6.11

Release notes

Sourced from @​storybook/addon-interactions's releases.

v8.6.11

8.6.11

v8.6.10

8.6.10

v8.6.9

8.6.9

v8.6.8

8.6.8

v8.6.7

8.6.7

v8.6.6

8.6.6

v8.6.5

8.6.5

... (truncated)

Changelog

Sourced from @​storybook/addon-interactions's changelog.

8.6.11

8.6.10

8.6.9

8.6.8

8.6.7

8.6.6

8.6.5

8.6.4

8.6.3

... (truncated)

Commits
  • 2afd30d Bump version from "8.6.10" to "8.6.11" [skip ci]
  • 23d2037 Bump version from "8.6.9" to "8.6.10" [skip ci]
  • 207c2f4 Bump version from "8.6.8" to "8.6.9" [skip ci]
  • d4960ea Bump version from "8.6.7" to "8.6.8" [skip ci]
  • 019cd1f Bump version from "8.6.6" to "8.6.7" [skip ci]
  • 9a7a795 Bump version from "8.6.5" to "8.6.6" [skip ci]
  • 4e23d75 Bump version from "8.6.4" to "8.6.5" [skip ci]
  • d826042 Bump version from "8.6.3" to "8.6.4" [skip ci]
  • d4e73f5 Bump version from "8.6.2" to "8.6.3" [skip ci]
  • 054974b Bump version from "8.6.1" to "8.6.2" [skip ci]
  • Additional commits viewable in compare view

Updates storybook from 8.5.5 to 8.6.11

Release notes

Sourced from storybook's releases.

v8.6.11

8.6.11

v8.6.10

8.6.10

v8.6.9

8.6.9

v8.6.8

8.6.8

v8.6.7

8.6.7

v8.6.6

8.6.6

v8.6.5

8.6.5

... (truncated)

Changelog

Sourced from storybook's changelog.

8.6.11

8.6.10

8.6.9

8.6.8

8.6.7

8.6.6

8.6.5

8.6.4

8.6.3

... (truncated)

Commits
  • 2afd30d Bump version from "8.6.10" to "8.6.11" [skip ci]
  • 23d2037 Bump version from "8.6.9" to "8.6.10" [skip ci]
  • 207c2f4 Bump version from "8.6.8" to "8.6.9" [skip ci]
  • d4960ea Bump version from "8.6.7" to "8.6.8" [skip ci]
  • 019cd1f Bump version from "8.6.6" to "8.6.7" [skip ci]
  • 9a7a795 Bump version from "8.6.5" to "8.6.6" [skip ci]
  • 4e23d75 Bump version from "8.6.4" to "8.6.5" [skip ci]
  • d826042 Bump version from "8.6.3" to "8.6.4" [skip ci]
  • d4e73f5 Bump version from "8.6.2" to "8.6.3" [skip ci]
  • 054974b Bump version from "8.6.1" to "8.6.2" [skip ci]
  • Additional commits viewable in compare view

Updates react-hook-form from 7.54.2 to 7.55.0

Release notes

Sourced from react-hook-form's releases.

Version 7.55.0

⚡️ createFormControl

  • Allow us to start subscribing outside of the React component
const { formControl, control } = createFormControl(props)
function App() {
const { register } = useForm({
formControl,
})
return <form />
}
function Test() {
useFormState({
control // no longer need context api
})
}

⚡️ subscribe

  • subscribe form state update without re-render
  • subscribe outside of the react component
const { formControl } = createFormControl(props)
formControl.subscribe({
formState: { isDirty: true },
callback: (formState) => {
if (formState.isDirty) {
// do something here
}
}
})
function App() {
const { register } = useForm({
formControl,
})
return <form />
}

🪲 fix react-hook-form/react-hook-form#12680: Update Fieldarray Unmount Status (react-hook-form/react-hook-form#12690)

... (truncated)

Commits

Updates @availity/authorize from 4.1.2 to 4.1.4

Changelog

Sourced from @​availity/authorize's changelog.

4.1.4 (2025-03-10)

4.1.3 (2025-03-10)

Commits
  • 6d6f711 chore(@​availity/authorize): release version 4.1.4 [skip ci]
  • 4ce0382 Merge pull request #1540 from Availity/build/express-dep
  • 17f87c1 build: upgrade some deps
  • 183aa2b chore(@​availity/authorize): release version 4.1.3 [skip ci]
  • e143a5f chore(deps-dev): bump axios from 1.7.4 to 1.8.2
  • See full diff in compare view

Updates @mui/types from 7.2.22 to 7.4.0

Commits

Updates @availity/api-axios from 10.0.0 to 10.0.2

Changelog

Sourced from @​availity/api-axios's changelog.

10.0.2 (2025-03-14)

10.0.1 (2025-03-10)

Commits
  • 91f0925 chore(api-axios): release version 10.0.2 [skip ci]
  • 4b9d074 build: update nx config
  • 97f2739 build: add exports field
  • 59c675d chore(@​availity/api-axios): release version 10.0.1 [skip ci]
  • 63f1d13 build: upgrade some deps
  • See full diff in compare view

Updates jscodeshift from 17.1.2 to 17.3.0

Release notes

Sourced from jscodeshift's releases.

v17.3.0

Minor Changes

  • 6c2ff57: Bumps recast to allow parsing of Typescript type arguments on tagged template literals

v17.2.0

Minor Changes

  • e5fe5be: Bumps recast to resolve a bug where JSX elements are wrapped in two pairs of parenthesis
Changelog

Sourced from jscodeshift's changelog.

17.3.0

Minor Changes

  • 6c2ff57: Bumps recast to allow parsing of Typescript type arguments on tagged template literals

17.2.0

Minor Changes

  • e5fe5be: Bumps recast to resolve a bug where JSX elements are wrapped in two pairs of parenthesis
Commits
  • 4e1aa60 Version Packages
  • b04510b Bump prismjs from 1.29.0 to 1.30.0 in /website
  • eb6a2fb Bump @​babel/helpers from 7.26.0 to 7.26.10 in /website
  • 6c2ff57 Bump recast to 0.23.10 - resolve parse failure for Typescript tagged template...
  • b858e34 Version Packages
  • e5fe5be bumps recast to the latest to resolve jsx double brackets issue (#651)
  • See full diff in compare view

Updates @types/jscodeshift from 0.12.0 to 17.3.0

Commits

Updates postcss-cli from 11.0.0 to 11.0.1

Changelog

Sourced from postcss-cli's changelog.

11.0.1 / 2025-03-12

  • Update and minimize dependencies
Commits

Updates @mui/x-date-pickers from 7.26.0 to 7.28.2

Release notes

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

7.28.2

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

  • 🐞 Bugfixes

Team members who have contributed to this release: @​flaviendelangle, @​LukasTy, @​arminmeh.

Data Grid

@mui/x-data-grid@7.28.2

  • [DataGrid] Fix error caused by trying to render rows that are not in the state anymore (#17117) @​arminmeh

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

Same changes as in @mui/x-data-grid@7.28.2.

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

Same changes as in @mui/x-data-grid-pro@7.28.2.

Date and Time Pickers

@mui/x-date-pickers@7.28.2

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

Same changes as in @mui/x-date-pickers@7.28.2.

Core

  • [code-infra] Remove test_regressions step from React 18 pipeline (#17109) @​LukasTy

v7.28.1

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

  • 🐞 Bugfixes

Special thanks go out to the community contributors who have helped make this release possible: @​jyash97, @​nusr.

Following are all team members who have contributed to this release: @​arminmeh, @​KenanYusuf.

Data Grid

... (truncated)

Changelog

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

7.28.2

Mar 28, 2025

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

  • 🐞 Bugfixes

Team members who have contributed to this release: @​flaviendelangle, @​LukasTy, @​arminmeh.

Data Grid

@mui/x-data-grid@7.28.2

  • [DataGrid] Fix error caused by trying to render rows that are not in the state anymore (#17117) @​arminmeh

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

Same changes as in @mui/x-data-grid@7.28.2.

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

Same changes as in @mui/x-data-grid-pro@7.28.2.

Date and Time Pickers

@mui/x-date-pickers@7.28.2

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

Same changes as in @mui/x-date-pickers@7.28.2.

Core

  • [code-infra] Remove test_regressions step from React 18 pipeline (#17109) @​LukasTy

7.28.1

Mar 21, 2025

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

  • 🐞 Bugfixes

Special thanks go out to the community contributors who have helped make this release possible:

... (truncated)

Commits

Updates @availity/analytics-core from 5.0.8 to 5.0.10

Changelog

Sourced from @​availity/analytics-core's changelog.

5.0.10 (2025-03-14)

Dependency Updates

  • api-axios updated to version 5.0.9

5.0.9 (2025-03-10)

Dependency Updates

  • @availity/api-axios updated to version 5.0.8
Commits
  • 6265dfe chore(analytics-core): release version 5.0.10 [skip ci]
  • 4b9d074 build: update nx config
  • 97f2739 build: add exports field
  • 7b62e5e chore(@​availity/analytics-core): release version 5.0.9 [skip ci]
  • 63f1d13 build: upgrade some deps
  • See full diff in compare view

Updates @availity/message-core from 7.0.2 to 7.0.5

Changelog

Sourced from @​availity/message-core's changelog.

7.0.5 (2025-03-14)

7.0.4 (2025-03-13)

7.0.3 (2025-03-10)

Commits
  • acfb384 chore(message-core): release version 7.0.5 [skip ci]
  • 4b9d074 build: update nx config
  • 8a9f63e chore(@​availity/message-core): release version 7.0.4 [skip ci]
  • 5a7d4ab refactor(message-core): account for all variations of origin traffic on postM...
  • 6f114bc chore(@​availity/message-core): release version 7.0.3 [skip ci]
  • 63f1d13 build: upgrade some deps
  • See full diff in compare view

Updates @availity/upload-core from 7.0.3 to 7.0.4

Changelog

Sourced from @​availity/upload-core's changelog.

7.0.4 (2025-03-14)

Dependency Updates

  • resolve-url updated to version 7.0.3
Commits
  • dd9b733 chore(upload-core): release version 7.0.4 [skip ci]
  • 4b9d074 build: update nx config
  • c2bd606 build(upload-core): update nx config
  • See full diff in compare view

Updates tus-js-client from 4.2.3 to 4.3.1

Release notes

Sourced from tus-js-client's releases.

v4.3.1

This patch releases fixes a problem from the last v4.3.0 release when bundling tus-js-client (tus/tus-js-client#748).

Full Changelog: tus/tus-js-client@v4.3.0...v4.3.1

v4.3.0

What's Changed

New Contributors

Full Changelog: tus/tus-js-client@v4.2.3...v4.3.0

Commits

Updates msw from 2.4.11 to 2.7.3

Release notes

Sourced from msw's releases.

v2.7.3 (2025-02-24)

Bug Fixes

  • do not treat static asset requests as unhandled by default (#2440, docs) (eb45e7a93e2e4525c955ff0df1ec149c6b9de70e) @​kettanaito

v2.7.2 (2025-02-24)

Bug Fixes

  • HttpResponse: set the default bodyType to any (#2439) (bb1faf80645c551053e773382d9b56775f8bb580) @​kettanaito

v2.7.1 (2025-02-20)

Bug Fixes

  • HttpResponse: support non-configurable status codes (#2434) (0cf639e9c12b25093fe8aa0cce865168ea7db978) @​kettanaito

v2.7.0 (2024-12-17)

Features

v2.6.9 (2024-12-16)

Bug Fixes

v2.6.8 (2024-12-07)

Bug Fixes

  • setupServer: reapply interception after calling server.listen() after server.close() (#2383) (00da9cad4249b61732ee375d9dbefeb76028cc2b) @​kettanaito

v2.6.7 (2024-12-06)

Bug Fixes

v2.6.6 (2024-11-22)

Bug Fixes

  • types: support optional path parameters (#2368) (3b7b776e8c0de341185df4686a895c24326748d3) @​kettanaito

v2.6.5 (2024-11-16)

... (truncated)

Commits
  • fd77dbb chore(release): v2.7.3
  • eb45e7a fix: do not treat static asset requests as unhandled by default (#2440)
  • d0729ae chore(release): v2.7.2
  • bb1faf8 fix(HttpResponse): set the default bodyType to any (#2439)
  • 5e042cb chore(release): v2.7.1
  • ...

    Description has been truncated

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 31, 2025
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/dependencies-b8c243792a branch 3 times, most recently from 536fb7e to c272a3d Compare April 4, 2025 18:05
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/dependencies-b8c243792a branch 2 times, most recently from da3672b to 43bc0b9 Compare April 8, 2025 22:01
…pdates

Bumps the dependencies group with 19 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@storybook/addon-interactions](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/interactions) | `8.5.5` | `8.6.11` |
| [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli) | `8.5.5` | `8.6.11` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.54.2` | `7.55.0` |
| [@availity/authorize](https://github.com/Availity/availity-react/tree/HEAD/packages/authorize) | `4.1.2` | `4.1.4` |
| [@mui/types](https://github.com/mui/material-ui/tree/HEAD/packages/mui-types) | `7.2.22` | `7.4.0` |
| [@availity/api-axios](https://github.com/availity/sdk-js/tree/HEAD/packages/api-axios) | `10.0.0` | `10.0.2` |
| [jscodeshift](https://github.com/facebook/jscodeshift) | `17.1.2` | `17.3.0` |
| [@types/jscodeshift](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jscodeshift) | `0.12.0` | `17.3.0` |
| [postcss-cli](https://github.com/postcss/postcss-cli) | `11.0.0` | `11.0.1` |
| [@mui/x-date-pickers](https://github.com/mui/mui-x/tree/HEAD/packages/x-date-pickers) | `7.26.0` | `7.28.2` |
| [@availity/analytics-core](https://github.com/availity/sdk-js/tree/HEAD/packages/analytics-core) | `5.0.8` | `5.0.10` |
| [@availity/message-core](https://github.com/availity/sdk-js/tree/HEAD/packages/message-core) | `7.0.2` | `7.0.5` |
| [@availity/upload-core](https://github.com/availity/sdk-js/tree/HEAD/packages/upload-core) | `7.0.3` | `7.0.4` |
| [tus-js-client](https://github.com/tus/tus-js-client) | `4.2.3` | `4.3.1` |
| [msw](https://github.com/mswjs/msw) | `2.4.11` | `2.7.3` |
| [@availity/hooks](https://github.com/Availity/availity-react/tree/HEAD/packages/hooks) | `5.1.2` | `5.1.3` |
| [@availity/native-form](https://github.com/availity/sdk-js/tree/HEAD/packages/native-form) | `6.0.8` | `6.0.10` |
| [@availity/resolve-url](https://github.com/availity/sdk-js/tree/HEAD/packages/resolve-url) | `3.0.2` | `3.0.3` |
| [@mui/x-tree-view](https://github.com/mui/mui-x/tree/HEAD/packages/x-tree-view) | `7.26.0` | `7.28.1` |



Updates `@storybook/addon-interactions` from 8.5.5 to 8.6.11
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/v8.6.11/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.6.11/code/addons/interactions)

Updates `storybook` from 8.5.5 to 8.6.11
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/v8.6.11/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.6.11/code/lib/cli)

Updates `react-hook-form` from 7.54.2 to 7.55.0
- [Release notes](https://github.com/react-hook-form/react-hook-form/releases)
- [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md)
- [Commits](react-hook-form/react-hook-form@v7.54.2...v7.55.0)

Updates `@availity/authorize` from 4.1.2 to 4.1.4
- [Release notes](https://github.com/Availity/availity-react/releases)
- [Changelog](https://github.com/Availity/availity-react/blob/master/packages/authorize/CHANGELOG.md)
- [Commits](https://github.com/Availity/availity-react/commits/@availity/authorize@4.1.4/packages/authorize)

Updates `@mui/types` from 7.2.22 to 7.4.0
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/HEAD/packages/mui-types)

Updates `@availity/api-axios` from 10.0.0 to 10.0.2
- [Release notes](https://github.com/availity/sdk-js/releases)
- [Changelog](https://github.com/Availity/sdk-js/blob/master/packages/api-axios/CHANGELOG.md)
- [Commits](https://github.com/availity/sdk-js/commits/@availity/api-axios@10.0.2/packages/api-axios)

Updates `jscodeshift` from 17.1.2 to 17.3.0
- [Release notes](https://github.com/facebook/jscodeshift/releases)
- [Changelog](https://github.com/facebook/jscodeshift/blob/main/CHANGELOG.md)
- [Commits](facebook/jscodeshift@v17.1.2...v17.3.0)

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

Updates `postcss-cli` from 11.0.0 to 11.0.1
- [Release notes](https://github.com/postcss/postcss-cli/releases)
- [Changelog](https://github.com/postcss/postcss-cli/blob/master/CHANGELOG.md)
- [Commits](postcss/postcss-cli@11.0.0...11.0.1)

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

Updates `@availity/analytics-core` from 5.0.8 to 5.0.10
- [Release notes](https://github.com/availity/sdk-js/releases)
- [Changelog](https://github.com/Availity/sdk-js/blob/master/packages/analytics-core/CHANGELOG.md)
- [Commits](https://github.com/availity/sdk-js/commits/@availity/analytics-core@5.0.10/packages/analytics-core)

Updates `@availity/message-core` from 7.0.2 to 7.0.5
- [Release notes](https://github.com/availity/sdk-js/releases)
- [Changelog](https://github.com/Availity/sdk-js/blob/master/packages/message-core/CHANGELOG.md)
- [Commits](https://github.com/availity/sdk-js/commits/@availity/message-core@7.0.5/packages/message-core)

Updates `@availity/upload-core` from 7.0.3 to 7.0.4
- [Release notes](https://github.com/availity/sdk-js/releases)
- [Changelog](https://github.com/Availity/sdk-js/blob/master/packages/upload-core/CHANGELOG.md)
- [Commits](https://github.com/availity/sdk-js/commits/@availity/upload-core@7.0.4/packages/upload-core)

Updates `tus-js-client` from 4.2.3 to 4.3.1
- [Release notes](https://github.com/tus/tus-js-client/releases)
- [Commits](tus/tus-js-client@v4.2.3...v4.3.1)

Updates `msw` from 2.4.11 to 2.7.3
- [Release notes](https://github.com/mswjs/msw/releases)
- [Changelog](https://github.com/mswjs/msw/blob/main/CHANGELOG.md)
- [Commits](mswjs/msw@v2.4.11...v2.7.3)

Updates `@availity/hooks` from 5.1.2 to 5.1.3
- [Release notes](https://github.com/Availity/availity-react/releases)
- [Changelog](https://github.com/Availity/availity-react/blob/master/packages/hooks/CHANGELOG.md)
- [Commits](https://github.com/Availity/availity-react/commits/@availity/hooks@5.1.3/packages/hooks)

Updates `@availity/native-form` from 6.0.8 to 6.0.10
- [Release notes](https://github.com/availity/sdk-js/releases)
- [Changelog](https://github.com/Availity/sdk-js/blob/master/packages/native-form/CHANGELOG.md)
- [Commits](https://github.com/availity/sdk-js/commits/@availity/native-form@6.0.10/packages/native-form)

Updates `@availity/resolve-url` from 3.0.2 to 3.0.3
- [Release notes](https://github.com/availity/sdk-js/releases)
- [Changelog](https://github.com/Availity/sdk-js/blob/master/packages/resolve-url/CHANGELOG.md)
- [Commits](https://github.com/availity/sdk-js/commits/@availity/resolve-url@3.0.3/packages/resolve-url)

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

---
updated-dependencies:
- dependency-name: "@storybook/addon-interactions"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: storybook
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: react-hook-form
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@availity/authorize"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@mui/types"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@availity/api-axios"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: jscodeshift
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/jscodeshift"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: postcss-cli
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@mui/x-date-pickers"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@availity/analytics-core"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@availity/message-core"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@availity/upload-core"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: tus-js-client
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: msw
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@availity/hooks"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@availity/native-form"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@availity/resolve-url"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@mui/x-tree-view"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/dependencies-b8c243792a branch from 43bc0b9 to 1f4c422 Compare April 9, 2025 12:22
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 10, 2025

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

@dependabot dependabot Bot closed this Apr 10, 2025
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/dependencies-b8c243792a branch April 10, 2025 14:09
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