Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 2, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@cloudflare/workers-types 4.20250525.0 -> 4.20250603.0 age adoption passing confidence
@eslint/js (source) 9.27.0 -> 9.28.0 age adoption passing confidence
@tailwindcss/vite (source) 4.1.7 -> 4.1.8 age adoption passing confidence
@types/react (source) 19.1.5 -> 19.1.6 age adoption passing confidence
@vitejs/plugin-react-swc (source) 3.10.0 -> 3.10.1 age adoption passing confidence
eslint (source) 9.27.0 -> 9.28.0 age adoption passing confidence
miniflare (source) 4.20250508.3 -> 4.20250525.0 age adoption passing confidence
tailwindcss (source) 4.1.7 -> 4.1.8 age adoption passing confidence
typescript-eslint (source) 8.32.1 -> 8.33.1 age adoption passing confidence
wrangler (source) 4.16.1 -> 4.18.0 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

cloudflare/workerd (@​cloudflare/workers-types)

v4.20250603.0

Compare Source

v4.20250601.0

Compare Source

v4.20250531.0

Compare Source

v4.20250529.0

Compare Source

v4.20250528.0

Compare Source

eslint/eslint (@​eslint/js)

v9.28.0

Compare Source

tailwindlabs/tailwindcss (@​tailwindcss/vite)

v4.1.8

Compare Source

Added
  • Improve error messages when @apply fails (#​18059)
Fixed
  • Upgrade: Do not migrate declarations that look like candidates in <style> blocks (#​18057, 18068)
  • Upgrade: Don't error when looking for tailwindcss in pnpm monorepos (#​18065)
  • Upgrade: Don't error when updating dependencies in pnpm monorepos (#​18065)
  • Upgrade: Migrate deprecated order-none to order-0 (#​18126)
  • Support Leptos class: attributes when extracting classes (#​18093)
  • Fix "Cannot read properties of undefined" crash on malformed arbitrary value (#​18133)
  • Upgrade: Migrate -mt-[0px] to mt-[0px] instead of the other way around (#​18154)
  • Fix Haml pre-processing crash when there is no \n at the end of the file (#​18155)
  • Ignore .pnpm-store folders by default (can be overridden by @source … rules) (#​18163)
  • Fix PostCSS crash when calling toJSON() (#​18083)
vitejs/vite-plugin-react (@​vitejs/plugin-react-swc)

v3.10.1

Compare Source

Add explicit semicolon in preambleCode #​485

This fixes an edge case when using HTML minifiers that strips line breaks aggressively.

eslint/eslint (eslint)

v9.28.0

Compare Source

cloudflare/workers-sdk (miniflare)

v4.20250525.0

Compare Source

Minor Changes
  • #​9387 e39a45f Thanks @​jamesopstad! - Add logReady method to Miniflare Log class. This makes it possible to override the messages printed on server start.

  • #​9376 fdae3f7 Thanks @​jamesopstad! - Add support for Node.js style custom handlers for service bindings and outbound services. This makes it easier to integrate Miniflare with existing Node.js middleware and libraries as req and res objects can be used directly.

    new Miniflare({
    	serviceBindings: {
    		CUSTOM: {
    			node: (req, res) => {
    				res.end(`Hello world`);
    			},
    		},
    	},
    });
Patch Changes

v4.20250523.0

Compare Source

Minor Changes
  • #​9330 34c71ce Thanks @​edmundhung! - Add a new defaultPersistRoot option to control where plugins persist data when no path is provided.

    // Before this change / No `defaultPersistRoot`
    new Miniflare({
    	kvPersist: undefined, // → "/(tmp)/kv"
    	d1Persist: true, // → "$PWD/.mf/d1"
    	r2Persist: false, // → "/(tmp)/r2"
    	cachePersist: "/my-cache", // → "/my-cache"
    });
    
    // With `defaultPersistRoot`
    new Miniflare({
    	defaultPersistRoot: "/storage",
    	kvPersist: undefined, // → "/storage/kv"
    	d1Persist: true, // → "/storage/d1"
    	r2Persist: false, // → "/(tmp)/r2"
    	cachePersist: "/my-cache", // → "/my-cache"
    });
Patch Changes
  • #​9184 f7c82a4 Thanks @​dependabot! - chore: update dependencies of "miniflare" package

    The following dependency versions have been updated:

    Dependency From To
    workerd 1.20250508.0 1.20250520.0
    @​cloudflare/workers-types ^4.20250508.0 ^4.20250520.0
  • #​9346 7ddd865 Thanks @​dependabot! - chore: update dependencies of "miniflare" package

    The following dependency versions have been updated:

    Dependency From To
    workerd 1.20250520.0 1.20250523.0
    @​cloudflare/workers-types ^4.20250520.0 ^4.20250523.0
  • #​9335 6479fc5 Thanks @​penalosa! - Redesign wrangler dev to more clearly present information and have a bit of a glow up ✨
    Screenshot 2025-05-22 at 01 11 43

  • #​9106 e5ae13a Thanks @​edmundhung! - fix: decouple KV plugin from secrets store plugin

    The KV plugin previously configured both KV namespace and secrets store bindings with the same service name but different persistence paths, causing conflicts when both were defined. This change copies the KV binding implementation into the secrets store plugin and customizes its service name to prevent collisions.

typescript-eslint/typescript-eslint (typescript-eslint)

v8.33.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.33.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

cloudflare/workers-sdk (wrangler)

v4.18.0

Compare Source

Minor Changes
Patch Changes
  • #​9308 d3a6eb3 Thanks @​dario-piotrowicz! - expose new utilities and types to aid consumers of the programmatic mixed-mode API

    Specifically the exports have been added:

    • Experimental_MixedModeSession: type representing a mixed-mode session
    • Experimental_ConfigBindingsOptions: type representing config-bindings
    • experimental_pickRemoteBindings: utility for picking only the remote bindings from a record of start-worker bindings.
    • unstable_convertConfigBindingsToStartWorkerBindings: utility for converting config-bindings into start-worker bindings (that can be passed to startMixedModeSession)
  • #​9347 b8f058c Thanks @​penalosa! - Improve binding display on narrower terminals

  • Updated dependencies [d9d937a, e39a45f, fdae3f7]:

    • miniflare@4.20250525.0

v4.17.0

Compare Source

Minor Changes
  • #​9321 6c03bde Thanks @​petebacondarwin! - Add support for FedRAMP High compliance region

    Now it is possible to target Wrangler at the FedRAMP High compliance region.
    There are two ways to signal to Wrangler to run in this mode:

    • set "compliance_region": "fedramp_high" in a Wrangler configuration
    • set CLOUDFLARE_COMPLIANCE_REGION=fedramp_high environment variable when running Wrangler

    If both are provided and the values do not match then Wrangler will exit with an error.

    When in this mode OAuth authentication is not supported.
    It is necessary to authenticate using a Cloudflare API Token acquired from the Cloudflare FedRAMP High dashboard.

    Most bindings and commands are supported in this mode.

    • Unsupported commands may result in API requests that are not supported - possibly 422 Unprocessable Entity responses.
    • Unsupported bindings may work in local dev, as there is no local validation, but will fail at Worker deployment time.

    Resolves DEVX-1921.

  • #​9330 34c71ce Thanks @​edmundhung! - Updated internal configuration to use Miniflare’s new defaultPersistRoot instead of per-plugin persist flags

  • #​8973 cc7fae4 Thanks @​Caio-Nogueira! - Show latest instance by default on workflows instances describe command

Patch Changes

Configuration

📅 Schedule: Branch creation - "before 4am 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.

@renovate renovate bot added the internal An internal refactor or improvement label Jun 2, 2025
@renovate renovate bot force-pushed the renovate/npm-development-dependencies branch 2 times, most recently from 16e4df5 to 52305f2 Compare June 3, 2025 01:56
@renovate renovate bot force-pushed the renovate/npm-development-dependencies branch from 52305f2 to 8dddaec Compare June 3, 2025 05:57
@MichaReiser MichaReiser merged commit 57202c1 into main Jun 3, 2025
34 checks passed
@MichaReiser MichaReiser deleted the renovate/npm-development-dependencies branch June 3, 2025 06:06
dcreager added a commit that referenced this pull request Jun 3, 2025
…aration

* origin/main:
  [ty] Infer `list[T]` when unpacking non-tuple type (#18438)
  [ty] Meta-type of type variables should be type[..] (#18439)
  [`pyupgrade`] Make fix unsafe if it deletes comments (`UP050`) (#18390)
  [`pyupgrade`] Make fix unsafe if it deletes comments (`UP004`) (#18393)
  [ty] Support using legacy typing aliases for generic classes in type annotations (#18404)
  Use ty's completions in playground (#18425)
  Update editor setup docs about Neovim and Vim (#18324)
  Update NPM Development dependencies (#18423)
  Infer `list[T]` for starred target in unpacking (#18401)
  [`refurb`] Mark `FURB180` fix unsafe when class has bases (#18149)
  [`fastapi`] Avoid false positive for class dependencies (`FAST003`) (#18271)
carljm added a commit to mtshiba/ruff that referenced this pull request Jun 4, 2025
* main:
  [ty] Add tests for empty list/tuple unpacking (astral-sh#18451)
  [ty] Argument type expansion for overload call evaluation (astral-sh#18382)
  [ty] Minor cleanup for `site-packages` discovery logic (astral-sh#18446)
  [ty] Add generic inference for dataclasses (astral-sh#18443)
  [ty] dataclasses: Allow using dataclasses.dataclass as a function. (astral-sh#18440)
  [ty] Create separate `FunctionLiteral` and `FunctionType` types (astral-sh#18360)
  [ty] Infer `list[T]` when unpacking non-tuple type (astral-sh#18438)
  [ty] Meta-type of type variables should be type[..] (astral-sh#18439)
  [`pyupgrade`] Make fix unsafe if it deletes comments (`UP050`) (astral-sh#18390)
  [`pyupgrade`] Make fix unsafe if it deletes comments (`UP004`) (astral-sh#18393)
  [ty] Support using legacy typing aliases for generic classes in type annotations (astral-sh#18404)
  Use ty's completions in playground (astral-sh#18425)
  Update editor setup docs about Neovim and Vim (astral-sh#18324)
  Update NPM Development dependencies (astral-sh#18423)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
internal An internal refactor or improvement
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant