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

fix(deps): update all npm non-major dependencies #3655

Merged
merged 1 commit into from
Feb 1, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 1, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@csstools/postcss-light-dark-function (source) ^2.0.5 -> ^2.0.7 age adoption passing confidence
@dnd-kit/core (source) ^6.2.0 -> ^6.3.1 age adoption passing confidence
@emotion/cache (source) ^11.13.1 -> ^11.14.0 age adoption passing confidence
@emotion/react (source) ^11.13.0 -> ^11.14.0 age adoption passing confidence
@hookform/resolvers (source) ^3.9.0 -> ^3.10.0 age adoption passing confidence
@internationalized/date (source) ^3.5.5 -> ^3.7.0 age adoption passing confidence
@swc-jotai/react-refresh (source) ^0.1.1 -> ^0.3.0 age adoption passing confidence
@tailwindcss/typography ^0.5.14 -> ^0.5.16 age adoption passing confidence
@tanstack/react-table (source) ^8.20.1 -> ^8.20.6 age adoption passing confidence
@types/node (source) ^20.16.1 -> ^20.17.16 age adoption passing confidence
@types/node (source) ^20.16.1 -> ^20.17.16 age adoption passing confidence
@types/react (source) ^18.3.3 -> ^18.3.18 age adoption passing confidence
@types/react-dom (source) ^18.3.0 -> ^18.3.5 age adoption passing confidence
@types/ws (source) ^8.5.12 -> ^8.5.14 age adoption passing confidence
@uiw/react-codemirror (source) ^4.23.5 -> ^4.23.7 age adoption passing confidence
ag-grid-community (source) ^32.2.2 -> ^32.3.3 age adoption passing confidence
ag-grid-react (source) ^32.2.2 -> ^32.3.3 age adoption passing confidence
ai (source) ^3.3.12 -> ^3.4.33 age adoption passing confidence
babel-plugin-react-compiler (source) 19.0.0-beta-8a03594-20241020 -> 19.0.0-beta-e552027-20250112 age adoption passing confidence
class-variance-authority ^0.7.0 -> ^0.7.1 age adoption passing confidence
copilot-node-server 1.39.0 -> 1.41.0 age adoption passing confidence
cssnano ^7.0.5 -> ^7.0.6 age adoption passing confidence
html-react-parser ^5.1.12 -> ^5.2.2 age adoption passing confidence
iconify-icon (source) ^2.1.0 -> ^2.3.0 age adoption passing confidence
jotai ^2.9.3 -> ^2.11.1 age adoption passing confidence
jsdom ^24.1.1 -> ^24.1.3 age adoption passing confidence
katex (source) ^0.16.11 -> ^0.16.21 age adoption passing confidence
lucide-react (source) ^0.428.0 -> ^0.474.0 age adoption passing confidence
mermaid ^11.3.0 -> ^11.4.1 age adoption passing confidence
npm-run-all2 ^6.2.2 -> ^6.2.6 age adoption passing confidence
partysocket (source) 1.0.2 -> 1.0.3 age adoption passing confidence
path-to-regexp ^8.0.0 -> ^8.2.0 age adoption passing confidence
plotly.js ^2.35.2 -> ^2.35.3 age adoption passing confidence
pnpm (source) 9.8.0 -> 9.15.4 age adoption passing confidence
pyodide ^0.27.1 -> ^0.27.2 age adoption passing confidence
react-codemirror-merge (source) ^4.23.5 -> ^4.23.7 age adoption passing confidence
react-compiler-runtime (source) 19.0.0-beta-8a03594-20241020 -> 19.0.0-beta-e552027-20250112 age adoption passing confidence
react-dropzone ^14.2.3 -> ^14.3.5 age adoption passing confidence
react-grid-layout ^1.4.4 -> ^1.5.0 age adoption passing confidence
react-hook-form (source) ^7.52.2 -> ^7.54.2 age adoption passing confidence
react-markdown ^9.0.1 -> ^9.0.3 age adoption passing confidence
react-resizable-panels 2.0.19 -> 2.1.7 age adoption passing confidence
react-virtuoso (source) ^4.10.1 -> ^4.12.3 age adoption passing confidence
stylelint (source) ^16.8.2 -> ^16.14.1 age adoption passing confidence
swiper (source) ^11.1.9 -> ^11.2.1 age adoption passing confidence
tailwind-merge ^2.5.2 -> ^2.6.0 age adoption passing confidence
tsup (source) ^8.2.4 -> ^8.3.6 age adoption passing confidence
vega-lite (source) ^5.21.0 -> ^5.23.0 age adoption passing confidence
vega-loader ^4.5.2 -> ^4.5.3 age adoption passing confidence
web-vitals ^4.2.3 -> ^4.2.4 age adoption passing confidence
yjs (source) ^13.6.21 -> ^13.6.23 age adoption passing confidence
zod (source) ^3.23.8 -> ^3.24.1 age adoption passing confidence

Release Notes

csstools/postcss-plugins (@​csstools/postcss-light-dark-function)

v2.0.7

Compare Source

November 1, 2024

v2.0.6

Compare Source

October 23, 2024

clauderic/dnd-kit (@​dnd-kit/core)

v6.3.1

Compare Source

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.

v6.3.0

Compare Source

Minor Changes
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 {
  id: UniqueIdentifier;
  constraint: PointerActivationConstraint;
  initialCoordinates: Coordinates;
  offset?: Coordinates | undefined;
}
onDragAbort

A drag is considered aborted when an activation constraint for a pending drag was violated.
Useful as a prompt to cancel any visual cue animations currently in progress.
Note that this event will not be fired when dragging ends or is canceled.

emotion-js/emotion (@​emotion/react)

v11.14.0

Compare Source

Minor Changes
  • #​3284 a19d019 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

v11.13.5

Compare Source

v11.13.3

Compare Source

react-hook-form/resolvers (@​hookform/resolvers)

v3.10.0

Compare Source

Features

v3.9.1

Compare Source

adobe/react-spectrum (@​internationalized/date)

v3.7.0

Compare Source

tailwindlabs/tailwindcss-typography (@​tailwindcss/typography)

v0.5.16

Compare Source

Fixed
  • Support installing with beta versions of Tailwind CSS v4 (#​365)

v0.5.15

Compare Source

Fixed
  • Support installing with alpha versions of Tailwind CSS v4 (#​358)
TanStack/table (@​tanstack/react-table)

v8.20.6

Compare Source

Version 8.20.6 - 12/13/24, 2:34 PM

Changes

Fix
Chore
Docs

Packages

v8.20.5

Compare Source

Version 8.20.5 - 8/24/24, 11:37 PM

Changes

Fix
  • table-core: allow searching of numbers (#​5718) (237b1c4) by GaganSingh7
Docs
  • vue: add information about shallowRef for reactive data (#​5706) (58913b6) by Ola Alsaker

Packages

uiwjs/react-codemirror (@​uiw/react-codemirror)

v4.23.7

Compare Source

Buy me a coffee

Documentation v4.23.7: https://raw.githack.com/uiwjs/react-codemirror/5b16350/index.html\
Comparing Changes: uiwjs/react-codemirror@v4.23.6...v4.23.7

npm i @​uiw/[email protected]

v4.23.6

Compare Source

Buy me a coffee

Documentation v4.23.6: https://raw.githack.com/uiwjs/react-codemirror/57d9fb7/index.html\
Comparing Changes: uiwjs/react-codemirror@v4.23.5...v4.23.6

npm i @​uiw/[email protected]
ag-grid/ag-grid (ag-grid-community)

v32.3.3

Compare Source

https://www.ag-grid.com/changelog/?fixVersion=32.3.3

v32.3.2

Compare Source

https://www.ag-grid.com/changelog/?fixVersion=32.3.2

v32.3.1

Compare Source

https://www.ag-grid.com/changelog/?fixVersion=32.3.1

v32.3.0

Compare Source

https://www.ag-grid.com/changelog/?fixVersion=32.3.0

vercel/ai (ai)

v3.4.33

[Compare So


Configuration

📅 Schedule: Branch creation - "on the 1st day of the month" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies label Feb 1, 2025
Copy link

vercel bot commented Feb 1, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
marimo-docs ✅ Ready (Inspect) Visit Preview 💬 Add feedback Feb 1, 2025 6:44pm
1 Skipped Deployment
Name Status Preview Comments Updated (UTC)
marimo-storybook ⬜️ Ignored (Inspect) Feb 1, 2025 6:44pm

@mscolnick mscolnick merged commit c850b1d into main Feb 1, 2025
24 checks passed
@mscolnick mscolnick deleted the renovate/all-npm-non-major-dependencies branch February 1, 2025 18:53
Copy link

github-actions bot commented Feb 1, 2025

🚀 Development release published. You may be able to view the changes at https://marimo.app?v=0.10.20-dev8

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant