Skip to content

Commit f987606

Browse files
Release build 4.27.0 [ci release]
1 parent 0971c7e commit f987606

File tree

17 files changed

+72
-52
lines changed

17 files changed

+72
-52
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444

4545
- name: Collect commit ranges
4646
run: |
47-
echo "CHANGELOG=$(bash ./scripts/changelog.sh)" > ${{ github.workspace }}-CHANGELOG.txt
47+
bash ./scripts/changelog.sh > ${{ github.workspace }}-CHANGELOG.txt
4848
4949
- name: Create Release
5050
uses: softprops/action-gh-release@v1

Sources/ContentScopeScripts/dist/contentScope.js

Lines changed: 4 additions & 2 deletions
Large diffs are not rendered by default.

Sources/ContentScopeScripts/dist/contentScopeIsolated.js

Lines changed: 4 additions & 2 deletions
Large diffs are not rendered by default.

build/android/contentScope.js

Lines changed: 4 additions & 2 deletions
Large diffs are not rendered by default.

build/chrome-mv3/inject.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2719,7 +2719,7 @@
27192719

27202720
function initialShouldBlockTrackerCookie () {
27212721
const injectName = "chrome-mv3";
2722-
return injectName === 'chrome-mv3'
2722+
return injectName === 'chrome-mv3'
27232723
}
27242724

27252725
// Initial cookie policy pre init
@@ -2808,7 +2808,7 @@
28082808
if (this.trackerLookup) {
28092809
trackerLookup$1 = this.trackerLookup;
28102810
}
2811-
if (this.bundledConfig) {
2811+
if (this.bundledConfig?.features?.cookie) {
28122812
// use the bundled config to get a best-effort at the policy, before the background sends the real one
28132813
const { exceptions, settings } = this.bundledConfig.features.cookie;
28142814
const tabHostname = getTabHostname();
@@ -10793,7 +10793,7 @@
1079310793
* @property {import('./content-feature').Site} site
1079410794
* @property {import('./utils.js').Platform} platform
1079510795
* @property {boolean} documentOriginIsTracker
10796-
* @property {object} [bundledConfig]
10796+
* @property {import('./utils.js').RemoteConfig} bundledConfig
1079710797
* @property {string} [injectName]
1079810798
* @property {object} trackerLookup - provided currently only by the extension
1079910799
*/

build/chrome/inject.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/contentScope.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10556,7 +10556,7 @@
1055610556

1055710557
function initialShouldBlockTrackerCookie () {
1055810558
const injectName = "integration";
10559-
return injectName === 'chrome-mv3'
10559+
return injectName === 'windows'
1056010560
}
1056110561

1056210562
// Initial cookie policy pre init
@@ -10645,7 +10645,7 @@
1064510645
if (this.trackerLookup) {
1064610646
trackerLookup = this.trackerLookup;
1064710647
}
10648-
if (this.bundledConfig) {
10648+
if (this.bundledConfig?.features?.cookie) {
1064910649
// use the bundled config to get a best-effort at the policy, before the background sends the real one
1065010650
const { exceptions, settings } = this.bundledConfig.features.cookie;
1065110651
const tabHostname = getTabHostname();
@@ -13599,7 +13599,7 @@
1359913599
* @property {import('./content-feature').Site} site
1360013600
* @property {import('./utils.js').Platform} platform
1360113601
* @property {boolean} documentOriginIsTracker
13602-
* @property {object} [bundledConfig]
13602+
* @property {import('./utils.js').RemoteConfig} bundledConfig
1360313603
* @property {string} [injectName]
1360413604
* @property {object} trackerLookup - provided currently only by the extension
1360513605
*/

build/firefox/inject.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2753,7 +2753,7 @@
27532753

27542754
function initialShouldBlockTrackerCookie () {
27552755
const injectName = "firefox";
2756-
return injectName === 'firefox'
2756+
return injectName === 'firefox'
27572757
}
27582758

27592759
// Initial cookie policy pre init
@@ -2842,7 +2842,7 @@
28422842
if (this.trackerLookup) {
28432843
trackerLookup = this.trackerLookup;
28442844
}
2845-
if (this.bundledConfig) {
2845+
if (this.bundledConfig?.features?.cookie) {
28462846
// use the bundled config to get a best-effort at the policy, before the background sends the real one
28472847
const { exceptions, settings } = this.bundledConfig.features.cookie;
28482848
const tabHostname = getTabHostname();
@@ -10827,7 +10827,7 @@
1082710827
* @property {import('./content-feature').Site} site
1082810828
* @property {import('./utils.js').Platform} platform
1082910829
* @property {boolean} documentOriginIsTracker
10830-
* @property {object} [bundledConfig]
10830+
* @property {import('./utils.js').RemoteConfig} bundledConfig
1083110831
* @property {string} [injectName]
1083210832
* @property {object} trackerLookup - provided currently only by the extension
1083310833
*/

build/integration/contentScope.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10556,7 +10556,7 @@
1055610556

1055710557
function initialShouldBlockTrackerCookie () {
1055810558
const injectName = "integration";
10559-
return injectName === 'chrome-mv3'
10559+
return injectName === 'windows'
1056010560
}
1056110561

1056210562
// Initial cookie policy pre init
@@ -10645,7 +10645,7 @@
1064510645
if (this.trackerLookup) {
1064610646
trackerLookup = this.trackerLookup;
1064710647
}
10648-
if (this.bundledConfig) {
10648+
if (this.bundledConfig?.features?.cookie) {
1064910649
// use the bundled config to get a best-effort at the policy, before the background sends the real one
1065010650
const { exceptions, settings } = this.bundledConfig.features.cookie;
1065110651
const tabHostname = getTabHostname();
@@ -13599,7 +13599,7 @@
1359913599
* @property {import('./content-feature').Site} site
1360013600
* @property {import('./utils.js').Platform} platform
1360113601
* @property {boolean} documentOriginIsTracker
13602-
* @property {object} [bundledConfig]
13602+
* @property {import('./utils.js').RemoteConfig} bundledConfig
1360313603
* @property {string} [injectName]
1360413604
* @property {object} trackerLookup - provided currently only by the extension
1360513605
*/

build/windows/contentScope.js

Lines changed: 6 additions & 4 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)