Skip to content

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

Merged
nekomeowww merged 1 commit intomainfrom
renovate/all-minor-patch
Mar 27, 2025
Merged

fix(deps): update all non-major dependencies#469
nekomeowww merged 1 commit intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Mar 21, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@antfu/eslint-config ^4.10.2 -> ^4.11.0 age adoption passing confidence
@rive-app/canvas (source) ^2.26.4 -> ^2.26.5 age adoption passing confidence
@types/node (source) ^22.13.10 -> ^22.13.13 age adoption passing confidence
@unlazy/vue (source) ^0.12.3 -> ^0.12.4 age adoption passing confidence
eslint (source) ^9.22.0 -> ^9.23.0 age adoption passing confidence
motion ^12.5.0 -> ^12.6.2 age adoption passing confidence
pnpm (source) 10.6.5 -> 10.7.0 age adoption passing confidence
unlazy (source) ^0.12.3 -> ^0.12.4 age adoption passing confidence

Release Notes

antfu/eslint-config (@​antfu/eslint-config)

v4.11.0

Compare Source

   🚀 Features
    View changes on GitHub
rive-app/rive-wasm (@​rive-app/canvas)

v2.26.5

Compare Source

Commits
  • resolve frame on draw 5ad1b6c
  • More cleanups for Vulkan bootstrapping 7f5399a
  • Reduce the # of arguments required for Vulkan context creation 96606a3
  • Supporting binding of Layout enums 6000648
  • editor: fix using feather with opacity in a text modifier 367a56a
  • Nnnn data bind fixes 8 62f9a5e
  • More Build Options 7d3b400
  • define rive::math::pi to be the same as m_pi 3465b89
  • fix lists and viewmodel instances f2d2199
  • Nnnn data bind tests 31ae52a
  • add support for replacing view model instances and improve memory man… b9bd47b
  • fix: include artboard data bindings when cloning an artboard instance f565d1d
  • Fix layout isDisplayHidden check in CPP c2cadaa
  • Split up subpass from resource allocation for draw. Move draw limit check to before resource allocation occurs (and can fail) f5195eb
  • Vulkan - Atlas texture barrier fix 491e34a
  • make slicer width and height bindable 47f78fe
  • n-slicing: update path when removing n-slicing b647e7b
  • Layout Direction Left/Right Logical Properties 35989f0
  • clear bindable property when used 65a4bc7
  • runtime golden: add support for databinding aad74ec
  • fix warnings reported by a client 7aadd46
  • Fix bit rotting in WebGPU ae0af10
  • editor+runtime: text follow path orient, strength, and trim path props 645bcd6
  • Nnnn data binding api part 2 f058ef4
  • fix: inner feather did not update when path changed c71f7b4
  • Layout Direction 25600e7
  • Remove stray depth res creation cf7b1ef
  • update range mapper c2c0427
  • editor+runtime: expose Shape length via databinding 0afd743
  • core_generator: avoid empty switch statements c46b014
  • fix dat converter formula crash e902a2d
  • Add RenderText to rive_native a9b4dfb
  • Tighter RHI integration, extra build options 5768eae
  • testing check 8b77f22
  • do not delete data context from state machine instance 24a0319
  • delete instances when objects are destructed a89bfad
  • Custom property group fe7b8a8
  • Renderer depth stencil resource 145d113
  • send runtime size report to supabase fb81e5f
  • editor+runtime: support text follow path with position 2115445
  • Implement the feather atlas on Vulkan 43ef634
  • fixed for unreal dbe1500
  • Rhi feather ca4ddfc
johannschopplich/unlazy (@​unlazy/vue)

v0.12.4

Compare Source

   🚀 Features
    View changes on GitHub
eslint/eslint (eslint)

v9.23.0

Compare Source

motiondivision/motion (motion)

v12.6.2

Compare Source

Fixed
  • Fixing hardware acceleration for non-transform values when a motion component has a defined transformTemplate.

v12.6.1

Compare Source

Fixed
  • Reverting pointer capture for press gesture.

v12.6.0

Compare Source

Changed
  • Renamed view to animateView.
Added
  • New interrupt: "wait" mode as animateView default.
pnpm/pnpm (pnpm)

v10.7.0

Compare Source

Minor Changes
  • pnpm config get and list also show settings set in pnpm-workspace.yaml files #​9316.

  • It should be possible to use env variables in pnpm-workspace.yaml setting names and value.

  • Add an ability to patch dependencies by version ranges. Exact versions override version ranges, which in turn override name-only patches. Version range * is the same as name-only, except that patch application failure will not be ignored.

    For example:

    patchedDependencies:
      foo: patches/foo-1.patch
      foo@^2.0.0: patches/foo-2.patch
      foo@2.1.0: patches/foo-3.patch

    The above configuration would apply patches/foo-3.patch to foo@2.1.0, patches/foo-2.patch to all foo versions which satisfy ^2.0.0 except 2.1.0, and patches/foo-1.patch to the remaining foo versions.

    [!WARNING]
    The version ranges should not overlap. If you want to specialize a sub range, make sure to exclude it from the other keys. For example:

    # pnpm-workspace.yaml
    patchedDependencies:
      # the specialized sub range
      'foo@2.2.0-2.8.0': patches/foo.2.2.0-2.8.0.patch
      # the more general patch, excluding the sub range above
      'foo@>=2.0.0 <2.2.0 || >2.8.0': 'patches/foo.gte2.patch

    In most cases, however, it's sufficient to just define an exact version to override the range.

  • pnpm config set --location=project saves the setting to a pnpm-workspace.yaml file if no .npmrc file is present in the directory #​9316.

  • Rename pnpm.allowNonAppliedPatches to pnpm.allowUnusedPatches. The old name is still supported but it would print a deprecation warning message.

  • Add pnpm.ignorePatchFailures to manage whether pnpm would ignore patch application failures.

    If ignorePatchFailures is not set, pnpm would throw an error when patches with exact versions or version ranges fail to apply, and it would ignore failures from name-only patches.

    If ignorePatchFailures is explicitly set to false, pnpm would throw an error when any type of patch fails to apply.

    If ignorePatchFailures is explicitly set to true, pnpm would print a warning when any type of patch fails to apply.

Patch Changes
  • Remove dependency paths from audit output to prevent out-of-memory errors #​9280.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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 Pull requests that update a dependency file label Mar 21, 2025
@github-actions
Copy link

github-actions bot commented Mar 21, 2025

❌ Failed to deploy to Netlify

Platform Status URL
Ubuntu Failed Please check the status and logs of the workflow run.
Windows Failed Please check the status and logs of the workflow run.

@renovate renovate bot changed the title chore(deps): update dependency @types/node to ^22.13.11 chore(deps): update all non-major dependencies Mar 21, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from a6041c1 to 6e6d249 Compare March 26, 2025 17:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6e6d249 to 465c3f2 Compare March 26, 2025 22:33
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Mar 26, 2025
@nekomeowww nekomeowww merged commit 8858ff9 into main Mar 27, 2025
4 of 9 checks passed
@nekomeowww nekomeowww deleted the renovate/all-minor-patch branch March 27, 2025 02:55
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant