Skip to content

chore(deps): update dependency miniflare to v3.20250718.3#4

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/miniflare-3.x-lockfile
Open

chore(deps): update dependency miniflare to v3.20250718.3#4
renovate[bot] wants to merge 1 commit intomainfrom
renovate/miniflare-3.x-lockfile

Conversation

@renovate
Copy link

@renovate renovate bot commented Mar 6, 2024

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
miniflare (source) 3.20240223.03.20250718.3 age confidence

Release Notes

cloudflare/workers-sdk (miniflare)

v3.20250718.3

Compare Source

Patch Changes
  • #​11664 d006fae Thanks @​NuroDev! - Fix Durable Object RPC calls from Node.js blocking the event loop, preventing Promise.race() and timeouts from working correctly.

    Previously, RPC calls from Node.js to Durable Objects would block the Node.js event loop, causing Promise.race() with timeouts to never resolve. This fix ensures that RPC calls properly yield control back to the event loop, allowing concurrent operations and timeouts to work as expected.

  • #​10890 4ae9ead Thanks @​alsuren! - Document that dumpSql is shared with d1-worker, and incorporate some D1 internal stats gathering machinery (which is currently unused by miniflare)

v3.20250718.2

Compare Source

Patch Changes
  • #​10716 a879fe0 Thanks @​dario-piotrowicz! - fix: api proxy preserve multiple Set-Cookie headers

  • #​10465 6de07fb Thanks @​dario-piotrowicz! - Loosen validation around different configurations for Durable Object

    Allow durable objects to have enableSql, unsafeUniqueKey and unsafePreventEviction configurations set to undefined even if they same durable objects are defined with those configurations set to a different value (this would allow workers using external durable objects not to have to duplicate such configurations in their options)

  • #​10484 ab47329 Thanks @​edmundhung! - chore: bump devalue version to 5.3.2

v3.20250718.1

Compare Source

Minor Changes
  • #​10015 b5d9bb0 Thanks @​dario-piotrowicz! - add structuredWorkerdLogs option

    add a new top-level option named structuredWorkerdLogs that makes workerd print to stdout structured logs (stringified jsons of the following shape: { timestamp: number, level: string, message: string }) instead of printing logs to stdout and stderr

Patch Changes
  • #​10216 76d3002 Thanks @​devin-ai-integration! - Add macOS version validation to prevent EPIPE errors on unsupported macOS versions (below 13.5). Miniflare and C3 fail hard while Wrangler shows warnings but continues execution.

v3.20250718.0

Compare Source

Patch Changes
  • #​10019 cce7f6f Thanks @​dario-piotrowicz! - chore: update workerd dependency to latest

  • #​10035 028f689 Thanks @​petebacondarwin! - Fix D1 SQL dump generation: escape identifiers and handle SQLite's dynamic typing

    Escape column and table names to prevent SQL syntax errors.
    Escape values based on their runtime type to support SQLite's flexible typing.

v3.20250408.2

Compare Source

Patch Changes
  • #​8681 7a57c14 Thanks @​workers-devprod! - fix(miniflare): strip CF-Connecting-IP header from all outbound requests

  • #​9250 b2b5ee8 Thanks @​workers-devprod! - fix: strip CF-Connecting-IP header within fetch

    In v4.15.0, Miniflare began stripping the CF-Connecting-IP header via a global outbound service, which led to a TCP connection regression due to a bug in Workerd. This PR patches the fetch API to strip the header during local wrangler dev sessions as a temporary workaround until the underlying issue is resolved.

  • #​9211 56a0d6e Thanks @​petebacondarwin! - fix: ensure the fetch proxy message port is started

    While Node.js will start the message port automatically when a message event listener is added,
    this diverges from the standard Web API for message ports, which require you to explicitly start
    listening on the port.

v3.20250408.1

Compare Source

Patch Changes

v3.20250408.0

Compare Source

Patch Changes

v3.20250310.2

Compare Source

Patch Changes

v3.20250310.1

Compare Source

Patch Changes

v3.20250310.0

Compare Source

Patch Changes

v3.20250224.0

Compare Source

Patch Changes
  • #​8338 2d40989 Thanks @​GregBrimble! - feat: Upload _headers and _redirects if present with Workers Assets as part of wrangler deploy and wrangler versions upload.

  • #​8251 da568e5 Thanks @​dependabot! - chore: update dependencies of "miniflare" package

    The following dependency versions have been updated:

    Dependency From To
    workerd 1.20250214.0 1.20250224.0
    @​cloudflare/workers-types ^4.20250214.0 ^4.20250224.0
  • #​8288 cf14e17 Thanks @​CarmenPopoviciu! - feat: Add assets Proxy Worker skeleton in miniflare

    This commit implements a very basic Proxy Worker skeleton, and wires it in the "pipeline" miniflare creates for assets. This Worker will be incrementally worked on, but for now, the current implementation will forward all incoming requests to the Router Worker, thus leaving the current assets behaviour in local dev, the same.

    This is an experimental feature available under the --x-assets-rpc flag: wrangler dev --x-assets-rpc.

  • #​8355 79c7810 Thanks @​GregBrimble! - fix: Add default empty router config for assets in Miniflare

v3.20250214.2

Compare Source

Patch Changes

v3.20250214.1

Compare Source

Patch Changes

v3.20250214.0

Compare Source

Patch Changes

v3.20250204.1

Compare Source

Patch Changes

v3.20250204.0

Compare Source

Patch Changes
  • #​8032 c80dbd8 Thanks @​dependabot! - chore: update dependencies of "miniflare" package

    The following dependency versions have been updated:

    Dependency From To
    workerd 1.20250129.0 1.20250204.0
    @​cloudflare/workers-types ^4.20250129.0 ^4.20250204.0
  • #​7290 0c0374c Thanks @​emily-shen! - fix: add support for workers with assets when running multiple workers in one wrangler dev instance

    #​7251 added support for running multiple Workers in one wrangler dev/miniflare session. e.g. wrangler dev -c wrangler.toml -c ../worker2/wrangler.toml, which among other things, allowed cross-service RPC to Durable Objects.

    However this did not work in the same way as production when there was a Worker with assets - this PR should fix that.

v3.20250129.0

Compare Source

Patch Changes

v3.20250124.1

Compare Source

Patch Changes

v3.20250124.0

Compare Source

Patch Changes

v3.20241230.2

Compare Source

Patch Changes
  • #​7738 8e9aa40 Thanks @​penalosa! - Use TEXT bindings for plain text values in Miniflare. This is an internal detail that should have no user facing impact.

v3.20241230.1

Compare Source

Minor Changes
  • #​7702 78bdec5 Thanks @​penalosa! - Support the CF-Connecting-IP header, which will be available in your Worker to determine the IP address of the client that initiated a request.
Patch Changes

v3.20241230.0

Compare Source

Patch Changes

v3.20241218.0

Compare Source

Patch Changes

v3.20241205.0

Compare Source

Patch Changes

v3.20241106.2

Compare Source

Patch Changes

v3.20241106.1

Compare Source

Minor Changes

v3.20241106.0

Compare Source

Patch Changes

v3.20241022.0

Compare Source

Patch Changes

v3.20241018.0

Compare Source

Patch Changes

v3.20241011.0

Compare Source

Patch Changes

v3.20241004.0

Compare Source

Patch Changes

v3.20240925.1

Compare Source

Patch Changes
  • #​6835 5c50949 Thanks @​emily-shen! - fix: rename asset plugin options slightly to match wrangler.toml better

    Renamed path -> directory, bindingName -> binding.

v3.20240925.0

Compare Source

Patch Changes
  • #​6826 5e2e62c Thanks @​dependabot! - chore: update dependencies of "miniflare" package

    The following dependency versions have been updated:

    Dependency From To
    workerd 1.20240909.0 1.20240925.0
    @​cloudflare/workers-types ^4.20240909.0 ^4.20240925.0
  • #​6824 1c58a74 Thanks @​petebacondarwin! - fix: teach Miniflare about node_compat version date switch

    A compatibility of Sept 23, 2024 or later means that nodejs_compat is equivalent to nodejs_compat_v2.

v3.20240909.5

Compare Source

Patch Changes
  • #​6728 1ca313f Thanks @​emily-shen! - fix: remove filepath encoding on asset upload and handle sometimes-encoded characters

    Some characters like [ ] @​ are encoded by encodeURIComponent() but are often requested at an unencoded URL path.
    This change will make assets with filenames with these characters accessible at both the encoded and unencoded paths,
    but to use the encoded path as the canonical one, and to redirect requests to the canonical path if necessary.

v3.20240909.4

Compare Source

Patch Changes

v3.20240909.3

Patch Changes
  • #​6514 2407c41 Thanks @​CarmenPopoviciu! - fix: Fix Miniflare regression introduced in #​5570

    PR #​5570 introduced a regression in Miniflare, namely that declaring Queue Producers like queueProducers: { "MY_QUEUE": "my-queue" } no longer works. This commit fixes the issue.

    Fixes #​5908

v3.20240909.2

Patch Changes

v3.20240909.1

Compare Source

Minor Changes

v3.20240909.0

Compare Source

Patch Changes

v3.20240821.2

Compare Source

Patch Changes
  • #​6627 5936282 Thanks @​GregBrimble! - fix: Fixes max asset count error message to properly report count of assets

  • #​6612 6471090 Thanks @​dario-piotrowicz! - fix: add hyperdrive bindings support in getBindings

    Note: the returned binding values are no-op/passthrough that can be used inside node.js, meaning
    that besides direct connections via the connect methods, all the other values point to the
    same db connection specified in the user configuration

v3.20240821.1

Compare Source

Patch Changes
  • #​6564 e8975a9 Thanks @​emily-shen! - feat: add assets plugin to miniflare

    New miniflare plugin for Workers + Assets, with relevant services imported from workers-shared.

v3.20240821.0

Compare Source

Patch Changes

v3.20240806.1

Compare Source

Minor Changes
  • #​6403 00f340f Thanks @​CarmenPopoviciu! - feat: Extend KV plugin behaviour to support Workers assets

    This commit extends Miniflare's KV plugin's behaviour to support Workers assets, and therefore enables the emulation of Workers with assets in local development.

v3.20240806.0

Compare Source

Patch Changes

v3.20240725.0

Compare Source

Patch Changes
  • #​6345 a9021aa Thanks @​dependabot! - chore: update dependencies of "miniflare" package

    The following dependency versions have been updated:

    Dependency From To
    workerd 1.20240718.0 1.20240725.0
    @​cloudflare/workers-types ^4.20240718.0 ^4.20240725.0
  • #​6301 44ad2c7 Thanks @​dario-piotrowicz! - fix: Allow the magic proxy to proxy objects containing functions indexed by symbols

    In #​5670 we introduced the possibility
    of the magic proxy to handle object containing functions, the implementation didn't
    account for functions being indexed by symbols, address such issue

v3.20240718.1

Compare Source

Patch Changes

v3.20240718.0

Compare Source

Patch Changes

v3.20240712.0

Compare Source

Patch Changes

v3.20240701.0

Compare Source

Minor Changes
Patch Changes

v3.20240620.0

Compare Source

Patch Changes

v3.20240610.1

Compare Source

Patch Changes
  • #​6050 a0c3327 Thanks @​threepointone! - chore: Normalize more deps

    This is the last of the patches that normalize dependencies across the codebase. In this batch: ws, vitest, zod , rimraf, @types/rimraf, ava, source-map, glob, cookie, @types/cookie, @microsoft/api-extractor, @types/mime,


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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@changeset-bot
Copy link

changeset-bot bot commented Mar 6, 2024

⚠️ No Changeset found

Latest commit: 1b29353

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20240223.1 chore(deps): update dependency miniflare to v3.20240304.0 Mar 8, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20240304.0 chore(deps): update dependency miniflare to v3.20240304.1 Mar 13, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20240304.1 chore(deps): update dependency miniflare to v3.20240304.2 Mar 15, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20240304.2 chore(deps): update dependency miniflare to v3.20240320.0 Mar 23, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20240320.0 chore(deps): update dependency miniflare to v3.20240320.1 Mar 31, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20240320.1 chore(deps): update dependency miniflare to v3.20240329.0 Apr 2, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20240329.0 chore(deps): update dependency miniflare to v3.20240404.0 Apr 5, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20240404.0 chore(deps): update dependency miniflare to v3.20240405.1 Apr 13, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20240405.1 chore(deps): update dependency miniflare to v3.20240405.2 Apr 17, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20240405.2 chore(deps): update dependency miniflare to v3.20240419.0 Apr 26, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20240419.0 chore(deps): update dependency miniflare to v3.20240419.1 May 9, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20240419.1 chore(deps): update dependency miniflare to v3.20240512.0 May 23, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20240512.0 chore(deps): update dependency miniflare to v3.20240524.0 May 29, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20240524.0 chore(deps): update dependency miniflare to v3.20240524.1 May 31, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20240524.1 chore(deps): update dependency miniflare to v3.20240524.2 Jun 4, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20240524.2 chore(deps): update dependency miniflare to v3.20240605.0 Jun 8, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20240605.0 chore(deps): update dependency miniflare to v3.20240610.0 Jun 15, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20240610.0 chore(deps): update dependency miniflare to v3.20240610.1 Jun 19, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20240610.1 chore(deps): update dependency miniflare to v3.20240620.0 Jun 25, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20240620.0 chore(deps): update dependency miniflare to v3.20240701.0 Jul 4, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20240701.0 chore(deps): update dependency miniflare to v3.20240712.0 Jul 18, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20240712.0 chore(deps): update dependency miniflare to v3.20240718.0 Jul 20, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20240718.0 chore(deps): update dependency miniflare to v3.20240718.1 Jul 26, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20240718.1 chore(deps): update dependency miniflare to v3.20240725.0 Aug 2, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20240725.0 chore(deps): update dependency miniflare to v3.20240806.0 Aug 10, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20240806.0 chore(deps): update dependency miniflare to v3.20240806.1 Aug 17, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20240806.1 chore(deps): update dependency miniflare to v3.20240821.0 Aug 23, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20240821.0 chore(deps): update dependency miniflare to v3.20240821.1 Sep 4, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20240821.1 chore(deps): update dependency miniflare to v3.20240821.2 Sep 11, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20241106.0 chore(deps): update dependency miniflare to v3.20241106.1 Nov 22, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20241106.1 chore(deps): update dependency miniflare to v3.20241106.2 Dec 4, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20241106.2 chore(deps): update dependency miniflare to v3.20241205.0 Dec 6, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20241205.0 chore(deps): update dependency miniflare to v3.20241218.0 Dec 20, 2024
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20241218.0 chore(deps): update dependency miniflare to v3.20241230.0 Jan 9, 2025
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20241230.0 chore(deps): update dependency miniflare to v3.20241230.1 Jan 11, 2025
@renovate renovate bot force-pushed the renovate/miniflare-3.x-lockfile branch from 0636d68 to 8d1cb63 Compare January 16, 2025 04:09
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20241230.1 chore(deps): update dependency miniflare to v3.20241230.2 Jan 16, 2025
@renovate renovate bot force-pushed the renovate/miniflare-3.x-lockfile branch 2 times, most recently from a2c0316 to 1ce1202 Compare January 25, 2025 16:16
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20241230.2 chore(deps): update dependency miniflare to v3.20250124.0 Jan 25, 2025
@renovate renovate bot force-pushed the renovate/miniflare-3.x-lockfile branch from 1ce1202 to 9d8c61c Compare February 1, 2025 00:07
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20250124.0 chore(deps): update dependency miniflare to v3.20250129.0 Feb 1, 2025
@renovate renovate bot force-pushed the renovate/miniflare-3.x-lockfile branch from 9d8c61c to 24e2c23 Compare February 14, 2025 04:03
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20250129.0 chore(deps): update dependency miniflare to v3.20250204.1 Feb 14, 2025
@renovate renovate bot force-pushed the renovate/miniflare-3.x-lockfile branch from 24e2c23 to 2c7d442 Compare February 19, 2025 07:53
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20250204.1 chore(deps): update dependency miniflare to v3.20250214.0 Feb 19, 2025
@renovate renovate bot force-pushed the renovate/miniflare-3.x-lockfile branch from 2c7d442 to 595aaf3 Compare February 26, 2025 23:54
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20250214.0 chore(deps): update dependency miniflare to v3.20250214.1 Feb 26, 2025
@renovate renovate bot force-pushed the renovate/miniflare-3.x-lockfile branch from 595aaf3 to 2b233c2 Compare March 5, 2025 08:20
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20250214.1 chore(deps): update dependency miniflare to v3.20250214.2 Mar 5, 2025
@renovate renovate bot force-pushed the renovate/miniflare-3.x-lockfile branch from 2b233c2 to c875053 Compare March 7, 2025 07:29
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20250214.2 chore(deps): update dependency miniflare to v3.20250224.0 Mar 7, 2025
@renovate renovate bot force-pushed the renovate/miniflare-3.x-lockfile branch from c875053 to 6a574e2 Compare March 12, 2025 03:50
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20250224.0 chore(deps): update dependency miniflare to v3.20250310.0 Mar 12, 2025
@renovate renovate bot force-pushed the renovate/miniflare-3.x-lockfile branch from 6a574e2 to 0c0fba3 Compare March 20, 2025 07:42
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20250310.0 chore(deps): update dependency miniflare to v3.20250310.1 Mar 20, 2025
@renovate renovate bot force-pushed the renovate/miniflare-3.x-lockfile branch from 0c0fba3 to 22e7c7e Compare April 4, 2025 07:41
@renovate renovate bot changed the title chore(deps): update dependency miniflare to v3.20250310.1 chore(deps): update dependency miniflare to v3.20250310.2 Apr 4, 2025
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