Update all non-major dependencies - #35
Merged
Merged
Conversation
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
4 times, most recently
from
August 1, 2025 00:31
1568ff7 to
9689f50
Compare
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
from
August 1, 2025 07:28
9689f50 to
feddfe9
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
7.1.1->7.1.22.26.1->2.27.02.8.13->2.9.01.54.1->1.54.210.13.1->10.14.05.37.0->5.37.25.8.3->5.9.222.1.0->22.2.04.26.0->4.27.0Release Notes
sveltejs/kit (@sveltejs/adapter-cloudflare)
v7.1.2Compare Source
Patch Changes
fix: resolve the absolute path of the Wrangler config setting
assets.directoryin case the config file is in a different directory than the root project (#14036)Updated dependencies [
793ae28]:sveltejs/kit (@sveltejs/kit)
v2.27.0Compare Source
Minor Changes
huntabyte/bits-ui (bits-ui)
v2.9.0Compare Source
Minor Changes
feat(CheckboxGroup): add
readonlyprop/functionality (#1688)feat(Checkbox): add
readonlyprop/functionality (#1688)Patch Changes
v2.8.14Compare Source
Patch Changes
fix(Menubar): ensure extension exists in import (#1684)
fix(Popover): ensure when using a
customAnchor, outside interactions are properly handled (#1679)fix(TimeField): ensure input value is string (#1681)
fix(Select): ensure required enforced when type='multiple' (#1685)
microsoft/playwright (playwright)
v1.54.2Compare Source
Highlights
https://github.com/microsoft/playwright/issues/36714 - [Regression]: Codegen is not able to launch in Administrator Terminal on Windows (ProtocolError: Protocol error)https://github.com/microsoft/playwright/issues/368288 - [Regression]: Playwright Codegen keeps spamming with selected optiohttps://github.com/microsoft/playwright/issues/3681010 - [Regression]: Starting Codegen with target language doesn't work anymore
Browser Versions
This version was also tested against the following stable channels:
pnpm/pnpm (pnpm)
v10.14.0Compare Source
Minor Changes
Added support for JavaScript runtime resolution
Declare Node.js, Deno, or Bun in
devEngines.runtime(insidepackage.json) and let pnpm download and pin it automatically.Usage example:
{ "devEngines": { "runtime": { "name": "node", "version": "^24.4.0", "onFail": "download" (we only support the "download" value for now) } } }How it works:
pnpm installresolves your specified range to the latest matching runtime version.Why this is better:
useNodeVersionandexecutionEnv.nodeVersion)executionEnv.nodeVersion). So, different projects in a workspace can use different runtimes.devEngines.runtimesetting will install the runtime locally, which we will improve in future versions of pnpm by using a shared location on the computer.Related PR: #9755.
Add
--cpu,--libc, and--ostopnpm install,pnpm add, andpnpm dlxto customizesupportedArchitecturesvia the CLI #7510.Patch Changes
pnpm adddownloads packages whoselibcdiffer frompnpm.supportedArchitectures.libc.dlxto parse CLI flags and options between thedlxcommand and the command to run or between thedlxcommand and--#9719.pnpm install --prodshould removing hoisted dev dependencies #9782.pnpm installto incorrectly assume the lockfile is up to date after changing a local tarball that has peers dependencies.sveltejs/svelte (svelte)
v5.37.2Compare Source
Patch Changes
fix: double event processing in firefox due to event object being garbage collected (#16527)
fix: add bindable dimension attributes types to SVG and MathML elements (#16525)
fix: correctly differentiate static fields before emitting
duplicate_class_field(#16526)fix: prevent last_propagated_event from being DCE'd (#16538)
v5.37.1Compare Source
Patch Changes
chore: remove some todos (#16515)
fix: allow await expressions inside
{#await ...}argument (#16514)fix:
append_stylesin an effect to make them available on mount (#16509)chore: remove
parser.template_untrimmed(#16511)fix: always inject styles when compiling as a custom element (#16509)
microsoft/TypeScript (typescript)
v5.9.2Compare Source
unplugin/unplugin-icons (unplugin-icons)
v22.2.0Compare Source
🚀 Features
🐞 Bug Fixes
View changes on GitHub
cloudflare/workers-sdk (wrangler)
v4.27.0Compare Source
Minor Changes
#9914
a24c9d8Thanks @petebacondarwin! - Add support for loading local dev vars from .env filesIf there are no
.dev.varsor.dev.vars.<environment>files, when running Wrangler or the Vite plugin in local development mode,they will now try to load additional local dev vars from
.env,.env.local,.env.<environment>and.env.<environment>.localfiles.These loaded vars are only for local development and have no effect in production to the vars in a deployed Worker.
Wrangler and Vite will continue to load
.envfiles in order to configure themselves as a tool.Further details:
vite buildthe local vars will be computed and stored in a.dev.varsfile next to the compiled Worker code, so thatvite previewcan use them.wrangler typescommand will similarly read the.envfiles (if no.dev.varsfiles) in order to generate theEnvinterface.CLOUDFLARE_LOAD_DEV_VARS_FROM_DOT_ENVenvironment variable is"false"then local dev variables will not be loaded from.envfiles.CLOUDFLARE_INCLUDE_PROCESS_ENVenvironment variable is"true"then all the environment variables found onprocess.envwill be included as local dev vars.--env-file=<path/to/dotenv/file>global CLI option. This affects both loading.envto configure Wrangler the tool as well as loading local dev vars.Patch Changes
#10051
0f7820eThanks @nikitassharma! - Add support for custom instance limits for containers. For example, instead ofhaving to use the preconfigured dev/standard/basic instance types, you can now
set:
This feature is currently only available to customers on an enterprise plan.
#10149
e9bb8d3Thanks @vicb! - fixrequire("debug")in nodejs_compat modeUpdated dependencies [
9b61f44]:v4.26.1Compare Source
Patch Changes
#10061
f8a80a8Thanks @emily-shen! - feat(containers): try to automatically get the socket path that the container engine is listening on.Currently, if your container engine isn't set up to listen on
unix:///var/run/docker.sock(or isn't symlinked to that), then you have to manually set this via thedev.containerEnginefield in your Wrangler config, or via the env varsWRANGLER_DOCKER_HOST. This change means that we will try and get the socket of the current context automatically. This should reduce the occurrence of opaqueinternal errors thrown by the runtime when the daemon is not listening onunix:///var/run/docker.sock.In addition to
WRANGLER_DOCKER_HOST,DOCKER_HOSTcan now also be used to set the container engine socket address.#10048
dbdbb8cThanks @vicb! - pass the compatibility date and flags to the unenv preset#10096
687655fThanks @vicb! - bump unenv to 2.0.0-rc.19#9897
755a249Thanks @edmundhung! - fix: wrangler types should infer the types of the default worker entrypointUpdated dependencies [
82a5b2e,f8f7352,2df1d06,dbdbb8c,5991a9c,687655f]: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.
This PR was generated by Mend Renovate. View the repository job log.