Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 30, 2025

This PR contains the following updates:

Package Change Age Confidence
@iconify-json/lucide ^1.2.53 -> ^1.2.57 age confidence
@iconify-json/simple-icons ^1.2.40 -> ^1.2.43 age confidence
@nuxt/eslint (source) ^1.4.1 -> ^1.5.2 age confidence
@nuxtjs/mdc ^0.17.0 -> ^0.17.1 age confidence
@types/node (source) ^22.15.34 -> ^22.16.4 age confidence
ai (source) ^4.3.16 -> ^4.3.19 age confidence
drizzle-orm (source) ^0.44.2 -> ^0.44.3 age confidence
eslint (source) ^9.30.0 -> ^9.31.0 age confidence
pnpm (source) 10.12.4 -> 10.13.1 age confidence
workers-ai-provider ^0.7.0 -> ^0.7.2 age confidence
wrangler (source) ^4.22.0 -> ^4.24.4 age confidence

Release Notes

nuxt/eslint (@​nuxt/eslint)

v1.5.2

Compare Source

   🚀 Features
    View changes on GitHub

v1.5.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.5.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
nuxt-modules/mdc (@​nuxtjs/mdc)

v0.17.1

Compare Source

compare changes

🩹 Fixes
  • Detect mdcUnwrap on slots too (#​388)
  • Also check for nuxt-nightly path (#​401)
🏡 Chore
❤️ Contributors
vercel/ai (ai)

v4.3.19

Compare Source

Patch Changes
  • 849af1c: feat(ai): Record tool call errors on tool call spans recorded in generateText and streamText.

v4.3.18

Compare Source

Patch Changes
  • 37d93f4: fix (ai): throw error for v2 models or string model ids

v4.3.17

Compare Source

Patch Changes
  • a288694: Expose provider metadata as an attribute on exported OTEL spans
drizzle-team/drizzle-orm (drizzle-orm)

v0.44.3

Compare Source

  • Fixed types of $client for clients created by drizzle function
await db.$client.[...]
  • Added the updated_at column to the neon_auth.users_sync table definition.
eslint/eslint (eslint)

v9.31.0

Compare Source

v9.30.1

Compare Source

pnpm/pnpm (pnpm)

v10.13.1

Compare Source

Patch Changes
  • Run user defined pnpmfiles after pnpmfiles of plugins.

v10.13.0

Compare Source

Minor Changes
  • Added the possibility to load multiple pnpmfiles. The pnpmfile setting can now accept a list of pnpmfile locations #​9702.

  • pnpm will now automatically load the pnpmfile.cjs file from any config dependency named @pnpm/plugin-* or pnpm-plugin-* #​9729.

    The order in which config dependencies are initialized should not matter — they are initialized in alphabetical order. If a specific order is needed, the paths to the pnpmfile.cjs files in the config dependencies can be explicitly listed using the pnpmfile setting in pnpm-workspace.yaml.

Patch Changes
  • When patching dependencies installed via pkg.pr.new, treat them as Git tarball URLs #​9694.
  • Prevent conflicts between local projects' config and the global config in dangerouslyAllowAllBuilds, onlyBuiltDependencies, onlyBuiltDependenciesFile, and neverBuiltDependencies #​9628.
  • Sort keys in pnpm-workspace.yaml with deep #​9701.
  • The pnpm rebuild command should not add pkgs included in ignoredBuiltDependencies to ignoredBuilds in node_modules/.modules.yaml #​9338.
  • Replaced shell-quote with shlex for quoting command arguments #​9381.
cloudflare/ai (workers-ai-provider)

v0.7.2

Compare Source

Patch Changes

v0.7.1

Compare Source

Patch Changes
cloudflare/workers-sdk (wrangler)

v4.24.4

Compare Source

Patch Changes

v4.24.3

Compare Source

Patch Changes
  • #​9923 c01c4ee Thanks @​gpanders! - Fix image name resolution when modifying a container application

  • #​9833 3743896 Thanks @​dario-piotrowicz! - fix: ensure that container builds don't disrupt dev hotkey handling

    currently container builds run during local development (via wrangler dev or startWorker) prevent the standard hotkeys not to be recognized (most noticeably ctrl+c, preventing developers from existing the process), the changes here ensure that hotkeys are instead correctly handled as expected

  • Updated dependencies []:

v4.24.2

Compare Source

Patch Changes

v4.24.1

Compare Source

Patch Changes
  • #​9765 05adc61 Thanks @​hasip-timurtas! - Build container images without the user's account ID. This allows containers to be built and verified in dry run mode (where we do not necessarily have the user's account info).

    When we push the image to the managed registry, we first re-tag the image to include the user's account ID so that the image has the full resolved image name.

  • Updated dependencies [bb09e50, 25dbe54, 3bdec6b]:

v4.24.0

Compare Source

Minor Changes
  • #​9796 ba69586 Thanks @​simonabadoiu! - Browser Rendering local mode

  • #​9825 49c85c5 Thanks @​ReppCodes! - Add support for origin_connection_limit to Wrangler

    Configure connection limits to Hyperdrive via command line options:

    • --origin-connection-limit: The (soft) maximum number of connections that Hyperdrive may establish to the origin database.
  • #​9064 a1181bf Thanks @​sdnts! - Added an event-subscriptions subcommand

Patch Changes
  • #​9729 1b3a2b7 Thanks @​404Wolf! - Set docker build context to the Dockerfile directory when image_build_context is not explicitly provided

  • #​9845 dbfa4ef Thanks @​jonboulle! - remove extraneous double spaces from Wrangler help output

  • #​9811 fc29c31 Thanks @​gpanders! - Fix unauthorized errors on "containers images delete".

  • #​9813 45497ab Thanks @​gpanders! - Support container image names without account ID

  • #​9821 a447d67 Thanks @​WillTaylorDev! - Preview Aliases: Force alias generation to meet stricter naming requirements.

    For cases where CI is requesting Wrangler to generate the alias based on the branch name, we want a stricter check around the generated alias name in order to avoid version upload failures. If a valid alias name was not able to be generated, we warn and do not provide an alias (avoiding a version upload failure).

  • #​9840 7c55f9e Thanks @​dario-piotrowicz! - fix: make sure that the experimental remoteBindings flag is properly handled in getPlatformProxy

    There are two issues related to how the experimental remoteBindings flag is handled in getPlatformProxy that are being fixed by this change:

    • the experimental_remote configuration flag set on service bindings is incorrectly always taken into account, even if remoteBindings is set to false
    • the experimental_remote configuration flag of all the other bindings is never taken into account (effectively preventing the bindings to be used in remote mode) since the remoteBindings flag is not being properly propagated
  • #​9801 0bb619a Thanks @​IRCody! - Containers: Fix issue where setting an image URI instead of dockerfile would incorrectly not update the image

  • #​9872 a727db3 Thanks @​emily-shen! - fix: resolve Dockerfile path relative to the Wrangler config path

    This fixes a bug where Wrangler would not be able to find a Dockerfile if a Wrangler config path had been specified with the --config flag.

  • #​9815 1358034 Thanks @​gpanders! - Remove --json flag from containers and cloudchamber commands (except for "images list")

  • #​9734 1a58bc3 Thanks @​penalosa! - Make Wrangler warn more loudly if you're missing auth scopes

  • #​9748 7e3aa1b Thanks @​alsuren! - Internal-only WRANGLER_D1_EXTRA_LOCATION_CHOICES environment variable for enabling D1's testing location hints

  • Updated dependencies [ba69586, 1a75f85, 395f36d, 6f344bf]:

v4.23.0

Compare Source

Minor Changes
  • #​9535 56dc5c4 Thanks @​penalosa! - In 2023 we announced breakpoint debugging support for Workers, which meant that you could easily debug your Worker code in Wrangler's built-in devtools (accessible via the [d] hotkey) as well as multiple other devtools clients, including VSCode. For most developers, breakpoint debugging via VSCode is the most natural flow, but until now it's required manually configuring a launch.json file, running wrangler dev, and connecting via VSCode's built-in debugger.

    Now, using VSCode's built-in JavaScript Debug Terminals, there are just two steps: open a JS debug terminal and run wrangler dev (or vite dev). VSCode will automatically connect to your running Worker (even if you're running multiple Workers at once!) and start a debugging session.

  • #​9810 8acaf43 Thanks @​WillTaylorDev! - WC-3626 Pull branch name from WORKERS_CI_BRANCH if exists.

Patch Changes

Configuration

📅 Schedule: Branch creation - "on Monday" (UTC), 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.

Copy link

nuxthub-admin bot commented Jun 30, 2025

✅ Deployed chat-template

Deployed chat-template 99caf75 to preview

🔗 renovate-all-minor-patch.chat-template.pages.dev
📌 9f1d73b5.chat-template.pages.dev
📱
View QR Code QR code linking to deployment URL.

📋 View deployment logs

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7693470 to e34c79b Compare June 30, 2025 09:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e34c79b to 9a36eed Compare July 1, 2025 22:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9a36eed to f552519 Compare July 2, 2025 01:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f552519 to 09d6138 Compare July 2, 2025 05:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 09d6138 to 74a5669 Compare July 2, 2025 14:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 74a5669 to c9ea7a0 Compare July 3, 2025 14:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c9ea7a0 to 8d3a92b Compare July 4, 2025 05:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8d3a92b to 6dd7765 Compare July 7, 2025 08:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6dd7765 to 61c2dcf Compare July 7, 2025 16:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 61c2dcf to e9d9c86 Compare July 7, 2025 22:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e9d9c86 to 11f51eb Compare July 8, 2025 11:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 11f51eb to 5093fb6 Compare July 8, 2025 17:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5093fb6 to bc95ccc Compare July 9, 2025 01:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from bc95ccc to fea1f47 Compare July 9, 2025 12:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fea1f47 to 0df30bf Compare July 10, 2025 07:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0df30bf to 1c3ed3a Compare July 10, 2025 10:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1c3ed3a to 3da190c Compare July 10, 2025 17:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3da190c to 30d511f Compare July 10, 2025 23:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 30d511f to 090822a Compare July 11, 2025 23:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 090822a to d11b0e2 Compare July 14, 2025 06:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d11b0e2 to aa92f0a Compare July 14, 2025 17:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from aa92f0a to 3440e10 Compare July 14, 2025 23:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3440e10 to 60ec69f Compare July 15, 2025 13:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 60ec69f to 6218a5a Compare July 16, 2025 12:04
@benjamincanac benjamincanac merged commit 1789127 into main Jul 16, 2025
2 checks passed
@benjamincanac benjamincanac deleted the renovate/all-minor-patch branch July 16, 2025 13:19
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