Skip to content

Commit

Permalink
Release build 6.39.0 [ci release]
Browse files Browse the repository at this point in the history
  • Loading branch information
shakyShane authored and github-actions[bot] committed Nov 21, 2024
1 parent 6f8b28d commit dfef00e
Show file tree
Hide file tree
Showing 28 changed files with 1,328 additions and 220 deletions.
5 changes: 2 additions & 3 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
- adding debugging+performance helpers (#1247)
- ntp: send source index in move action (#1250)
- messaging: windows special pages (#1216)
- fix: randomUUID is absent in none-secure contexts (#1254)
- Support Conditional Clicking in Broker Protection (#1141)
2 changes: 1 addition & 1 deletion Sources/ContentScopeScripts/dist/contentScope.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
const String$1 = globalThis.String;
const Map$1 = globalThis.Map;
const Error$2 = globalThis.Error;
const randomUUID = globalThis.crypto?.randomUUID.bind(globalThis.crypto);
const randomUUID = globalThis.crypto?.randomUUID?.bind(globalThis.crypto);
var capturedGlobals = /* @__PURE__ */ Object.freeze({
__proto__: null,
CustomEvent: CustomEvent$1,
Expand Down
292 changes: 242 additions & 50 deletions Sources/ContentScopeScripts/dist/contentScopeIsolated.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/android/autofillPasswordImport.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
globalThis.dispatchEvent?.bind(globalThis);
globalThis.addEventListener?.bind(globalThis);
globalThis.removeEventListener?.bind(globalThis);
globalThis.crypto?.randomUUID.bind(globalThis.crypto);
globalThis.crypto?.randomUUID?.bind(globalThis.crypto);

/* eslint-disable no-redeclare, no-global-assign */
/* global cloneInto, exportFunction, false */
Expand Down
2 changes: 1 addition & 1 deletion build/android/contentScope.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
const String$1 = globalThis.String;
const Map$1 = globalThis.Map;
const Error$2 = globalThis.Error;
const randomUUID = globalThis.crypto?.randomUUID.bind(globalThis.crypto);
const randomUUID = globalThis.crypto?.randomUUID?.bind(globalThis.crypto);

var capturedGlobals = /*#__PURE__*/Object.freeze({
__proto__: null,
Expand Down
2 changes: 1 addition & 1 deletion build/chrome-mv3/inject.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
const String$1 = globalThis.String;
const Map$1 = globalThis.Map;
const Error$2 = globalThis.Error;
const randomUUID = globalThis.crypto?.randomUUID.bind(globalThis.crypto);
const randomUUID = globalThis.crypto?.randomUUID?.bind(globalThis.crypto);

var capturedGlobals = /*#__PURE__*/Object.freeze({
__proto__: null,
Expand Down
4 changes: 2 additions & 2 deletions build/chrome/inject.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/firefox/inject.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
const String$1 = globalThis.String;
const Map$1 = globalThis.Map;
const Error$2 = globalThis.Error;
const randomUUID = globalThis.crypto?.randomUUID.bind(globalThis.crypto);
const randomUUID = globalThis.crypto?.randomUUID?.bind(globalThis.crypto);

var capturedGlobals = /*#__PURE__*/Object.freeze({
__proto__: null,
Expand Down
Loading

0 comments on commit dfef00e

Please sign in to comment.