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 npm-dependencies group with 11 updates #958

Merged

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the npm-dependencies group with 11 updates:

Package From To
@marsidev/react-turnstile 0.6.1 0.7.1
@mui/material 5.15.19 5.15.21
@mui/x-tree-view 7.6.1 7.8.0
@reduxjs/toolkit 2.2.5 2.2.6
@testing-library/jest-dom 6.4.5 6.4.6
@testing-library/react 15.0.7 16.0.0
framer-motion 11.2.10 11.2.12
react-intersection-observer 9.10.2 9.10.3
react-router-dom 6.23.1 6.24.0
react-zoom-pan-pinch 3.4.4 3.6.0
prettier 3.2.5 3.3.2

Updates @marsidev/react-turnstile from 0.6.1 to 0.7.1

Release notes

Sourced from @​marsidev/react-turnstile's releases.

v0.7.1

   🐞 Bug Fixes

    View changes on GitHub

v0.7.0

   🐞 Bug Fixes

  • Change script injection method to prevent multiple scripts console warning  -  by @​marsidev (66f85)
    • Now we always use a single Turnstile script
    • Now is not mandatory to set unique IDs when using multiple widgets, but it's still suggested for semantic reasons
    • The new logic for the script injection was inspired by this other library: Le0Developer/react-turnstile 🙌

   🚀 Features

    View changes on GitHub
Commits

Updates @mui/material from 5.15.19 to 5.15.21

Release notes

Sourced from @​mui/material's releases.

v5.15.21

Jun 28, 2024

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

@mui/[email protected]

Docs

Core

All contributors of this release in alphabetical order: @​alexfauquette, @​alexismo, @​arminmeh, @​Danielkhakbaz, @​DiegoAndai, @​mnajdova, @​oliviertassinari

v5.15.20

Jun 12, 2024

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

@mui/[email protected]

@mui/[email protected]

Docs

... (truncated)

Changelog

Sourced from @​mui/material's changelog.

v5.15.21

Jun 28, 2024

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

@mui/[email protected]

Docs

Core

All contributors of this release in alphabetical order: @​alexfauquette, @​alexismo, @​arminmeh, @​Danielkhakbaz, @​DiegoAndai, @​mnajdova, @​oliviertassinari

v5.15.20

Jun 12, 2024

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

@mui/[email protected]

@mui/[email protected]

Docs

... (truncated)

Commits

Updates @mui/x-tree-view from 7.6.1 to 7.8.0

Release notes

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

v7.8.0

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

  • 🛰 Introduce server-side data source for improved server integration in the Data Grid.

    Supports server-side pagination, sorting and filtering on plain and tree data, and automatic caching.

    To enable, provide a getRows function to the unstable_dataSource prop on the Data Grid component.

    const dataSource = {
      getRows: async (params: GridServerGetRowsParams) => {
        const data = await fetch(
          `https://api.example.com/data?${new URLSearchParams({
            page: params.page,
            pageSize: params.pageSize,
            sortModel: JSON.stringify(params.sortModel),
            filterModel: JSON.stringify(params.filterModel),
          }).toString()}`,
        );
        return {
          rows: data.rows,
          totalRows: data.totalRows,
        };
      },
    }
    <DataGridPro
      unstable_dataSource={dataSource}
      {...otherProps}
    />

    See server-side data documentation for more details.

  • 📈 Support Date data on the BarChart component

  • ↕️ Support custom column sort icons on the Data Grid

  • 🖱️ Support modifying the expansion trigger on the Tree View components

Data Grid

@mui/[email protected]

@mui/[email protected] pro

... (truncated)

Changelog

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

7.8.0

Jun 28, 2024

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

  • 🛰 Introduce server-side data source for improved server integration in the Data Grid.

    Supports server-side pagination, sorting and filtering on plain and tree data, and automatic caching.

    To enable, provide a getRows function to the unstable_dataSource prop on the Data Grid component.

    const dataSource = {
      getRows: async (params: GridServerGetRowsParams) => {
        const data = await fetch(
          `https://api.example.com/data?${new URLSearchParams({
            page: params.page,
            pageSize: params.pageSize,
            sortModel: JSON.stringify(params.sortModel),
            filterModel: JSON.stringify(params.filterModel),
          }).toString()}`,
        );
        return {
          rows: data.rows,
          totalRows: data.totalRows,
        };
      },
    }
    <DataGridPro
      unstable_dataSource={dataSource}
      {...otherProps}
    />

    See server-side data documentation for more details.

  • 📈 Support Date data on the BarChart component

  • ↕️ Support custom column sort icons on the Data Grid

  • 🖱️ Support modifying the expansion trigger on the Tree View components

Data Grid

@mui/[email protected]

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by kyusuf, a new releaser for @​mui/x-tree-view since your current version.


Updates @reduxjs/toolkit from 2.2.5 to 2.2.6

Release notes

Sourced from @​reduxjs/toolkit's releases.

v2.2.6

This bugfix release:

  • Brings internal useIsomorphicLayoutEffect usage in line with React Redux in React Native environments
  • Exports FetchBaseQueryArgs type
  • Fixes an issue in recent createEntityAdapter sorting perf improvements that could (in specific cases) cause Immer to throw an error

What's Changed

Full Changelog: reduxjs/redux-toolkit@v2.2.5...v2.2.6

Commits

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

Release notes

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

v6.4.6

6.4.6 (2024-06-10)

Bug Fixes

Commits

Updates @testing-library/react from 15.0.7 to 16.0.0

Release notes

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

v16.0.0

16.0.0 (2024-06-03)

Features

  • Move @testing-library/dom and @types/react-dom to peer dependencies (#1305) (a4744fa)

BREAKING CHANGES

  • @testing-library/dom was moved to a peer dependency and needs to be explicitly installed. This reduces the chance of having conflicting versions of @testing-library/dom installed that frequently caused bugs when used with @testing-library/user-event. We will also be able to allow new versions of @testing-library/dom being used without a SemVer major release of @testing-library/react by just widening the peer dependency. @types/react-dom needs to be installed if you're typechecking files using @testing-library/react.
Commits
  • a4744fa feat: Move @testing-library/dom and @types/react-dom to peer dependencie...
  • See full diff in compare view

Updates framer-motion from 11.2.10 to 11.2.12

Changelog

Sourced from framer-motion's changelog.

[11.2.12] 2024-06-25

Fixed

  • Fixing dragConstraints={ref} mixed with layout animations.
Commits

Updates react-intersection-observer from 9.10.2 to 9.10.3

Release notes

Sourced from react-intersection-observer's releases.

v9.10.3

9.10.3 (2024-06-05)

Bug Fixes

  • test-utils - execute mockClear method only when it exists (712ae37)
Commits
  • 01c9992 Merge pull request #679 from karpiuMG/main
  • 712ae37 fix: test-utils - execute mockClear method only when it exists
  • dceba7f Merge pull request #676 from thebuilder/feat/pnpm-9
  • e37b7d7 ci: upgrade pnpm to version 9
  • b32b362 ci: upgrade pnpm to version 9
  • See full diff in compare view

Updates react-router-dom from 6.23.1 to 6.24.0

Release notes

Sourced from react-router-dom's releases.

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

... (truncated)

Changelog

Sourced from react-router-dom's changelog.

6.24.0

Minor Changes

Patch Changes

  • Fix fetcher.submit types - remove incorrect navigate/fetcherKey/unstable_viewTransition options because they are only relevant for useSubmit (#11631)
  • Allow falsy location.state values passed to <StaticRouter> (#11495)
  • Updated dependencies:
Commits

Updates react-zoom-pan-pinch from 3.4.4 to 3.6.0

Release notes

Sourced from react-zoom-pan-pinch's releases.

v3.6.0

3.6.0 (2024-06-27)

Features

v3.5.1

3.5.1 (2024-06-23)

Bug Fixes

  • Added docs for useTransformComponent and fixed the hook to update on context change (#480) (16e1466)

v3.5.0

3.5.0 (2024-06-21)

Bug Fixes

Features

  • Support for simultaneous pinching and zooming (#475) (e2b0df4)
  • transform-hook: UseTransformComponent added (#405) (042c283)
Commits
  • ea15dfe Fix nested selectors extending too high (#481)
  • 2b436bd feat: MiniMap preview use viewport ratio (#482)
  • 16e1466 fix: Added docs for useTransformComponent and fixed the hook to update on con...
  • 9724b18 Merge branch 'master' of github.com:prc5/react-zoom-pan-pinch
  • 47bd71b fix: 🐛 linting
  • 042c283 feat(transform-hook): UseTransformComponent added (#405)
  • e2b0df4 feat: Support for simultaneous pinching and zooming (#475)
  • See full diff in compare view

Updates prettier from 3.2.5 to 3.3.2

Release notes

Sourced from prettier's releases.

3.3.2

🔗 Changelog

3.3.1

🔗 Changelog

3.3.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.3.2

diff

Fix handlebars path expressions starts with @ (#16358 by @​Princeyadav05)

{{! Input }}
<div>{{@x.y.z}}</div>
{{! Prettier 3.3.1 }}
<div>{{@​x}}</div>
{{! Prettier 3.3.2 }}
<div>{{@​x.y.z}}</div>

3.3.1

diff

Preserve empty lines in front matter (#16347 by @​fisker)

<!-- Input -->
---
foo:
  - bar1


bar2


bar3



Markdown
<!-- Prettier 3.3.0 -->

foo:

bar1
bar2
bar3


Markdown
<!-- Prettier 3.3.1 -->
</tr></table>

... (truncated)

Commits

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

Bumps the npm-dependencies group with 11 updates:

| Package | From | To |
| --- | --- | --- |
| [@marsidev/react-turnstile](https://github.com/marsidev/react-turnstile) | `0.6.1` | `0.7.1` |
| [@mui/material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material) | `5.15.19` | `5.15.21` |
| [@mui/x-tree-view](https://github.com/mui/mui-x/tree/HEAD/packages/x-tree-view) | `7.6.1` | `7.8.0` |
| [@reduxjs/toolkit](https://github.com/reduxjs/redux-toolkit) | `2.2.5` | `2.2.6` |
| [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) | `6.4.5` | `6.4.6` |
| [@testing-library/react](https://github.com/testing-library/react-testing-library) | `15.0.7` | `16.0.0` |
| [framer-motion](https://github.com/framer/motion) | `11.2.10` | `11.2.12` |
| [react-intersection-observer](https://github.com/thebuilder/react-intersection-observer) | `9.10.2` | `9.10.3` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `6.23.1` | `6.24.0` |
| [react-zoom-pan-pinch](https://github.com/prc5/react-zoom-pan-pinch) | `3.4.4` | `3.6.0` |
| [prettier](https://github.com/prettier/prettier) | `3.2.5` | `3.3.2` |


Updates `@marsidev/react-turnstile` from 0.6.1 to 0.7.1
- [Release notes](https://github.com/marsidev/react-turnstile/releases)
- [Commits](marsidev/react-turnstile@v0.6.1...v0.7.1)

Updates `@mui/material` from 5.15.19 to 5.15.21
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/v5.15.21/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v5.15.21/packages/mui-material)

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

Updates `@reduxjs/toolkit` from 2.2.5 to 2.2.6
- [Release notes](https://github.com/reduxjs/redux-toolkit/releases)
- [Commits](reduxjs/redux-toolkit@v2.2.5...v2.2.6)

Updates `@testing-library/jest-dom` from 6.4.5 to 6.4.6
- [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.5...v6.4.6)

Updates `@testing-library/react` from 15.0.7 to 16.0.0
- [Release notes](https://github.com/testing-library/react-testing-library/releases)
- [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md)
- [Commits](testing-library/react-testing-library@v15.0.7...v16.0.0)

Updates `framer-motion` from 11.2.10 to 11.2.12
- [Changelog](https://github.com/framer/motion/blob/main/CHANGELOG.md)
- [Commits](framer/motion@v11.2.10...v11.2.12)

Updates `react-intersection-observer` from 9.10.2 to 9.10.3
- [Release notes](https://github.com/thebuilder/react-intersection-observer/releases)
- [Commits](thebuilder/react-intersection-observer@v9.10.2...v9.10.3)

Updates `react-router-dom` from 6.23.1 to 6.24.0
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/[email protected]/packages/react-router-dom)

Updates `react-zoom-pan-pinch` from 3.4.4 to 3.6.0
- [Release notes](https://github.com/prc5/react-zoom-pan-pinch/releases)
- [Changelog](https://github.com/BetterTyped/react-zoom-pan-pinch/blob/master/CHANGELOG.md)
- [Commits](BetterTyped/react-zoom-pan-pinch@v3.4.4...v3.6.0)

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

---
updated-dependencies:
- dependency-name: "@marsidev/react-turnstile"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@mui/material"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@mui/x-tree-view"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@reduxjs/toolkit"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@testing-library/jest-dom"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: "@testing-library/react"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: framer-motion
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: react-intersection-observer
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: react-zoom-pan-pinch
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner July 1, 2024 01:05
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jul 1, 2024
Copy link
Contributor

github-actions bot commented Jul 1, 2024

👋 Thanks for opening a pull request!

If you are new, please check out the trimmed down summary of our deployment process below:

  1. 👀 Observe the CI jobs and tests to ensure they are passing

  2. ✔️ Obtain an approval/review on this pull request

  3. 🚀 Deploy your pull request to the development environment with .deploy to development

  4. 🚀 Deploy your pull request to the production environment with .deploy

    If anything goes wrong, rollback with .deploy main

  5. 🎉 Merge!

Note: If you have a larger change and want to block deployments, you can run .lock --reason <reason> to lock all other deployments (remove with .unlock)

You can view the branch deploy usage guide for additional information

@Razzmatazzz
Copy link
Member

.deploy

Copy link
Contributor

github-actions bot commented Jul 1, 2024

Deployment Triggered 🚀

Razzmatazzz, started a branch deployment to production

You can watch the progress here 🔗

Branch: dependabot/npm_and_yarn/npm-dependencies-7d38acc1cc

Copy link
Contributor

github-actions bot commented Jul 1, 2024

Deployment Results ✅

Razzmatazzz successfully deployed branch dependabot/npm_and_yarn/npm-dependencies-7d38acc1cc to production

Environment URL: tarkov.dev

@Razzmatazzz
Copy link
Member

.deploy main

Copy link
Contributor

github-actions bot commented Jul 1, 2024

Deployment Triggered 🚀

Razzmatazzz, started a branch deployment to production

You can watch the progress here 🔗

Branch: main

Copy link
Contributor

github-actions bot commented Jul 1, 2024

Deployment Results ✅

Razzmatazzz successfully deployed branch main to production

Environment URL: tarkov.dev

@Razzmatazzz
Copy link
Member

.deploy

Copy link
Contributor

github-actions bot commented Jul 1, 2024

Deployment Triggered 🚀

Razzmatazzz, started a branch deployment to production

You can watch the progress here 🔗

Branch: dependabot/npm_and_yarn/npm-dependencies-7d38acc1cc

Copy link
Contributor

github-actions bot commented Jul 1, 2024

Deployment Results ❌

Razzmatazzz had a failure when deploying branch dependabot/npm_and_yarn/npm-dependencies-7d38acc1cc to production

@Razzmatazzz
Copy link
Member

.deploy

Copy link
Contributor

github-actions bot commented Jul 1, 2024

Deployment Triggered 🚀

Razzmatazzz, started a branch deployment to production

You can watch the progress here 🔗

Branch: dependabot/npm_and_yarn/npm-dependencies-7d38acc1cc

Copy link
Contributor

github-actions bot commented Jul 1, 2024

Deployment Results ✅

Razzmatazzz successfully deployed branch dependabot/npm_and_yarn/npm-dependencies-7d38acc1cc to production

Environment URL: tarkov.dev

@Razzmatazzz Razzmatazzz merged commit 2f9afd5 into main Jul 1, 2024
2 checks passed
@Razzmatazzz Razzmatazzz deleted the dependabot/npm_and_yarn/npm-dependencies-7d38acc1cc branch July 1, 2024 17:28
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.

None yet

1 participant