Skip to content

miniflare@5.20260811.1-alpha

Pre-release
Pre-release

Choose a tag to compare

@workers-devprod workers-devprod released this 13 Aug 16:11
· 1 commit to main since this release
c576a82

Minor Changes

  • #15113 b8fd112 Thanks @BSFishy! - Add local dev simulation for Cloudflare Access ctx.access.getIdentity()

    You can now configure a mock Cloudflare Access identity in wrangler.json so that ctx.access.getIdentity() returns it during local development.

    // wrangler.json
    {
      "access": {
        "dev": {
          "aud": "my-app-aud-tag",
          "identity": {
            "email": "user@example.com",
            "name": "Test User"
          }
        }
      }
    }