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-major group across 1 directory with 11 updates #95

Closed

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the npm-major group with 10 updates in the / directory:

Package From To
@mui/styled-engine-sc 5.14.7 6.0.0-alpha.18
@mui/x-data-grid 6.18.4 7.8.0
@mui/x-date-pickers 6.18.4 7.8.0
@sentry/react 7.109.0 8.13.0
@tanstack/react-query 4.33.0 5.49.2
@testing-library/react 14.2.2 16.0.0
react-hook-form-mui 6.7.3 7.0.0
husky 8.0.3 9.0.11
lint-staged 14.0.1 15.2.7
typescript 4.9.5 5.5.2

Updates @mui/styled-engine-sc from 5.14.7 to 6.0.0-alpha.18

Release notes

Sourced from @​mui/styled-engine-sc's releases.

v6.0.0-alpha.12

Jun 24, 2024

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

@mui/[email protected]

@mui/[email protected]

@mui/[email protected]

@mui/[email protected]

@mui/[email protected]

Docs

Core

... (truncated)

Changelog

Sourced from @​mui/styled-engine-sc's changelog.

Versions

v6.0.0-alpha.13

Jun 27, 2024

A big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:

@mui/[email protected]

  • [Autocomplete] Fix more React 18.3 key spread warnings in demos (#42639) @​wbt
  • [Container][Grid][Stack][Hidden] Export Pigment CSS layout components (#42693) @​siriwatknp
  • [Text Field] when click password visibility button, text caret position change to very front. (#42595) @​appleSimple
  • [Modal] migrate useSlotProps to useSLot (#42150) @​sai6855

@mui/[email protected]

Docs

Core

All contributors of this release in alphabetical order: @​aarongarciah, @​alelthomas, @​appleSimple, @​cjl750, @​Janpot, @​joetats, @​LukasTy, @​sai6855, @​siriwatknp, @​wbt

v6.0.0-alpha.12

Jun 24, 2024

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

@mui/[email protected]

... (truncated)

Commits

Updates @mui/x-data-grid from 6.18.4 to 7.8.0

Release notes

Sourced from @​mui/x-data-grid'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-data-grid'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-data-grid since your current version.


Updates @mui/x-date-pickers from 6.18.4 to 7.8.0

Release notes

Sourced from @​mui/x-date-pickers'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-date-pickers'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-date-pickers since your current version.


Updates @sentry/react from 7.109.0 to 8.13.0

Release notes

Sourced from @​sentry/react's releases.

8.13.0

Important Changes

  • feat(nestjs): Add Nest SDK This release adds a dedicated SDK for NestJS (@sentry/nestjs) in alpha state. The SDK is a drop-in replacement for the Sentry Node SDK (@sentry/node) supporting the same set of features. See the docs for how to use the SDK.

Other Changes

  • deps: Bump bundler plugins to 2.20.1 (#12641)
  • deps(nextjs): Remove react peer dep and allow rc (#12670)
  • feat: Update OTEL deps (#12635)
  • feat(deps): bump @​prisma/instrumentation from 5.15.0 to 5.15.1 (#12627)
  • feat(node): Add context info for missing instrumentation (#12639)
  • fix(feedback): Improve feedback error message (#12647)

Bundle size 📦

Path Size
@​sentry/browser 22.22 KB
@​sentry/browser (incl. Tracing) 33.31 KB
@​sentry/browser (incl. Tracing, Replay) 69.09 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 62.42 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 73.15 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 85.75 KB
@​sentry/browser (incl. Tracing, Replay, Feedback, metrics) 87.61 KB
@​sentry/browser (incl. metrics) 26.5 KB
@​sentry/browser (incl. Feedback) 38.86 KB
@​sentry/browser (incl. sendFeedback) 26.84 KB
@​sentry/browser (incl. FeedbackAsync) 31.45 KB
@​sentry/react 24.97 KB
@​sentry/react (incl. Tracing) 36.36 KB
@​sentry/vue 26.33 KB
@​sentry/vue (incl. Tracing) 35.17 KB
@​sentry/svelte 22.36 KB
CDN Bundle 23.42 KB
CDN Bundle (incl. Tracing) 35.05 KB
CDN Bundle (incl. Tracing, Replay) 69.18 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 74.38 KB
CDN Bundle - uncompressed 68.8 KB
CDN Bundle (incl. Tracing) - uncompressed 103.66 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 214.13 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 226.84 KB
@​sentry/nextjs (client) 36.24 KB
@​sentry/sveltekit (client) 33.95 KB
@​sentry/node 130.61 KB
@​sentry/node - without tracing 91.63 KB
@​sentry/aws-serverless 116.8 KB

... (truncated)

Changelog

Sourced from @​sentry/react's changelog.

8.13.0

Important Changes

  • feat(nestjs): Add Nest SDK This release adds a dedicated SDK for NestJS (@sentry/nestjs) in alpha state. The SDK is a drop-in replacement for the Sentry Node SDK (@sentry/node) supporting the same set of features. See the docs for how to use the SDK.

Other Changes

  • deps: Bump bundler plugins to 2.20.1 (#12641)
  • deps(nextjs): Remove react peer dep and allow rc (#12670)
  • feat: Update OTEL deps (#12635)
  • feat(deps): bump @​prisma/instrumentation from 5.15.0 to 5.15.1 (#12627)
  • feat(node): Add context info for missing instrumentation (#12639)
  • fix(feedback): Improve feedback error message (#12647)

8.12.0

Important Changes

  • feat(solid): Remove need to pass router hooks to solid integration (breaking)

This release introduces breaking changes to the @sentry/solid package (which is currently out in alpha).

We've made it easier to get started with the solid router integration by removing the need to pass use* hooks explicitly to solidRouterBrowserTracingIntegration. Import solidRouterBrowserTracingIntegration from @sentry/solid/solidrouter and add it to Sentry.init

import * as Sentry from '@sentry/solid';
import { solidRouterBrowserTracingIntegration, withSentryRouterRouting } from '@sentry/solid/solidrouter';
import { Router } from '@solidjs/router';
Sentry.init({
dsn: 'PUBLIC_DSN',
integrations: [solidRouterBrowserTracingIntegration()],
tracesSampleRate: 1.0, //  Capture 100% of the transactions
});
const SentryRouter = withSentryRouterRouting(Router);

  • feat(core): Return client from init method (#12585)

Sentry.init() now returns a client directly, so you don't need to explicitly call getClient() anymore:

const client = Sentry.init();

... (truncated)

Commits

Updates @tanstack/react-query from 4.33.0 to 5.49.2

Release notes

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

v5.49.2

Version 5.49.2 - 6/30/24, 6:11 AM

Changes

Fix

  • react-query: experimental before/after query options (#7652) (56fad10) by Tanner Linsley
  • react-query: experimental before/after query options (#7651) (4be599f) by Tanner Linsley

Packages

  • @​tanstack/react-query@​5.49.2
  • @​tanstack/react-query-devtools@​5.49.2
  • @​tanstack/react-query-persist-client@​5.49.2
  • @​tanstack/react-query-next-experimental@​5.49.2

v5.49.1

Version 5.49.1 - 6/30/24, 5:49 AM

Changes

Fix

  • react-query: add experimental beforeQuery/afterQuery client options (#7650) (8927e4c) by Tanner Linsley

Ci

  • Optimise Nx workflow (#7648) (a80cea3) by Lachlan Collins

Docs

  • examples: Update Next.js version (#7649) (f454bf1) by Lachlan Collins

Packages

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

... (truncated)

Commits

Updates @testing-library/react from 14.2.2 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.

v15.0.7

15.0.7 (2024-05-07)

Bug Fixes

  • Ensure act is not any when React.act is not declared (#1323) (c1f2957)

v15.0.6

15.0.6 (2024-05-01)

Bug Fixes

v15.0.5

15.0.5 (2024-04-26)

Bug Fixes

  • Stop restricting container option based on hydrate (#1313) (d143f46)

v15.0.4

15.0.4 (2024-04-23)

Bug Fixes

  • Ensure renderHook options extend options for render (#1308) (48282c2)

v15.0.3

... (truncated)

Commits
  • a4744fa feat: Move @testing-library/dom and @types/react-dom to peer dependencie...
  • c1f2957 fix: Ensure act is not any when React.act is not declared (#1323)
  • b6e59f7 fix: export new act when available (#1319)
  • f6a1677 chore: Adjust tests to workaround 18.3.0 bug (#1315)
  • d143f46 fix: Stop restricting container option based on hydrate (#1313)
  • 48282c2 fix: Ensure renderHook options extend options for render (#1308)
  • 067d0c6 fix: Don't raise TypeScript errors when hydating document (#1304)
  • c63b873 fix: Improve legacyRoot error message (#1301)
  • 1645d21 fix: Stop using nullish coalescing (#1299)
  • 787cb85 Release: 15.0.0 (#1295)
  • Additional commits viewable in compare view

Updates react-hook-form-mui from 6.7.3 to 7.0.0

Commits

Updates styled-components from 5.3.11 to 6.1.11

Release notes

Sourced from styled-components's releases.

v6.1.11

What's Changed

Full Changelog: styled-components/styled-components@v6.1.10...v6.1.11

v6.1.10

What's Changed

New Contributors

Full Changelog: styled-components/styled-components@v6.1.9...v6.1.10

v6.1.9

What's Changed

New Contributors

Full Changelog: styled-components/styled-components@v6.1.8...v6.1.9

v6.1.8

Revert adding peerDependencies from v6.1.7; apparently some package managers have differing behaviors around peerDependenciesMeta[package].optional which is causing issues. Will revisit at a later date if possible.

Full Changelog: styled-components/styled-components@v6.1.7...v6.1.8

v6.1.7

What's Changed

  • chore: add all missing peer dependency statements by @​quantizor in styled-components/styled-components#4243

    NOTE: this change may cause some installed dependency duplication until this NPM bug is addressed but yarn and pnpm have correct behavior. Bun also has a similar bug.

    Overall these changes ensure that styled-components is specifying a known working version of all utilized libraries, while instructing the client package manager that higher semver-compliant versions are permissible and should work, assuming the relevant libraries are compliant in practice.

Full Changelog: styled-components/styled-components@v6.1.6...v6.1.7

v6.1.6

What's Changed

... (truncated)

Commits

Updates husky from 8.0.3 to 9.0.11

Release notes

Sourced from husky's releases.

v9.0.11

v9.0.10

v9.0.9

v9.0.8

v9.0.7

v9.0.6

v9.0.5

v9.0.4

v9.0.3

Bumps the npm-major group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@mui/styled-engine-sc](https://github.com/mui/material-ui/tree/HEAD/packages/mui-styled-engine-sc) | `5.14.7` | `6.0.0-alpha.18` |
| [@mui/x-data-grid](https://github.com/mui/mui-x/tree/HEAD/packages/x-data-grid) | `6.18.4` | `7.8.0` |
| [@mui/x-date-pickers](https://github.com/mui/mui-x/tree/HEAD/packages/x-date-pickers) | `6.18.4` | `7.8.0` |
| [@sentry/react](https://github.com/getsentry/sentry-javascript) | `7.109.0` | `8.13.0` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `4.33.0` | `5.49.2` |
| [@testing-library/react](https://github.com/testing-library/react-testing-library) | `14.2.2` | `16.0.0` |
| [react-hook-form-mui](https://github.com/dohomi/react-hook-form-mui) | `6.7.3` | `7.0.0` |
| [husky](https://github.com/typicode/husky) | `8.0.3` | `9.0.11` |
| [lint-staged](https://github.com/okonet/lint-staged) | `14.0.1` | `15.2.7` |
| [typescript](https://github.com/Microsoft/TypeScript) | `4.9.5` | `5.5.2` |



Updates `@mui/styled-engine-sc` from 5.14.7 to 6.0.0-alpha.18
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/next/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/HEAD/packages/mui-styled-engine-sc)

Updates `@mui/x-data-grid` from 6.18.4 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-data-grid)

Updates `@mui/x-date-pickers` from 6.18.4 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-date-pickers)

Updates `@sentry/react` from 7.109.0 to 8.13.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@7.109.0...8.13.0)

Updates `@tanstack/react-query` from 4.33.0 to 5.49.2
- [Release notes](https://github.com/TanStack/query/releases)
- [Commits](https://github.com/TanStack/query/commits/v5.49.2/packages/react-query)

Updates `@testing-library/react` from 14.2.2 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@v14.2.2...v16.0.0)

Updates `react-hook-form-mui` from 6.7.3 to 7.0.0
- [Release notes](https://github.com/dohomi/react-hook-form-mui/releases)
- [Commits](https://github.com/dohomi/react-hook-form-mui/commits)

Updates `styled-components` from 5.3.11 to 6.1.11
- [Release notes](https://github.com/styled-components/styled-components/releases)
- [Commits](styled-components/styled-components@v5.3.11...v6.1.11)

Updates `husky` from 8.0.3 to 9.0.11
- [Release notes](https://github.com/typicode/husky/releases)
- [Commits](typicode/husky@v8.0.3...v9.0.11)

Updates `lint-staged` from 14.0.1 to 15.2.7
- [Release notes](https://github.com/okonet/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/master/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v14.0.1...v15.2.7)

Updates `typescript` from 4.9.5 to 5.5.2
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v4.9.5...v5.5.2)

---
updated-dependencies:
- dependency-name: "@mui/styled-engine-sc"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-major
- dependency-name: "@mui/x-data-grid"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-major
- dependency-name: "@mui/x-date-pickers"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-major
- dependency-name: "@sentry/react"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-major
- dependency-name: "@tanstack/react-query"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-major
- dependency-name: "@testing-library/react"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-major
- dependency-name: react-hook-form-mui
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-major
- dependency-name: styled-components
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm-major
- dependency-name: husky
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-major
- dependency-name: lint-staged
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-major
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-major
...

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 Jul 1, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Jul 8, 2024

Superseded by #99.

@dependabot dependabot bot closed this Jul 8, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/npm-major-274a716919 branch July 8, 2024 00:51
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

0 participants