Skip to content

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

Merged
nekomeowww merged 1 commit intomainfrom
renovate/all-minor-patch
Apr 25, 2025
Merged

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

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Apr 18, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@rive-app/canvas (source) ^2.27.0 -> ^2.27.1 age adoption passing confidence peerDependencies patch
@rive-app/canvas (source) ^2.27.0 -> ^2.27.1 age adoption passing confidence devDependencies patch
@types/node (source) ^22.14.1 -> ^22.15.2 age adoption passing confidence devDependencies minor
@unocss/cli (source) ^66.1.0-beta.11 -> ^66.1.0-beta.12 age adoption passing confidence devDependencies patch
@unocss/eslint-config (source) ^66.1.0-beta.11 -> ^66.1.0-beta.12 age adoption passing confidence devDependencies patch
@unocss/eslint-plugin (source) ^66.1.0-beta.11 -> ^66.1.0-beta.12 age adoption passing confidence devDependencies patch
@vitest/coverage-v8 (source) ^3.1.1 -> ^3.1.2 age adoption passing confidence devDependencies patch
@vitest/ui (source) ^3.1.1 -> ^3.1.2 age adoption passing confidence devDependencies patch
es-toolkit (source) ^1.35.0 -> ^1.36.0 age adoption passing confidence dependencies minor
eslint (source) ^9.24.0 -> ^9.25.1 age adoption passing confidence devDependencies minor
motion ^12.7.4 -> ^12.9.1 age adoption passing confidence devDependencies minor
node 22.14.0 -> 22.15.0 age adoption passing confidence uses-with minor
pnpm (source) 10.8.1 -> 10.9.0 age adoption passing confidence packageManager minor
simple-git-hooks ^2.12.1 -> ^2.13.0 age adoption passing confidence devDependencies minor
tinyglobby ^0.2.12 -> ^0.2.13 age adoption passing confidence dependencies patch
unocss (source) ^66.1.0-beta.11 -> ^66.1.0-beta.12 age adoption passing confidence devDependencies patch
vite (source) ^6.3.2 -> ^6.3.3 age adoption passing confidence pnpm.catalog.default patch
vitest (source) ^3.1.1 -> ^3.1.2 age adoption passing confidence devDependencies patch
vue-tsc (source) ^2.2.8 -> ^2.2.10 age adoption passing confidence devDependencies patch

Release Notes

rive-app/rive-wasm (@​rive-app/canvas)

v2.27.1

Compare Source

Commits
  • fix(vulkan): Fix input attachmens on AMD (#​9513) e5dc0b9 5f68f1d
  • refactor(vulkan): Move shaders to a different cpp file 4767fca
  • feat(vulkan): Implement coalesced resolve 2b0ca72
  • fix: update data binds when events from children are notified e682268
  • Component List in CPP e5551c1
  • feat(vulkan): Use VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL e1fa494
  • refactor(vulkan): Make RenderTargetVulkan more generic 6404809
  • fix: 32-bit Vulkan builds on Android edc1deb
  • fix: Fix release build da86fc6
  • refactor: Put blend state in PipelineState 081c949
  • library: allow loading library that uses another library d532bbb
unocss/unocss (@​unocss/cli)

v66.1.0-beta.12

Compare Source

   🚨 Breaking Changes
   🐞 Bug Fixes
    View changes on GitHub
vitest-dev/vitest (@​vitest/coverage-v8)

v3.1.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub
toss/es-toolkit (es-toolkit)

v1.36.0

Compare Source

Released on April 24th, 2025.

We sincerely thank @​D-Sketon, @​raon0211, @​dayongkr, @​minjongbaek, @​seungrodotlee, @​mass2527, @​uniqueeest, @​leehj322, @​cruelladevil, @​shren207, and @​ssi02014 for their contributions. We appreciate your great efforts!

eslint/eslint (eslint)

v9.25.1

Compare Source

v9.25.0

Compare Source

motiondivision/motion (motion)

v12.9.1

Compare Source

Fixed
  • Restarting a finished main thread animation with a negative .speed now works as expected.

v12.9.0

Compare Source

Added
  • styleEffect

v12.8.2

Compare Source

Changed
  • Unifying transform behaviour for SVG and CSS switched from element measurements for transform-box: fill-box.

v12.8.0

Compare Source

Added
  • mapValue
  • transformValue
Changed
  • Removed support for Framer's internal CustomValueType.

v12.7.5

Compare Source

Changed
  • Improved scroll timeline caching.
  • Replaced WAAPI keyframe generation with linear() easing.
  • Ensure final defined keyframe is always applied to animations when animation finishes.
  • Moved instantAnimationState.current to MotionGlobalConfig.instantAnimations.
  • Changed delay from read to setup frameloop step.
Fixed
  • Fixed .then() and await early resolution.
  • Fixed replaying main thread animations after finished.
  • .speed works correctly across all animation types.
  • Various imperative animation control fixes.
actions/node-versions (node)

v22.15.0: 22.15.0

Compare Source

Node.js 22.15.0

pnpm/pnpm (pnpm)

v10.9.0

Compare Source

Minor Changes
  • Added support for installing JSR packages. You can now install JSR packages using the following syntax:

    pnpm add jsr:<pkg_name>
    

    or with a version range:

    pnpm add jsr:<pkg_name>@&#8203;<range>
    

    For example, running:

    pnpm add jsr:@&#8203;foo/bar
    

    will add the following entry to your package.json:

    {
      "dependencies": {
        "@&#8203;foo/bar": "jsr:^0.1.2"
      }
    }

    When publishing, this entry will be transformed into a format compatible with npm, older versions of Yarn, and previous pnpm versions:

    {
      "dependencies": {
        "@&#8203;foo/bar": "npm:@&#8203;jsr/foo__bar@^0.1.2"
      }
    }

    Related issue: #​8941.

    Note: The @jsr scope defaults to https://npm.jsr.io/ if the @jsr:registry setting is not defined.

  • Added a new setting, dangerouslyAllowAllBuilds, for automatically running any scripts of dependencies without the need to approve any builds. It was already possible to allow all builds by adding this to pnpm-workspace.yaml:

    neverBuiltDependencies: []

    dangerouslyAllowAllBuilds has the same effect but also allows to be set globally via:

    pnpm config set dangerouslyAllowAllBuilds true
    

    It can also be set when running a command:

    pnpm install --dangerously-allow-all-builds
    
Patch Changes
  • Fix a false negative in verifyDepsBeforeRun when nodeLinker is hoisted and there is a workspace package without dependencies and node_modules directory #​9424.
  • Explicitly drop verifyDepsBeforeRun support for nodeLinker: pnp. Combining verifyDepsBeforeRun and nodeLinker: pnp will now print a warning.
toplenboren/simple-git-hooks (simple-git-hooks)

v2.13.0

Compare Source

Minor Changes
SuperchupuDev/tinyglobby (tinyglobby)

v0.2.13

Compare Source

Fixed
  • Performance of crawling / thanks to an upstream fdir fix by pralkarz
  • Path joining when crawling from / by benmccann
  • Paths no longer have their first character removed in some cases when crawling from /
  • Added compatibility with @types/picomatch 4.0.0
vitejs/vite (vite)

v6.3.3

Compare Source

vuejs/language-tools (vue-tsc)

v2.2.10

Compare Source


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 Apr 18, 2025
@github-actions
Copy link

github-actions bot commented Apr 18, 2025

✅ Successfully deployed to Netlify

Platform Status URL
Ubuntu Success https://680b3acaff853c88375e3ec8--nolebase-integrations.netlify.app
Windows Success https://680b3ad6b2bd12ab0debc7a4--nolebase-integrations.netlify.app

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ea155b7 to 14096a8 Compare April 18, 2025 18:45
@renovate renovate bot changed the title chore(deps): update all non-major dependencies to ^66.1.0-beta.12 chore(deps): update all non-major dependencies Apr 18, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 14096a8 to 38652fe Compare April 19, 2025 21:42
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Apr 19, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 5441edf to 4180c79 Compare April 24, 2025 23:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4180c79 to 3876c84 Compare April 25, 2025 07:26
@nekomeowww nekomeowww merged commit b83566f into main Apr 25, 2025
9 checks passed
@nekomeowww nekomeowww deleted the renovate/all-minor-patch branch April 25, 2025 08:58
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