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

chore(deps): update all non-major dependencies #508

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 28, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@angular/common (source) ^19.1.7 -> ^19.2.0 age adoption passing confidence
@angular/core (source) ^19.1.7 -> ^19.2.0 age adoption passing confidence
@angular/platform-browser-dynamic (source) ^19.1.7 -> ^19.2.0 age adoption passing confidence
@antfu/eslint-config ^4.3.0 -> ^4.4.0 age adoption passing confidence
ohash ^2.0.4 -> ^2.0.10 age adoption passing confidence
pnpm (source) 10.4.1 -> 10.5.2 age adoption passing confidence
svelte (source) >=5.20.4 -> >=5.21.0 age adoption passing confidence
svelte (source) ^5.20.4 -> ^5.21.0 age adoption passing confidence
typescript (source) 5.7.3 -> 5.8.2 age adoption passing confidence
unbuild ^3.3.1 -> ^3.5.0 age adoption passing confidence
unplugin-ast ^0.14.0 -> ^0.14.1 age adoption passing confidence
unplugin-vue-components ^28.4.0 -> ^28.4.1 age adoption passing confidence
vite-plugin-solid ^2.11.2 -> ^2.11.6 age adoption passing confidence

Release Notes

angular/angular (@​angular/common)

v19.2.0

Compare Source

common
Commit Type Description
3e39da593a feat introduce experimental httpResource (#​59876)
compiler
Commit Type Description
5b20bab96d feat Add Skip Hydration diagnostic. (#​59576)
fe8a68329b feat support untagged template literals in expressions (#​59230)
compiler-cli
Commit Type Description
ed705a856a feat detect missing structural directive imports (#​59443)
core
Commit Type Description
2588985f43 feat pass signal node to throwInvalidWriteToSignalErrorFn (#​59600)
168516462a feat support default value in resource() (#​59655)
bc2ad7bfd3 feat support streaming resources (#​59573)
146ab9a76e feat support TypeScript 5.8 (#​59830)
6c92d65349 fix add hasValue narrowing to ResourceRef (#​59708)
96e602ebe9 fix cancel in-progress request when same value is assigned (#​59280)
6789c7ef94 fix Defer afterRender until after first CD (#​59455) (#​59551)
c87e581dd9 fix Don't run effects in check no changes pass (#​59455) (#​59551)
127fc0dc84 fix fix resource()'s previous.state (#​59708)
b592b1b051 fix fix race condition in resource() (#​59851)
a299e02e91 fix preserve tracing snapshot until tick finishes (#​59796)
forms
Commit Type Description
fa0c3e3210 feat support type set in form validators (#​45793)
migrations
Commit Type Description
1cd3a7db83 feat add migration to convert templates to use self-closing tags (#​57342)
platform-browser
Commit Type Description
e6cb411e43 fix automatically disable animations on the server (#​59762)
platform-server
Commit Type Description
fc5d187da5 fix decouple server from animations module (#​59762)

v19.1.8

Compare Source

benchpress
Commit Type Description
f0990c67e6 fix Ensure future-proof correct initialization order (#​60025)
common
Commit Type Description
1fbaeab37d fix make types for HttpClient more readable (#​59901)
core
Commit Type Description
c611c8d212 fix capture stack for HMR errors (#​60067)
language-service
Commit Type Description
4c9d09c643 fix provide correct rename info for elements (#​60088)
antfu/eslint-config (@​antfu/eslint-config)

v4.4.0

Compare Source

   🚀 Features
    View changes on GitHub
unjs/ohash (ohash)

v2.0.10

Compare Source

compare changes

🔥 Performance
  • serialize: Faster serialization of typed arrays and objects with string keys (#​134)
❤️ Contributors

v2.0.9

Compare Source

compare changes

🔥 Performance
  • serialize: Faster Date serialization (#​130)
🩹 Fixes
  • serialize: Handling objects with null constructors (#​131)
  • serialize: Recorgnize global constructor names (#​132)
❤️ Contributors

v2.0.8

Compare Source

compare changes

🔥 Performance
  • serialize: Faster serialization and less bundle size (#​126)
📦 Build
  • Export isEqual from main subpath for backward compat (#​128)
❤️ Contributors

v2.0.7

Compare Source

compare changes

🔥 Performance
  • serialize: Faster symbol and number comparison (#​125)
✅ Tests
  • benchmarks: Add serialize presets (#​124)
❤️ Contributors

v2.0.6

Compare Source

compare changes

🔥 Performance
  • serialize: Fast path to compare primitive values (#​123)
🩹 Fixes
  • serialize: Better circular references handling (#​119)
🏡 Chore
❤️ Contributors

v2.0.5

Compare Source

compare changes

🩹 Fixes
  • Serialization format of typed arrays (#​121)
❤️ Contributors
pnpm/pnpm (pnpm)

v10.5.2

Compare Source

Patch Changes
  • The pnpm config set command should change the global .npmrc file by default.
    This was a regression introduced by #​9151 and shipped in pnpm v10.5.0.

v10.5.1

Compare Source

Patch Changes
  • Throw an error message if a pnpm-workspaces.yaml or pnpm-workspaces.yml file is found instead of a pnpm-workspace.yaml #​9170.
  • Fix the update of pnpm-workspace.yaml by the pnpm approve-builds command #​9168.
  • Normalize generated link paths in package.json #​9163
  • Specifying overrides in pnpm-workspace.yaml should work.
  • pnpm dlx should ignore settings from the package.json file in the current working directory #​9178.

v10.5.0

Compare Source

Minor Changes
  • Allow to set the "pnpm" settings from package.json via the pnpm-workspace.yaml file #​9121.

  • Added support for automatically syncing files of injected workspace packages after pnpm run #​9081. Use the sync-injected-deps-after-scripts setting to specify which scripts build the workspace package. This tells pnpm when syncing is needed. The setting should be defined in a .npmrc file at the root of the workspace. Example:

    sync-injected-deps-after-scripts[]=compile
  • The packages field in pnpm-workspace.yaml became optional.

Patch Changes
  • pnpm link with no parameters should work as if --global is specified #​9151.
  • Allow scope registry CLI option without --config. prefix such as --@​scope:registry=https://scope.example.com/npm #​9089.
  • pnpm link <path> should calculate relative path from the root of the workspace directory #​9132.
  • Fix a bug causing catalog snapshots to be removed from the pnpm-lock.yaml file when using --fix-lockfile and --filter. #​8639
  • Fix a bug causing catalog protocol dependencies to not re-resolve on a filtered install #​8638.
sveltejs/svelte (svelte)

v5.21.0

Compare Source

Minor Changes
  • chore: Reduce hydration comment for {:else if} (#​15250)
Patch Changes
  • fix: disallow bind:group to snippet parameters (#​15401)

v5.20.5

Compare Source

Patch Changes
  • fix: allow double hyphen css selector names (#​15384)

  • fix: class:directive not working with $restProps #​15386 (#​15389)
    fix: spread add an useless cssHash on non-scoped element

  • fix: catch error on @​const tag in svelte:boundary in DEV mode (#​15369)

  • fix: allow for duplicate var declarations (#​15382)

  • fix : bug "$0 is not defined" on svelte:element with a function call on class (#​15396)

microsoft/TypeScript (typescript)

v5.8.2

Compare Source

unjs/unbuild (unbuild)

v3.5.0

Compare Source

compare changes

🚀 Enhancements
  • Use fix-dts-default-cjs-exports to transform cjs types (#​513)
🏡 Chore
❤️ Contributors

v3.4.2

Compare Source

compare changes

🏡 Chore
❤️ Contributors

v3.4.1

Compare Source

compare changes

🩹 Fixes
  • Filter commonjs plugin when generating declaration (#​495)
❤️ Contributors

v3.4.0

Compare Source

compare changes

🚀 Enhancements
  • Prefer publishConfig from package.json when defined (#​506)
🩹 Fixes
  • Workaroud the composite in tsconfig.json (#​504)
📦 Build
  • Remove extra dist files (c0c00ad)
🏡 Chore
❤️ Contributors
unplugin/unplugin-ast (unplugin-ast)

v0.14.1

Compare Source

No significant changes

    View changes on GitHub
unplugin/unplugin-vue-components (unplugin-vue-components)

v28.4.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
solidjs/vite-plugin-solid (vite-plugin-solid)

v2.11.6

Compare Source

Patch Changes
  • 14da18d: Fix accessing the wrong user test configuration

v2.11.5

Compare Source

Patch Changes
  • 57cb53a: Update path to type declaration

v2.11.4

Compare Source

Patch Changes
  • ff66baf: Adjust path to type declaration

v2.11.3

Compare Source

Patch Changes
  • d87159b: Fix duplicated test setupFiles in resolved vite config

Configuration

📅 Schedule: Branch creation - "after 2am and before 3am" (UTC), Automerge - "after 1am and before 2am" (UTC).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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.

Copy link
Contributor

Bundle Size Analysis

File Size Gzipped Size Size Diff Gzipped Size Diff
Client 10.6 kB (10901 B) 4.4 kB (4556 B) 0.00% (0 B) 0.00% ( 0 B)
Server 8 kB (8192 B) 3.4 kB (3453 B) 0.00% (0 B) 0.00% ( 0 B)

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from bb7163f to e31e998 Compare March 3, 2025 09:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e31e998 to 0b100c3 Compare March 3, 2025 19:04
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.

0 participants