Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the dependencies group with 10 updates #205

Merged
merged 2 commits into from
Dec 13, 2024

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the dependencies group with 10 updates:

Package From To
@dnd-kit/core 6.2.0 6.3.1
@mui/icons-material 6.1.9 6.1.10
@mui/material 6.1.9 6.1.10
@mui/x-data-grid 7.23.0 7.23.1
@mui/x-date-pickers 7.23.0 7.23.1
@serwist/next 9.0.10 9.0.11
@types/geojson 7946.0.14 7946.0.15
@types/leaflet 1.9.14 1.9.15
eslint-config-next 15.0.3 15.0.4
serwist 9.0.10 9.0.11

Updates @dnd-kit/core from 6.2.0 to 6.3.1

Release notes

Sourced from @​dnd-kit/core's releases.

@​dnd-kit/core@​6.3.1

Patch Changes

  • #1555 62f632a Thanks @​clauderic! - Added Tab to the list of default key codes that end a drag and drop operation. Can be customized by passing in a custom list of keyCodes to the KeyboardSensor options.

@​dnd-kit/core@​6.3.0

Minor Changes

  • #1539 0c6a28d Thanks @​irobot! - Make it possible to add visual cues when using activation constraints.

    Context

    Activation constraints are used when we want to prevent accidental dragging or when pointer press can mean more than "start dragging".

    A typical use case is a button that needs to respond to both "click" and "drag" gestures. Clicks can be distinguished from drags based on how long the pointer was held pressed.

    The problem

    A control that responds differently to a pointer press based on duration or distance can be confusing to use -- the user has to guess how long to keep holding or how far to keep dragging until their intent is acknowledged.

    Implementing such cues is currently possible by attaching extra event listeners so that we know when a drag is pending. Furthermore, the listener needs to have access to the same constraints that were applied to the sensor initiating the drag. This can be made to work in simple cases, but it becomes error-prone and difficult to maintain in complex scenarios.

    Solution

    This changeset proposes the addition of two new events: onDragPending and onDragAbort.

    onDragPending

    A drag is considered to be pending when the pointer has been pressed and there are activation constraints that need to be satisfied before a drag can start.

    This event is initially fired on pointer press. At this time offset (see below) will be undefined.

    It will subsequently be fired every time the pointer is moved. This is to enable visual cues for distance-based activation.

    The event's payload contains all the information necessary for providing visual feedback:

    export interface DragPendingEvent {

... (truncated)

Changelog

Sourced from @​dnd-kit/core's changelog.

6.3.1

Patch Changes

  • #1555 62f632a Thanks @​clauderic! - Added Tab to the list of default key codes that end a drag and drop operation. Can be customized by passing in a custom list of keyCodes to the KeyboardSensor options.

6.3.0

Minor Changes

  • #1539 0c6a28d Thanks @​irobot! - Make it possible to add visual cues when using activation constraints.

    Context

    Activation constraints are used when we want to prevent accidental dragging or when pointer press can mean more than "start dragging".

    A typical use case is a button that needs to respond to both "click" and "drag" gestures. Clicks can be distinguished from drags based on how long the pointer was held pressed.

    The problem

    A control that responds differently to a pointer press based on duration or distance can be confusing to use -- the user has to guess how long to keep holding or how far to keep dragging until their intent is acknowledged.

    Implementing such cues is currently possible by attaching extra event listeners so that we know when a drag is pending. Furthermore, the listener needs to have access to the same constraints that were applied to the sensor initiating the drag. This can be made to work in simple cases, but it becomes error-prone and difficult to maintain in complex scenarios.

    Solution

    This changeset proposes the addition of two new events: onDragPending and onDragAbort.

    onDragPending

    A drag is considered to be pending when the pointer has been pressed and there are activation constraints that need to be satisfied before a drag can start.

    This event is initially fired on pointer press. At this time offset (see below) will be undefined.

    It will subsequently be fired every time the pointer is moved. This is to enable visual cues for distance-based activation.

    The event's payload contains all the information necessary for providing visual feedback:

... (truncated)

Commits
  • 97c1609 Version Packages
  • 62f632a End keyboard drag operation when pressing tab
  • 060c982 Version Packages
  • 9175566 Merge branch 'master' into feature/constraint-cues
  • 0c6a28d Enable visual cues when using activation constraints.
  • See full diff in compare view

Updates @mui/icons-material from 6.1.9 to 6.1.10

Release notes

Sourced from @​mui/icons-material's releases.

v6.1.10

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

@mui/material@6.1.10

@mui/system@6.1.10

Docs

Core

All contributors of this release in alphabetical order: @​albarv340, @​arishoham, @​DiegoAndai, @​joserodolfofreitas, @​MBilalShafi, @​mnajdova, @​oliviertassinari, @​sai6855, @​samuelsycamore, @​siriwatknp, @​ZeeshanTamboli

Changelog

Sourced from @​mui/icons-material's changelog.

6.1.10

Dec 3, 2024

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

@mui/material@6.1.10

@mui/system@6.1.10

Docs

Core

All contributors of this release in alphabetical order: @​albarv340, @​arishoham, @​DiegoAndai, @​joserodolfofreitas, @​MBilalShafi, @​mnajdova, @​oliviertassinari, @​sai6855, @​samuelsycamore, @​siriwatknp, @​ZeeshanTamboli

Commits

Updates @mui/material from 6.1.9 to 6.1.10

Release notes

Sourced from @​mui/material's releases.

v6.1.10

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

@mui/material@6.1.10

@mui/system@6.1.10

Docs

Core

All contributors of this release in alphabetical order: @​albarv340, @​arishoham, @​DiegoAndai, @​joserodolfofreitas, @​MBilalShafi, @​mnajdova, @​oliviertassinari, @​sai6855, @​samuelsycamore, @​siriwatknp, @​ZeeshanTamboli

Changelog

Sourced from @​mui/material's changelog.

6.1.10

Dec 3, 2024

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

@mui/material@6.1.10

@mui/system@6.1.10

Docs

Core

All contributors of this release in alphabetical order: @​albarv340, @​arishoham, @​DiegoAndai, @​joserodolfofreitas, @​MBilalShafi, @​mnajdova, @​oliviertassinari, @​sai6855, @​samuelsycamore, @​siriwatknp, @​ZeeshanTamboli

Commits
  • 5c5e9f6 [release] v6.1.10 (#44645)
  • 6c6cb7e [Select][TextField] Fix screen reader from saying &ZeroWidthSpace (#44631)
  • 9b49147 [Grid2] Fix theme scoping error (#44599)
  • 7bdfd2a [core] Remove getSlotOwnerState from useSlot util (#44403)
  • 1f3d69a [docs] Bump React Router to ^7.0.1 (#44531)
  • ac1f902 [core] Extract useRippleHandler outside of ButtonBase (#44591)
  • 452d971 [Grid2] Add container styles from styleOverrides (#44598)
  • d0a5989 [ThemeProvider] Optimize theme changes when enabling CSS theme variables (#...
  • 7c0b7e8 [material-ui] Skip tonalOffset from setting color channel (#44585)
  • 28ac35c [core-infra] Remove useless fragments (#44516)
  • Additional commits viewable in compare view

Updates @mui/x-data-grid from 7.23.0 to 7.23.1

Release notes

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

v7.23.1

7.23.1

Dec 5, 2024

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

  • 🌍 Improve German locale on the Data Grid component
  • 🐞 Bugfixes

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

Following are all team members who have contributed to this release: @​arthurbalduini, @​cherniavskii, @​flaviendelangle, @​JCQuintas, @​LukasTy and @​MBilalShafi.

Data Grid

@mui/x-data-grid@7.23.1

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

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

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

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

Date and Time Pickers

@mui/x-date-pickers@7.23.1

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

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

Charts

@mui/x-charts@7.23.1

... (truncated)

Changelog

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

7.23.1

Dec 5, 2024

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

  • 🌍 Improve German locale on the Data Grid component
  • 🐞 Bugfixes

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

Following are all team members who have contributed to this release: @​arthurbalduini, @​cherniavskii, @​flaviendelangle, @​JCQuintas, @​LukasTy and @​MBilalShafi.

Data Grid

@mui/x-data-grid@7.23.1

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

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

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

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

Date and Time Pickers

@mui/x-date-pickers@7.23.1

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

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

Charts

@mui/x-charts@7.23.1

... (truncated)

Commits

Updates @mui/x-date-pickers from 7.23.0 to 7.23.1

Release notes

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

v7.23.1

7.23.1

Dec 5, 2024

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

  • 🌍 Improve German locale on the Data Grid component
  • 🐞 Bugfixes

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

Following are all team members who have contributed to this release: @​arthurbalduini, @​cherniavskii, @​flaviendelangle, @​JCQuintas, @​LukasTy and @​MBilalShafi.

Data Grid

@mui/x-data-grid@7.23.1

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

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

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

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

Date and Time Pickers

@mui/x-date-pickers@7.23.1

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

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

Charts

@mui/x-charts@7.23.1

... (truncated)

Changelog

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

7.23.1

Dec 5, 2024

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

  • 🌍 Improve German locale on the Data Grid component
  • 🐞 Bugfixes

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

Following are all team members who have contributed to this release: @​arthurbalduini, @​cherniavskii, @​flaviendelangle, @​JCQuintas, @​LukasTy and @​MBilalShafi.

Data Grid

@mui/x-data-grid@7.23.1

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

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

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

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

Date and Time Pickers

@mui/x-date-pickers@7.23.1

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

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

Charts

@mui/x-charts@7.23.1

... (truncated)

Commits

Updates @serwist/next from 9.0.10 to 9.0.11

Release notes

Sourced from @​serwist/next's releases.

@​serwist/next@​9.0.11

Patch Changes

  • cdefdc3 Thanks @​DuCanhGH! - chore(deps): monthly dependencies maintenance

  • Updated dependencies [cdefdc3]:

    • @​serwist/webpack-plugin@​9.0.11
    • @​serwist/window@​9.0.11
    • @​serwist/build@​9.0.11
    • serwist@9.0.11
Commits
  • 1f2d89f chore(packages): publish packages (#226)
  • 74116f5 fix(deps): temporarily pin typescript at 5.6.3 to fix @serwist/nuxt build
  • cdefdc3 chore(deps): monthly dependencies maintenance
  • See full diff in compare view

Updates @types/geojson from 7946.0.14 to 7946.0.15

Commits

Updates @types/leaflet from 1.9.14 to 1.9.15

Commits

Updates eslint-config-next from 15.0.3 to 15.0.4

Release notes

Sourced from eslint-config-next's releases.

v15.0.4

[!NOTE]
This release is backporting changes. It does not include all pending features/changes on canary.

Core Changes

Credits

Huge thanks to @​eps1lon

v15.0.4-canary.48

Misc Changes

  • refactor(turbopack): Use ResolvedVc<T> for struct fields in extra crates: #73451
  • refactor(turbopack): Use ResolvedVc<T> for struct fields in next-api, final part: #73367
  • docs: Fix image component API reference parsing: #73658
  • docs: fix code block language in images-and-fonts docs: #73492

Credits

Huge thanks to @​kdy1, @​eps1lon, and @​JamBalaya56562 for helping!

v15.0.4-canary.47

Misc Changes

  • test: fix next-sass test: #73633

Credits

Huge thanks to @​samcx for helping!

v15.0.4-canary.46

Core Changes

  • Use consistent error formatting in terminal: #71909
  • [Segment Cache] Interception routes: #73434
  • Upgrade to typescript 5.7: #73594
  • [Segment Cache] Use LRU to manage cache data : #73486
  • [Segment Cache] Add isPartial to segment prefetch : #73528
  • Fix missing client reference manifest error when using route groups: #73606
  • feat(after): stabilize unstable_after: #73605
  • [Segment Cache] Add isHeadPartial: #73530
  • fix: do not add suffix for sitemap under group routes: #73570
  • Dynamic IO: Improve error handling: #73607

Example Changes

  • Bump examples/** Eslint to v9: #73560

... (truncated)

Commits

Updates serwist from 9.0.10 to 9.0.11

Release notes

Sourced from serwist's releases.

serwist@9.0.11

Patch Changes

Commits
  • 1f2d89f chore(packages): publish packages (#226)
  • 74116f5 fix(deps): temporarily pin typescript at 5.6.3 to fix @serwist/nuxt build
  • cdefdc3 chore(deps): monthly dependencies maintenance
  • See full diff in compare view

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.


Dep...

Description has been truncated

Bumps the dependencies group with 10 updates:

| Package | From | To |
| --- | --- | --- |
| [@dnd-kit/core](https://github.com/clauderic/dnd-kit/tree/HEAD/packages/core) | `6.2.0` | `6.3.1` |
| [@mui/icons-material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-icons-material) | `6.1.9` | `6.1.10` |
| [@mui/material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material) | `6.1.9` | `6.1.10` |
| [@mui/x-data-grid](https://github.com/mui/mui-x/tree/HEAD/packages/x-data-grid) | `7.23.0` | `7.23.1` |
| [@mui/x-date-pickers](https://github.com/mui/mui-x/tree/HEAD/packages/x-date-pickers) | `7.23.0` | `7.23.1` |
| [@serwist/next](https://github.com/serwist/serwist) | `9.0.10` | `9.0.11` |
| [@types/geojson](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/geojson) | `7946.0.14` | `7946.0.15` |
| [@types/leaflet](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/leaflet) | `1.9.14` | `1.9.15` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `15.0.3` | `15.0.4` |
| [serwist](https://github.com/serwist/serwist) | `9.0.10` | `9.0.11` |


Updates `@dnd-kit/core` from 6.2.0 to 6.3.1
- [Release notes](https://github.com/clauderic/dnd-kit/releases)
- [Changelog](https://github.com/clauderic/dnd-kit/blob/master/packages/core/CHANGELOG.md)
- [Commits](https://github.com/clauderic/dnd-kit/commits/@dnd-kit/core@6.3.1/packages/core)

Updates `@mui/icons-material` from 6.1.9 to 6.1.10
- [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/v6.1.10/packages/mui-icons-material)

Updates `@mui/material` from 6.1.9 to 6.1.10
- [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/v6.1.10/packages/mui-material)

Updates `@mui/x-data-grid` from 7.23.0 to 7.23.1
- [Release notes](https://github.com/mui/mui-x/releases)
- [Changelog](https://github.com/mui/mui-x/blob/v7.23.1/CHANGELOG.md)
- [Commits](https://github.com/mui/mui-x/commits/v7.23.1/packages/x-data-grid)

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

Updates `@serwist/next` from 9.0.10 to 9.0.11
- [Release notes](https://github.com/serwist/serwist/releases)
- [Commits](https://github.com/serwist/serwist/compare/@serwist/next@9.0.10...@serwist/next@9.0.11)

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

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

Updates `eslint-config-next` from 15.0.3 to 15.0.4
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v15.0.4/packages/eslint-config-next)

Updates `serwist` from 9.0.10 to 9.0.11
- [Release notes](https://github.com/serwist/serwist/releases)
- [Commits](https://github.com/serwist/serwist/compare/serwist@9.0.10...serwist@9.0.11)

---
updated-dependencies:
- dependency-name: "@dnd-kit/core"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@mui/icons-material"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@mui/material"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@mui/x-data-grid"
  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-patch
  dependency-group: dependencies
- dependency-name: "@serwist/next"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@types/geojson"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@types/leaflet"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: eslint-config-next
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: serwist
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 9, 2024
@r00tat r00tat merged commit 3e742bd into main Dec 13, 2024
1 check passed
@r00tat r00tat deleted the dependabot/npm_and_yarn/dependencies-669cdf70b8 branch December 13, 2024 23:08
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.

1 participant