Skip to content

chore(deps): update npm packages#266

Merged
renovate[bot] merged 1 commit intomainfrom
renovate/npm-packages
May 11, 2026
Merged

chore(deps): update npm packages#266
renovate[bot] merged 1 commit intomainfrom
renovate/npm-packages

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented May 10, 2026

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@angular/animations (source) 21.2.1121.2.12 age adoption passing confidence
@angular/build 21.2.921.2.10 age adoption passing confidence
@angular/cdk 21.2.921.2.10 age adoption passing confidence
@angular/common (source) 21.2.1121.2.12 age adoption passing confidence
@angular/compiler (source) 21.2.1121.2.12 age adoption passing confidence
@angular/compiler-cli (source) 21.2.1121.2.12 age adoption passing confidence
@angular/core (source) 21.2.1121.2.12 age adoption passing confidence
@angular/forms (source) 21.2.1121.2.12 age adoption passing confidence
@angular/material 21.2.921.2.10 age adoption passing confidence
@angular/platform-browser (source) 21.2.1121.2.12 age adoption passing confidence
@angular/platform-browser-dynamic (source) 21.2.1121.2.12 age adoption passing confidence
@angular/router (source) 21.2.1121.2.12 age adoption passing confidence
@sanity/types (source) 5.23.05.24.0 age adoption passing confidence
postcss (source) 8.5.138.5.14 age adoption passing confidence
posthog-js (source) 1.372.51.372.10 age adoption passing confidence
vite (source) 8.0.108.0.11 age adoption passing confidence
zone.js (source, changelog) 0.16.10.16.2 age adoption passing confidence

Release Notes

angular/angular (@​angular/animations)

v21.2.12

Compare Source

core
Commit Type Description
fe13bb669d fix allow explicit read generic with signal input transforms
3430251fef fix i18n flags leaking on errors
1aeebbe304 fix respect ngSkipHydration on components with projectable nodes in LContainers
9e38ed7d57 fix sanitizer typings
7a05a9a71a fix validate security-sensitive attributes in i18n bindings
c37f6ca42f fix visit ng-let expression value in signal migration schematics
forms
Commit Type Description
03ad53863b fix prohibit concurrent submits in signal forms
angular/angular-cli (@​angular/build)

v21.2.10

Compare Source

@​angular/cli
Commit Type Description
bb8611913 fix restrict MCP workspace access to allowed client roots during resolution
angular/components (@​angular/cdk)

v21.2.10

Compare Source

aria
Commit Type Description
48973661e fix menu: do not set default aria-label (#​33202)
sanity-io/sanity (@​sanity/types)

v5.24.0

Compare Source

Sanity Studio v5.24.0

This release includes various improvements and bug fixes.

For the complete changelog with all details, please visit:
www.sanity.io/changelog/studio-NS4yMy4w

Install or upgrade Sanity Studio

To upgrade to this version, run:

npm install sanity@latest

To initiate a new Sanity Studio project or learn more about upgrading, please refer to our comprehensive guide on Installing and Upgrading Sanity Studio.

📓 Full changelog

Author Message Commit
@​jordanl17 feat(core): make document action keys extensible via declaration merging (#​12768) eebdb17
@​bjoerge chore: replace pnpx with pnpm and add pkg-pr-new dependency (#​12783) 3d66c1f
@​bjoerge chore(turbo): remove unused env var (#​12781) f8111fc
@​bjoerge chore(ci): use pnpm whoami instead of npm whoami (#​12780) 2308d14
@​RitaDias test: add tests for createCallbackResolver (#​12779) 5625f37
squiggler-app[bot] fix(deps): update dependency @​sanity/cli to ^6.5.0 (#​12778) f3d306c
@​bjoerge fix: restore workspace hidden property (#​12775) 8f4e6b0
@​pedrobonamin fix(core): add version into documentEvents observable (#​12772) b511ef9
@​bjoerge chore(ci): switch to package build for lefthook (#​12767) 838e355
@​bjoerge chore: remove pre-commit husky hook (#​12766) 752aaf6
@​bjoerge chore: replace husky + lint staged with lefthook (#​12755) fcbdbdb
@​bjoerge chore: upgrade pnpm to 11.0.0 (#​12759) 50a185b
@​bjoerge chore(ci): drop node 20 from test matrix (#​12760) 8bc9911
squiggler-app[bot] chore(deps): update dependency @​tanstack/react-virtual to ^3.13.24 (#​12657) c4954c5
@​jordanl17 chore: adding telemetry to track when feedback dialog is opened and closed (#​12749) 6b16652
@​pedrobonamin fix(core): reset calendar focused date when setting to current time (#​12753) ff8a7d4
@​pedrobonamin chore(core): cleanup decision parameters schema (#​12751) aa8980b
postcss/postcss (postcss)

v8.5.14

Compare Source

PostHog/posthog-js (posthog-js)

v1.372.10

Compare Source

1.372.10

Patch Changes
  • #​3544 d120042 Thanks @​ksvat! - fix: stop session recording before destroying sessionManager in opt_out_capturing() with cookieless_mode: "on_reject". Previously, queued/throttled rrweb events (e.g. mousemove) could fire after the sessionManager was set to undefined and throw [SessionRecording] must be started with a valid sessionManager. Also adds a defensive early-return in onRRwebEmit so any remaining late events bail out instead of throwing.
    (2026-05-07)

  • #​3542 94a5ba0 Thanks @​TueHaulund! - Preserve <style> textContent when the browser's CSSOM serialization would
    emit empty longhands from var() inside a shorthand. When a stylesheet has
    e.g. padding: var(--p); padding-bottom: var(--pb);, browsers store the
    shorthand's longhands with empty token lists per the CSS Custom Properties
    spec, and CSSStyleRule.cssText re-emits them as padding-top: ; padding-right: ; padding-left: ;. The previous behavior replaced the
    <style> text with that corrupted output, silently dropping layout rules
    on replay. We now detect the empty-longhand pattern and keep the original
    textContent in that case. Affects users of any CSS-in-JS framework that
    combines var() with shorthands (Chakra UI v3, Panda CSS, Emotion, etc.).
    Same class of bug as rrweb-io/rrweb#1667. (2026-05-07)

  • Updated dependencies []:

v1.372.9

Compare Source

1.372.9
Patch Changes
  • #​3537 026e09d Thanks @​TueHaulund! - Pull in the canvas-manager fix from @posthog/rrweb 0.0.61: skip canvas
    snapshots while the WebGL context is lost so transparent bitmaps don't
    poison the worker's fingerprint dedup map and silently kill canvas
    recording for the rest of the session. Also wraps getCanvas() in
    try/catch so DOM/shadow-root traversal errors can't cancel the rAF
    loop. See PR #​3527 for context. (2026-05-05)
  • Updated dependencies []:

v1.372.8

Compare Source

1.372.8
Patch Changes

v1.372.7

Compare Source

1.372.7
Patch Changes

v1.372.6

Compare Source

1.372.6
Patch Changes
vitejs/vite (vite)

v8.0.11

Compare Source

Features
Bug Fixes
Documentation
Miscellaneous Chores
Code Refactoring
Tests
angular/angular (zone.js)

v0.16.2

Compare Source


Configuration

📅 Schedule: (in timezone Asia/Shanghai)

  • Branch creation
    • "before 10am on monday"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

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 enabled auto-merge (squash) May 10, 2026 16:42
@renovate renovate Bot force-pushed the renovate/npm-packages branch from 5f5a7d7 to 64b8448 Compare May 11, 2026 00:39
@renovate renovate Bot merged commit 4ae0af9 into main May 11, 2026
10 checks passed
@renovate renovate Bot deleted the renovate/npm-packages branch May 11, 2026 02:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant