You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove referrerPolicy from Cloudflare Worker fetch requests (#8393)
The Cloudflare Worker runner runtime doesn't support the `fetch` parameter `referrerPolicy` and throws if one is defined. In attempt to better support Cloudlfare, we will remove this parameter from `fetch` requests when we detect the SDK running in a Cloudflare runner enviornment.
Suppress the use of the `fetch` parameter `referrerPolicy` within Auth for `fetch` requests originating from Cloudflare Workers. Clouldflare Worker environments do not support this parameter and throw when it's used.
Copy file name to clipboardExpand all lines: common/api-review/util.api.md
+5
Original file line number
Diff line number
Diff line change
@@ -264,6 +264,11 @@ export function isBrowser(): boolean;
264
264
// @public (undocumented)
265
265
exportfunction isBrowserExtension():boolean;
266
266
267
+
// Warning: (ae-missing-release-tag) "isCloudflareWorker" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
268
+
//
269
+
// @public
270
+
exportfunction isCloudflareWorker():boolean;
271
+
267
272
// Warning: (ae-missing-release-tag) "isElectron" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
0 commit comments