Pier Angelo Vendrame pushed to branch mullvad-browser-128.0esr-14.0-2 at The Tor Project / Applications / Mullvad Browser
Commits:
d7c7e1ad by Beatriz Rizental at 2024-07-29T16:52:04+02:00
fixup! Add CI for Base Browser
- - - - -
1 changed file:
- .gitlab/ci/lint.yml
Changes:
=====================================
.gitlab/ci/lint.yml
=====================================
@@ -39,9 +39,8 @@ eslint:
# The plugin implementing custom checks.
- 'tools/lint/eslint/eslint-plugin-mozilla/**'
- 'tools/lint/eslint/eslint-plugin-spidermonkey-js/**'
- # Run job whenever a new tag is created
- # or whenever a commit is merged to a protected branch
- - if: $CI_COMMIT_TAG || $CI_COMMIT_REF_PROTECTED == 'true'
+ # Run job whenever a commit is merged to a protected branch
+ - if: $CI_COMMIT_REF_PROTECTED == 'true'
stylelint:
extends: .base
@@ -59,9 +58,8 @@ stylelint:
# Run when stylelint policies change.
- '**/.stylelintignore'
- '**/*stylelintrc*'
- # Run job whenever a new tag is created
- # or whenever a commit is merged to a protected branch
- - if: $CI_COMMIT_TAG || $CI_COMMIT_REF_PROTECTED == 'true'
+ # Run job whenever a commit is merged to a protected branch
+ - if: $CI_COMMIT_REF_PROTECTED == 'true'
py-black:
extends: .base
@@ -80,9 +78,8 @@ py-black:
- '**/*.mozbuild'
- 'pyproject.toml'
- 'tools/lint/black.yml'
- # Run job whenever a new tag is created
- # or whenever a commit is merged to a protected branch
- - if: $CI_COMMIT_TAG || $CI_COMMIT_REF_PROTECTED == 'true'
+ # Run job whenever a commit is merged to a protected branch
+ - if: $CI_COMMIT_REF_PROTECTED == 'true'
py-ruff:
extends: .base
@@ -101,9 +98,8 @@ py-ruff:
- 'tools/lint/ruff.yml'
- 'tools/lint/python/ruff.py'
- 'tools/lint/python/ruff_requirements.txt'
- # Run job whenever a new tag is created
- # or whenever a commit is merged to a protected branch
- - if: $CI_COMMIT_TAG || $CI_COMMIT_REF_PROTECTED == 'true'
+ # Run job whenever a commit is merged to a protected branch
+ - if: $CI_COMMIT_REF_PROTECTED == 'true'
yaml:
extends: .base
@@ -118,9 +114,8 @@ yaml:
- '**/*.yml'
- '**/*.yaml'
- '**/.ymllint'
- # Run job whenever a new tag is created
- # or whenever a commit is merged to a protected branch
- - if: $CI_COMMIT_TAG || $CI_COMMIT_REF_PROTECTED == 'true'
+ # Run job whenever a commit is merged to a protected branch
+ - if: $CI_COMMIT_REF_PROTECTED == 'true'
shellcheck:
extends: .base
@@ -134,9 +129,8 @@ shellcheck:
#
- '**/*.sh'
- 'tools/lint/shellcheck.yml'
- # Run job whenever a new tag is created
- # or whenever a commit is merged to a protected branch
- - if: $CI_COMMIT_TAG || $CI_COMMIT_REF_PROTECTED == 'true'
+ # Run job whenever a commit is merged to a protected branch
+ - if: $CI_COMMIT_REF_PROTECTED == 'true'
clang-format:
extends: .base
@@ -156,9 +150,8 @@ clang-format:
- '**/*.m'
- '**/*.mm'
- 'tools/lint/clang-format.yml'
- # Run job whenever a new tag is created
- # or whenever a commit is merged to a protected branch
- - if: $CI_COMMIT_TAG || $CI_COMMIT_REF_PROTECTED == 'true'
+ # Run job whenever a commit is merged to a protected branch
+ - if: $CI_COMMIT_REF_PROTECTED == 'true'
rustfmt:
extends: .base
@@ -172,9 +165,8 @@ rustfmt:
#
- '**/*.rs'
- 'tools/lint/rustfmt.yml'
- # Run job whenever a new tag is created
- # or whenever a commit is merged to a protected branch
- - if: $CI_COMMIT_TAG || $CI_COMMIT_REF_PROTECTED == 'true'
+ # Run job whenever a commit is merged to a protected branch
+ - if: $CI_COMMIT_REF_PROTECTED == 'true'
fluent-lint:
extends: .base
@@ -189,9 +181,8 @@ fluent-lint:
- '**/*.ftl'
- 'tools/lint/fluent-lint.yml'
- 'tools/lint/fluent-lint/exclusions.yml'
- # Run job whenever a new tag is created
- # or whenever a commit is merged to a protected branch
- - if: $CI_COMMIT_TAG || $CI_COMMIT_REF_PROTECTED == 'true'
+ # Run job whenever a commit is merged to a protected branch
+ - if: $CI_COMMIT_REF_PROTECTED == 'true'
localization:
extends: .base
@@ -208,9 +199,8 @@ localization:
- 'third_party/python/compare-locales/**'
- 'third_party/python/fluent/**'
- 'tools/lint/l10n.yml'
- # Run job whenever a new tag is created
- # or whenever a commit is merged to a protected branch
- - if: $CI_COMMIT_TAG || $CI_COMMIT_REF_PROTECTED == 'true'
+ # Run job whenever a commit is merged to a protected branch
+ - if: $CI_COMMIT_REF_PROTECTED == 'true'
mingw-capitalization:
extends: .base
@@ -227,9 +217,8 @@ mingw-capitalization:
- '**/*.c'
- '**/*.h'
- 'tools/lint/mingw-capitalization.yml'
- # Run job whenever a new tag is created
- # or whenever a commit is merged to a protected branch
- - if: $CI_COMMIT_TAG || $CI_COMMIT_REF_PROTECTED == 'true'
+ # Run job whenever a commit is merged to a protected branch
+ - if: $CI_COMMIT_REF_PROTECTED == 'true'
mscom-init:
extends: .base
@@ -246,9 +235,8 @@ mscom-init:
- '**/*.c'
- '**/*.h'
- 'tools/lint/mscom-init.yml'
- # Run job whenever a new tag is created
- # or whenever a commit is merged to a protected branch
- - if: $CI_COMMIT_TAG || $CI_COMMIT_REF_PROTECTED == 'true'
+ # Run job whenever a commit is merged to a protected branch
+ - if: $CI_COMMIT_REF_PROTECTED == 'true'
file-whitespace:
extends: .base
@@ -277,9 +265,8 @@ file-whitespace:
- '**/*.webidl'
- '**/*.xhtml'
- 'tools/lint/file-whitespace.yml'
- # Run job whenever a new tag is created
- # or whenever a commit is merged to a protected branch
- - if: $CI_COMMIT_TAG || $CI_COMMIT_REF_PROTECTED == 'true'
+ # Run job whenever a commit is merged to a protected branch
+ - if: $CI_COMMIT_REF_PROTECTED == 'true'
test-manifest:
extends: .base
@@ -294,9 +281,8 @@ test-manifest:
- '**/*.ini'
- 'python/mozlint/**'
- 'tools/lint/**'
- # Run job whenever a new tag is created
- # or whenever a commit is merged to a protected branch
- - if: $CI_COMMIT_TAG || $CI_COMMIT_REF_PROTECTED == 'true'
+ # Run job whenever a commit is merged to a protected branch
+ - if: $CI_COMMIT_REF_PROTECTED == 'true'
trojan-source:
extends: .base
@@ -315,6 +301,5 @@ trojan-source:
- '**/*.py'
- '**/*.rs'
- 'tools/lint/trojan-source.yml'
- # Run job whenever a new tag is created
- # or whenever a commit is merged to a protected branch
- - if: $CI_COMMIT_TAG || $CI_COMMIT_REF_PROTECTED == 'true'
+ # Run job whenever a commit is merged to a protected branch
+ - if: $CI_COMMIT_REF_PROTECTED == 'true'
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/d7c…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/d7c…
You're receiving this email because of your account on gitlab.torproject.org.
Pier Angelo Vendrame pushed to branch tor-browser-128.0esr-14.0-2 at The Tor Project / Applications / Tor Browser
Commits:
cce61ea8 by Beatriz Rizental at 2024-07-29T16:44:54+02:00
fixup! Add CI for Base Browser
- - - - -
1 changed file:
- .gitlab/ci/lint.yml
Changes:
=====================================
.gitlab/ci/lint.yml
=====================================
@@ -39,9 +39,8 @@ eslint:
# The plugin implementing custom checks.
- 'tools/lint/eslint/eslint-plugin-mozilla/**'
- 'tools/lint/eslint/eslint-plugin-spidermonkey-js/**'
- # Run job whenever a new tag is created
- # or whenever a commit is merged to a protected branch
- - if: $CI_COMMIT_TAG || $CI_COMMIT_REF_PROTECTED == 'true'
+ # Run job whenever a commit is merged to a protected branch
+ - if: $CI_COMMIT_REF_PROTECTED == 'true'
stylelint:
extends: .base
@@ -59,9 +58,8 @@ stylelint:
# Run when stylelint policies change.
- '**/.stylelintignore'
- '**/*stylelintrc*'
- # Run job whenever a new tag is created
- # or whenever a commit is merged to a protected branch
- - if: $CI_COMMIT_TAG || $CI_COMMIT_REF_PROTECTED == 'true'
+ # Run job whenever a commit is merged to a protected branch
+ - if: $CI_COMMIT_REF_PROTECTED == 'true'
py-black:
extends: .base
@@ -80,9 +78,8 @@ py-black:
- '**/*.mozbuild'
- 'pyproject.toml'
- 'tools/lint/black.yml'
- # Run job whenever a new tag is created
- # or whenever a commit is merged to a protected branch
- - if: $CI_COMMIT_TAG || $CI_COMMIT_REF_PROTECTED == 'true'
+ # Run job whenever a commit is merged to a protected branch
+ - if: $CI_COMMIT_REF_PROTECTED == 'true'
py-ruff:
extends: .base
@@ -101,9 +98,8 @@ py-ruff:
- 'tools/lint/ruff.yml'
- 'tools/lint/python/ruff.py'
- 'tools/lint/python/ruff_requirements.txt'
- # Run job whenever a new tag is created
- # or whenever a commit is merged to a protected branch
- - if: $CI_COMMIT_TAG || $CI_COMMIT_REF_PROTECTED == 'true'
+ # Run job whenever a commit is merged to a protected branch
+ - if: $CI_COMMIT_REF_PROTECTED == 'true'
yaml:
extends: .base
@@ -118,9 +114,8 @@ yaml:
- '**/*.yml'
- '**/*.yaml'
- '**/.ymllint'
- # Run job whenever a new tag is created
- # or whenever a commit is merged to a protected branch
- - if: $CI_COMMIT_TAG || $CI_COMMIT_REF_PROTECTED == 'true'
+ # Run job whenever a commit is merged to a protected branch
+ - if: $CI_COMMIT_REF_PROTECTED == 'true'
shellcheck:
extends: .base
@@ -134,9 +129,8 @@ shellcheck:
#
- '**/*.sh'
- 'tools/lint/shellcheck.yml'
- # Run job whenever a new tag is created
- # or whenever a commit is merged to a protected branch
- - if: $CI_COMMIT_TAG || $CI_COMMIT_REF_PROTECTED == 'true'
+ # Run job whenever a commit is merged to a protected branch
+ - if: $CI_COMMIT_REF_PROTECTED == 'true'
clang-format:
extends: .base
@@ -156,9 +150,8 @@ clang-format:
- '**/*.m'
- '**/*.mm'
- 'tools/lint/clang-format.yml'
- # Run job whenever a new tag is created
- # or whenever a commit is merged to a protected branch
- - if: $CI_COMMIT_TAG || $CI_COMMIT_REF_PROTECTED == 'true'
+ # Run job whenever a commit is merged to a protected branch
+ - if: $CI_COMMIT_REF_PROTECTED == 'true'
rustfmt:
extends: .base
@@ -172,9 +165,8 @@ rustfmt:
#
- '**/*.rs'
- 'tools/lint/rustfmt.yml'
- # Run job whenever a new tag is created
- # or whenever a commit is merged to a protected branch
- - if: $CI_COMMIT_TAG || $CI_COMMIT_REF_PROTECTED == 'true'
+ # Run job whenever a commit is merged to a protected branch
+ - if: $CI_COMMIT_REF_PROTECTED == 'true'
fluent-lint:
extends: .base
@@ -189,9 +181,8 @@ fluent-lint:
- '**/*.ftl'
- 'tools/lint/fluent-lint.yml'
- 'tools/lint/fluent-lint/exclusions.yml'
- # Run job whenever a new tag is created
- # or whenever a commit is merged to a protected branch
- - if: $CI_COMMIT_TAG || $CI_COMMIT_REF_PROTECTED == 'true'
+ # Run job whenever a commit is merged to a protected branch
+ - if: $CI_COMMIT_REF_PROTECTED == 'true'
localization:
extends: .base
@@ -208,9 +199,8 @@ localization:
- 'third_party/python/compare-locales/**'
- 'third_party/python/fluent/**'
- 'tools/lint/l10n.yml'
- # Run job whenever a new tag is created
- # or whenever a commit is merged to a protected branch
- - if: $CI_COMMIT_TAG || $CI_COMMIT_REF_PROTECTED == 'true'
+ # Run job whenever a commit is merged to a protected branch
+ - if: $CI_COMMIT_REF_PROTECTED == 'true'
mingw-capitalization:
extends: .base
@@ -227,9 +217,8 @@ mingw-capitalization:
- '**/*.c'
- '**/*.h'
- 'tools/lint/mingw-capitalization.yml'
- # Run job whenever a new tag is created
- # or whenever a commit is merged to a protected branch
- - if: $CI_COMMIT_TAG || $CI_COMMIT_REF_PROTECTED == 'true'
+ # Run job whenever a commit is merged to a protected branch
+ - if: $CI_COMMIT_REF_PROTECTED == 'true'
mscom-init:
extends: .base
@@ -246,9 +235,8 @@ mscom-init:
- '**/*.c'
- '**/*.h'
- 'tools/lint/mscom-init.yml'
- # Run job whenever a new tag is created
- # or whenever a commit is merged to a protected branch
- - if: $CI_COMMIT_TAG || $CI_COMMIT_REF_PROTECTED == 'true'
+ # Run job whenever a commit is merged to a protected branch
+ - if: $CI_COMMIT_REF_PROTECTED == 'true'
file-whitespace:
extends: .base
@@ -277,9 +265,8 @@ file-whitespace:
- '**/*.webidl'
- '**/*.xhtml'
- 'tools/lint/file-whitespace.yml'
- # Run job whenever a new tag is created
- # or whenever a commit is merged to a protected branch
- - if: $CI_COMMIT_TAG || $CI_COMMIT_REF_PROTECTED == 'true'
+ # Run job whenever a commit is merged to a protected branch
+ - if: $CI_COMMIT_REF_PROTECTED == 'true'
test-manifest:
extends: .base
@@ -294,9 +281,8 @@ test-manifest:
- '**/*.ini'
- 'python/mozlint/**'
- 'tools/lint/**'
- # Run job whenever a new tag is created
- # or whenever a commit is merged to a protected branch
- - if: $CI_COMMIT_TAG || $CI_COMMIT_REF_PROTECTED == 'true'
+ # Run job whenever a commit is merged to a protected branch
+ - if: $CI_COMMIT_REF_PROTECTED == 'true'
trojan-source:
extends: .base
@@ -315,6 +301,5 @@ trojan-source:
- '**/*.py'
- '**/*.rs'
- 'tools/lint/trojan-source.yml'
- # Run job whenever a new tag is created
- # or whenever a commit is merged to a protected branch
- - if: $CI_COMMIT_TAG || $CI_COMMIT_REF_PROTECTED == 'true'
+ # Run job whenever a commit is merged to a protected branch
+ - if: $CI_COMMIT_REF_PROTECTED == 'true'
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/cce61ea…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/cce61ea…
You're receiving this email because of your account on gitlab.torproject.org.
morgan pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits:
a07699a8 by Morgan at 2024-07-25T20:30:42+00:00
Add morgan and remove richard from list of builders
- - - - -
afc9d346 by Morgan at 2024-07-25T20:30:42+00:00
Update various gitlab template adding morgan and removing richard
- - - - -
11fc5be5 by Morgan at 2024-07-25T20:30:42+00:00
Add tor-browser-bundle-testsuite support to fetch_changelogs.py
- - - - -
083b456a by Morgan at 2024-07-25T20:30:42+00:00
Bug 41195: Update go to 1.22
- - - - -
91cf28cc by Morgan at 2024-07-25T20:30:42+00:00
Bug 41197: Modify update-responses to prevent upgrades on unsupported Windows and macOS versions
- - - - -
12adb3f6 by Morgan at 2024-07-25T20:30:42+00:00
Bug 41144,41445: Prepare Tor+Mullvad Browser 14.0a1
- - - - -
19 changed files:
- .gitlab/issue_templates/Release Prep - Mullvad Browser Alpha.md
- .gitlab/issue_templates/Release Prep - Mullvad Browser Stable.md
- .gitlab/issue_templates/Release Prep - Tor Browser Alpha.md
- .gitlab/issue_templates/Release Prep - Tor Browser Stable.md
- .gitlab/merge_request_templates/default.md
- .gitlab/merge_request_templates/relprep.md
- projects/browser/Bundle-Data/Docs-MB/ChangeLog.txt
- projects/browser/Bundle-Data/Docs-TBB/ChangeLog.txt
- projects/browser/config
- projects/firefox/config
- projects/go-bootstrap/build
- projects/go-bootstrap/config
- projects/go/config
- projects/manual/config
- projects/release/update_responses_config.yml
- projects/translation/config
- rbm.conf
- tools/fetch_changelogs.py
- tools/signing/set-config
Changes:
=====================================
.gitlab/issue_templates/Release Prep - Mullvad Browser Alpha.md
=====================================
@@ -84,8 +84,8 @@ Mullvad Browser Alpha (and Nightly) are on the `main` branch
- boklm
- dan
- ma1
+ - morgan
- pierov
- - richard
- [ ] Run: `make mullvadbrowser-signtag-alpha`
- [ ] Push tag to `upstream`
- [ ] Build the tag:
@@ -105,7 +105,7 @@ Mullvad Browser Alpha (and Nightly) are on the `main` branch
### release signing
- [ ] Assign this issue to the signer, one of:
- boklm
- - richard
+ - morgan
- [ ] On `$(STAGING_SERVER)`, ensure updated:
- [ ] `tor-browser-build` is on the right commit: `git tag -v tbb-$(MULLVAD_BROWSER_VERSION)-$(MULLVAD_BROWSER_BUILD_N) && git checkout tbb-$(MULLVAD_BROWSER_VERSION)-$(MULLVAD_BROWSER_BUILD_N)`
- [ ] `tor-browser-build/tools/signing/set-config.hosts`
@@ -139,7 +139,7 @@ Mullvad Browser Alpha (and Nightly) are on the `main` branch
- [ ] Assign this issue to someone with mullvad commit access, one of:
- boklm
- ma1
- - richard
+ - morgan
- pierov
- [ ] Push this release's associated `mullvad-browser.git` branch to github
- [ ] Push this release's associated tags to github:
=====================================
.gitlab/issue_templates/Release Prep - Mullvad Browser Stable.md
=====================================
@@ -84,8 +84,8 @@ Mullvad Browser Stable lives in the various `maint-$(MULLVAD_BROWSER_MAJOR).$(MU
- boklm
- dan
- ma1
+ - morgan
- pierov
- - richard
- [ ] Run: `make mullvadbrowser-signtag-release`
- [ ] Push tag to `upstream`
- [ ] Build the tag:
@@ -105,7 +105,7 @@ Mullvad Browser Stable lives in the various `maint-$(MULLVAD_BROWSER_MAJOR).$(MU
### release signing
- [ ] Assign this issue to the signer, one of:
- boklm
- - richard
+ - morgan
- [ ] On `$(STAGING_SERVER)`, ensure updated:
- [ ] `tor-browser-build` is on the right commit: `git tag -v tbb-$(MULLVAD_BROWSER_VERSION)-$(MULLVAD_BROWSER_BUILD_N) && git checkout tbb-$(MULLVAD_BROWSER_VERSION)-$(MULLVAD_BROWSER_BUILD_N)`
- [ ] `tor-browser-build/tools/signing/set-config.hosts`
@@ -139,7 +139,7 @@ Mullvad Browser Stable lives in the various `maint-$(MULLVAD_BROWSER_MAJOR).$(MU
- [ ] Assign this issue to someone with mullvad commit access, one of:
- boklm
- ma1
- - richard
+ - morgan
- pierov
- [ ] Push this release's associated `mullvad-browser.git` branch to github
- [ ] Push this release's associated tags to github:
=====================================
.gitlab/issue_templates/Release Prep - Tor Browser Alpha.md
=====================================
@@ -121,8 +121,8 @@ Tor Browser Alpha (and Nightly) are on the `main` branch
- boklm
- dan
- ma1
+ - morgan
- pierov
- - richard
- [ ] Run: `make torbrowser-signtag-alpha`
- [ ] Push tag to `upstream`
- [ ] Build the tag:
@@ -181,7 +181,7 @@ Tor Browser Alpha (and Nightly) are on the `main` branch
- **NOTE** : In practice, it's most efficient to have the blog post and website updates ready to merge, since signing doesn't take very long
- [ ] Assign this issue to the signer, one of:
- boklm
- - richard
+ - morgan
- [ ] On `$(STAGING_SERVER)`, ensure updated:
- [ ] `tor-browser-build` is on the right commit: `git tag -v tbb-$(TOR_BROWSER_VERSION)-$(TOR_BROWSER_BUILD_N) && git checkout tbb-$(TOR_BROWSER_VERSION)-$(TOR_BROWSER_BUILD_N)`
- [ ] `tor-browser-build/tools/signing/set-config.hosts`
=====================================
.gitlab/issue_templates/Release Prep - Tor Browser Stable.md
=====================================
@@ -118,8 +118,8 @@ Tor Browser Stable lives in the various `maint-$(TOR_BROWSER_MAJOR).$(TOR_BROWSE
- boklm
- dan
- ma1
+ - morgan
- pierov
- - richard
- [ ] Run: `make torbrowser-signtag-release`
- [ ] Push tag to `upstream`
- [ ] Build the tag:
@@ -171,7 +171,7 @@ Tor Browser Stable lives in the various `maint-$(TOR_BROWSER_MAJOR).$(TOR_BROWSE
- **NOTE** : In practice, it's most efficient to have the blog post and website updates ready to merge, since signing doesn't take very long
- [ ] Assign this issue to the signer, one of:
- boklm
- - richard
+ - morgan
- [ ] On `$(STAGING_SERVER)`, ensure updated:
- [ ] `tor-browser-build` is on the right commit: `git tag -v tbb-$(TOR_BROWSER_VERSION)-$(TOR_BROWSER_BUILD_N) && git checkout tbb-$(TOR_BROWSER_VERSION)-$(TOR_BROWSER_BUILD_N)`
- [ ] `tor-browser-build/tools/signing/set-config.hosts`
=====================================
.gitlab/merge_request_templates/default.md
=====================================
@@ -39,16 +39,16 @@
- **firefox internals (XUL/JS/XPCOM)** : jwilde, ma1
- **fonts** : pierov
- **frontend (implementation)** : henry
- - **frontend (review)** : donuts, richard
+ - **frontend (review)** : donuts, morgan
- **localization** : henry, pierov
- **macOS** : clairehurst, dan
- **nightly builds** : boklm
- - **rebases/release-prep** : boklm, dan, ma1, pierov, richard
+ - **rebases/release-prep** : boklm, dan, ma1, morgan, pierov
- **security** : jwilde, ma1
- - **signing** : boklm, richard
+ - **signing** : boklm, morgan
- **updater** : pierov
- - **windows** : jwilde, richard
- - **misc/other** : pierov, richard
+ - **windows** : jwilde, morgan
+ - **misc/other** : morgan, pierov
### Change Description
=====================================
.gitlab/merge_request_templates/relprep.md
=====================================
@@ -42,7 +42,7 @@
### Request Reviewer
-- [ ] Request review from a release engineer: boklm, dan, ma1, pierov, richard
+- [ ] Request review from a release engineer: boklm, dan, ma1, morgan, pierov
### Change Description
=====================================
projects/browser/Bundle-Data/Docs-MB/ChangeLog.txt
=====================================
@@ -1,3 +1,158 @@
+Mullvad Browser 14.0a1 - July 24 2024
+ * All Platforms
+ * Updated Firefox to 128.0esr
+ * Bug 42441: Evaluate RR version-by-RR version rebases instead of ESR-to-ESR [tor-browser]
+ * Bug 42683: Create script to generate issue triage csv's from bugzilla query and git scraping [tor-browser]
+ * Bug 42687: Disable Privacy-Preserving Attribution [tor-browser]
+ * Windows
+ * Bug 320: Temporarily disable WebRTC and the default browser agent on Windows [mullvad-browser]
+ * Linux
+ * Bug 314: Mullvad Browser is not listed as a possible default browser application for Gnome on Ubuntu / Fedora [mullvad-browser]
+ * Build System
+ * All Platforms
+ * Bug 42470: Add merge request CI for linting [tor-browser]
+ * Bug 42722: clang-format and localization linters are not running [tor-browser]
+ * Bug 40964: Create new Tor Browser gpg subkey [tor-browser-build]
+ * Bug 41155: Update toolchains for ESR128 [tor-browser-build]
+ * Bug 41156: Split the Rust configuration options [tor-browser-build]
+ * Bug 41166: Use the GitHub repository for firefox-l10n [tor-browser-build]
+ * Bug 41176: Update list of people with github commit access in MB issue templates [tor-browser-build]
+ * Bug 41190: Add morgan.gpg to keyrings and list of valid keyrings in firefox+geckoview [tor-browser-build]
+ * Bug 41191: Remove richard.gpg from keyrings and list of valid keyrings in firefox+geckoview [tor-browser-build]
+ * Bug 40078: Update tools/tb-build-06-start-nightly-build after tor-browser-build#40829 [tor-browser-bundle-testsuite]
+ * Windows
+ * Bug 29318: Drop mingw-w64/gcc toolchain [tor-browser-build]
+ * Bug 29320: Use mingw-w64/clang toolchain to build Rust [tor-browser-build]
+ * Bug 41167: Stop generating an MB "portable" windows install and output a single build from 13.5 release [tor-browser-build]
+ * Bug 41177: Include Windows installer without -portable- in download json files [tor-browser-build]
+ * Linux
+ * Bug 41173: Fix permission issue on files in the debian directory [tor-browser-build]
+ * Windows + macOS
+ * Bug 41197: Modify update-responses to prevent upgrades on unsupported Windows and macOS versions [tor-browser-build]
+
+Mullvad Browser 13.5.1 - July 09 2024
+ * All Platforms
+ * Updated Firefox to 115.13.0esr
+ * Bug 317: Rebase Mullvad Browser stable onto 115.13.0esr [mullvad-browser]
+ * Bug 42693: Backports security fixes from Firefox 128 [tor-browser]
+ * Linux
+ * Bug 314: Mullvad Browser is not listed as a possible default browser application for Gnome on Ubuntu / Fedora [mullvad-browser]
+ * Build System
+ * All Platforms
+ * Bug 41166: Use the GitHub repository for firefox-l10n [tor-browser-build]
+ * Bug 41173: Fix permission issue on files in the debian directory [tor-browser-build]
+ * Windows
+ * Bug 41177: Include Windows installer without -portable- in download json files [tor-browser-build]
+
+Mullvad Browser 13.5 - June 17 2024
+ * All Platforms
+ * Bug 222: Hide "List all tabs" when the tabs don't overflow [mullvad-browser]
+ * Bug 234: Make User-Agent request header match RFP's navigator.userAgent [mullvad-browser]
+ * Bug 241: Move network.proxy.failover_direct=false pref to base-browser [mullvad-browser]
+ * Bug 256: Update nightly mar signing key [mullvad-browser]
+ * Bug 262: Mouse-over long links causes the browser element to re-center relative to width of status tooltip [mullvad-browser]
+ * Bug 284: Should we reflect the actual channel in about:debugging? [mullvad-browser]
+ * Bug 289: The Letterboxing>Content Alignment heading doesn't follow the Firefox design document capitalization [mullvad-browser]
+ * Bug 290: Add default bookmarks in the alpha channels for testing [mullvad-browser]
+ * Bug 40919: Consider dropping protection against line-height introduced in #23104 [tor-browser]
+ * Bug 41467: compat: beacon: re-enable the API but transform it to a no-op [tor-browser]
+ * Bug 41916: Letterboxing preferences UI [tor-browser]
+ * Bug 41917: Make the appearance of letterboxing look more intentional [tor-browser]
+ * Bug 41918: Add option to reuse last window size when letterboxing is enabled [tor-browser]
+ * Bug 41930: intl.accept_languages gets into a stuck modifed state [tor-browser]
+ * Bug 42153: Drop dom.enable_resource_timing = false preference [tor-browser]
+ * Bug 42172: browser.startup.homepage and TOR_DEFAULT_HOMEPAGE are ignored for the new window opened by New Identity [tor-browser]
+ * Bug 42192: Correctly round new windows when bookmarks toolbar is set to "Only Show on New Tab" [tor-browser]
+ * Bug 42211: Fluent migration: new identity [tor-browser]
+ * Bug 42214: Fluent migration: security level [tor-browser]
+ * Bug 42315: compat: why is eventCounts undefined? [tor-browser]
+ * Bug 42387: Visual noise in 13.5a4 letterboxing [tor-browser]
+ * Bug 42389: Betterboxing: gradient is never shown [tor-browser]
+ * Bug 42390: Betterboxing: make the decorator border disappear when the corners are flat [tor-browser]
+ * Bug 42397: Change RFP-spoofed Timezone from UTC to a real-world, less discriminable one [tor-browser]
+ * Bug 42398: Include Alpha and Nightly in MOZ_APP_DISPLAYNAME (and possibly in other places) [tor-browser]
+ * Bug 42405: Fix betterboxing + findbar horizontal bounce if the scrollbar is not an overlay [tor-browser]
+ * Bug 42443: Shrink the window to match letterboxing size when the emtpy area is doble-clicked [tor-browser]
+ * Bug 42490: Install svg from branding theme to browser/chrome/icons/default [tor-browser]
+ * Bug 42500: When startup window is maximized per letterboxing.rememberSize on startup, the restore button shrinks it to its minimum size [tor-browser]
+ * Bug 42519: Update the profile directory patch to check both for `system-install` and for `is-packaged-app` file [tor-browser]
+ * Bug 42520: Correctly record new initial window size after auto-shrinking [tor-browser]
+ * Bug 42529: Try not to spoof system-ui in contexts exempt from RFP [tor-browser]
+ * Bug 42537: Move base-browser.ftl Fluent file from "browser" to "toolkit" [tor-browser]
+ * Bug 42574: Exempt pdf.js from letterboxing [tor-browser]
+ * Bug 42583: Modify moz-support-link [tor-browser]
+ * Windows + macOS
+ * Bug 41405: Win ≤8.1 and macOS ≤10.14 not supported in ESR 128 [tor-browser]
+ * Bug 42347: Add a banner warning users about the upcoming EOL for Win ≤8.1 and macOS ≤10.14 [tor-browser]
+ * Bug 42586: Add support link to OS deprecation message [tor-browser]
+ * Windows
+ * Bug 278: Create asset(s) for the Mullvad Browser installer [mullvad-browser]
+ * Bug 305: Disable setting default browser on Windows [mullvad-browser]
+ * Bug 41901: windows: FontSubstitutes can leak system locale [tor-browser]
+ * Bug 41089: Add filetype association to the installer of Mullvad Browser [tor-browser-build]
+ * macOS
+ * Bug 40569: Create build-specific installer for macOS [tor-browser-build]
+ * Linux
+ * Bug 41136: Include *.deb in the list of files to gpg sign [tor-browser-build]
+ * Bug 28: deb installation package for Linux [mullvad-browser]
+ * Bug 29: rpm installation package for Linux [mullvad-browser]
+ * Bug 295: Filepicker string chars are tofu for the .deb package in Ubuntu 22.04 / Debian 11 [mullvad-browser]
+ * Bug 42438: Adapt the data import wizard to use the original $HOME on Linux [tor-browser]
+ * Bug 41135: 13.5a7's start-tor-browser seems to break KeePassXC-Browser? [tor-browser-build]
+ * Build System
+ * All Platforms
+ * Bug 282: Move `--disable-eme` to OS- and architecture-specific mozconfigs [mullvad-browser]
+ * Bug 301: Deb package in the debian software installer is showing the License as "Proprietary" [mullvad-browser]
+ * Bug 42337: Enable GeckoDriver for all desktop platforms [tor-browser]
+ * Bug 42594: Update mach to work with python 3.12 [tor-browser]
+ * Bug 40983: Bump the various branches to 13.5 on main [tor-browser-build]
+ * Bug 41001: Create Release Prep MR generating script [tor-browser-build]
+ * Bug 41031: Add command to unsign .mar files and compare with sha256sums-unsigned-build.txt [tor-browser-build]
+ * Bug 41038: Add RPM dependencies to README [tor-browser-build]
+ * Bug 41041: Sign mullvad-browser nightly updates [tor-browser-build]
+ * Bug 41045: Dump more information about build times on Firefox [tor-browser-build]
+ * Bug 41057: make fetch is not fetching mullvad repo [tor-browser-build]
+ * Bug 41072: Set correct updater_url for Mullvad Browser nightly builds [tor-browser-build]
+ * Bug 41081: Update detailsURL in tools/signing/nightly/update-responses-base-config.yml [tor-browser-build]
+ * Bug 41088: Remove use of projects/browser/run_scripts [tor-browser-build]
+ * Bug 41148: Update projects/browser/Bundle-Data/Docs/Licenses/NoScript.txt [tor-browser-build]
+ * Bug 41153: Update README for Ubuntu 24.04 unprivileged user namespace changes [tor-browser-build]
+ * Bug 41154: Update keyring/boklm.gpg for new subkeys [tor-browser-build]
+ * Bug 41161: Explicitly fetch tags in the release preparation script [tor-browser-build]
+ * Bug 40884: Script to automate uploading sha256s and signatures to location signing/download-unsigned-sha256sums-gpg-signatures-from-people-tpo expects them to be [tor-browser-build]
+ * Bug 40071: Add an option to create zip files using 7z [rbm]
+ * Bug 40072: Move capture_exec to a separate module [rbm]
+ * Bug 40073: We should remove ./ when using 7-zip for zip files [rbm]
+ * Bug 40076: Correctly refresh file when computing input_files_id and a file is set as refresh_input [rbm]
+ * Windows
+ * Bug 200: Build system installer for Mullvad Browser on Windows [mullvad-browser]
+ * Bug 40606: Use Clang to compile NSIS [tor-browser-build]
+ * Bug 40900: Update NSIS to 3.09 [tor-browser-build]
+ * Bug 41065: Do a cleanup of the NSIS script [tor-browser-build]
+ * Bug 41076: Include the ShellLink plugin in NSIS [tor-browser-build]
+ * Bug 41077: Draft the new installer for Mullvad Browser [tor-browser-build]
+ * Bug 41084: $app_bundle is missing the final .app in projects/firefox/build [tor-browser-build]
+ * Bug 41097: authenticode-timestamping.sh fails to run again because tmp-timestamp already exists [tor-browser-build]
+ * Bug 41151: Explicitly initialize the plugin directory on the Windows installer [tor-browser-build]
+ * Bug 41167: Stop generating an MB "portable" windows install [tor-browser-build]
+ * macOS
+ * Bug 40990: Remove old macos signing scripts [tor-browser-build]
+ * Bug 41124: Since TB/MB 13.5a5 macos signed installers contain all .DS_Store [tor-browser-build]
+ * Linux
+ * Bug 42491: Add mozconfig-linux-aarch64 [tor-browser]
+ * Bug 41046: Use the final path for Linux debug symbols [tor-browser-build]
+ * Bug 41083: Make deb package for Mullvad Browser [tor-browser-build]
+ * Bug 41112: Fix indentation of projects/browser/RelativeLink/start-browser [tor-browser-build]
+ * Bug 41129: Make rpm package for Mullvad Browser [tor-browser-build]
+
+
+Mullvad Browser 13.0.16 - June 11th 2024
+* All Platforms
+ * Updated Firefox to 115.12.0esr
+ * Updated uBlock Origin to 1.58.0
+ * Bug 310: Rebase Mullvad Browser Stable 13.0 onto 115.12.0esr [mullvad-browser]
+ * Bug 42621: Backport security fixes from Firefox 127 [tor-browser]
+
Mullvad Browser 13.5a9 - June 10 2024
* All Platforms
* Updated Firefox to 115.12.0esr
=====================================
projects/browser/Bundle-Data/Docs-TBB/ChangeLog.txt
=====================================
@@ -1,3 +1,260 @@
+Tor Browser 14.0a1 - July 24 2024
+ * All Platforms
+ * Updated NoScript to 11.4.31
+ * Bug 41328: Follow firefox ESMify for Bug 1308512 [tor-browser]
+ * Bug 42441: Evaluate RR version-by-RR version rebases instead of ESR-to-ESR [tor-browser]
+ * Bug 42683: Create script to generate issue triage csv's from bugzilla query and git scraping [tor-browser]
+ * Windows + macOS + Linux
+ * Updated Firefox to 128.0esr
+ * Bug 42687: Disable Privacy-Preserving Attribution [tor-browser]
+ * Build System
+ * All Platforms
+ * Updated Go to 1.22.5
+ * Bug 42470: Add merge request CI for linting [tor-browser]
+ * Bug 42722: clang-format and localization linters are not running [tor-browser]
+ * Bug 40964: Create new Tor Browser gpg subkey [tor-browser-build]
+ * Bug 41155: Update toolchains for ESR128 [tor-browser-build]
+ * Bug 41156: Split the Rust configuration options [tor-browser-build]
+ * Bug 41166: Use the GitHub repository for firefox-l10n [tor-browser-build]
+ * Bug 41168: deploy_update_responses-$channel.sh should check that it is not reverting an update in an other channel [tor-browser-build]
+ * Bug 41184: Update generate blog post script to use new blog header images [tor-browser-build]
+ * Bug 41189: Add matzfan to list of downstream projects in alpha release-prep template [tor-browser-build]
+ * Bug 41190: Add morgan.gpg to keyrings and list of valid keyrings in firefox+geckoview [tor-browser-build]
+ * Bug 41191: Remove richard.gpg from keyrings and list of valid keyrings in firefox+geckoview [tor-browser-build]
+ * Bug 41195: Update Go to 1.22 [tor-browser-build]
+ * Bug 40078: Update tools/tb-build-06-start-nightly-build after tor-browser-build#40829 [tor-browser-bundle-testsuite]
+ * Windows
+ * Bug 29318: Drop mingw-w64/gcc toolchain [tor-browser-build]
+ * Bug 29320: Use mingw-w64/clang toolchain to build Rust [tor-browser-build]
+ * Bug 41177: Include Windows installer without -portable- in download json files [tor-browser-build]
+ * Windows + macOS
+ * Bug 41197: Modify update-responses to prevent upgrades on unsupported Windows and macOS versions [tor-browser-build]
+
+Tor Browser 13.5.1 - July 09 2024
+ * All Platforms
+ * Bug 42689: Rebase Tor Browser onto 115.13.0esr [tor-browser]
+ * Bug 42693: Backports security fixes from Firefox 128 [tor-browser]
+ * Windows + macOS + Linux
+ * Updated Firefox to 115.13.0esr
+ * Android
+ * Updated GeckoView to 115.13.0esr
+ * Build System
+ * All Platforms
+ * Updated Go to 1.21.12
+ * Bug 41166: Use the GitHub repository for firefox-l10n [tor-browser-build]
+ * Windows
+ * Bug 41177: Include Windows installer without -portable- in download json files [tor-browser-build]
+
+Tor Browser 13.5 - June 17 2024
+ * All Platforms
+ * Bug 40856: Add a default for preferences in TorSettings [tor-browser]
+ * Bug 40919: Consider dropping protection against line-height introduced in #23104 [tor-browser]
+ * Bug 41114: Fix no-async-promise-executor on TorConnect [tor-browser]
+ * Bug 41467: compat: beacon: re-enable the API but transform it to a no-op [tor-browser]
+ * Bug 42153: Drop dom.enable_resource_timing = false preference [tor-browser]
+ * Bug 42246: Migrate tor connection stuff from browser to toolkit [tor-browser]
+ * Bug 42290: "DuckDuckGoOnion" is a weird naming format for onion search engines [tor-browser]
+ * Bug 42302: The allowed ports string contains a typo [tor-browser]
+ * Bug 42308: Update README for tor browser [tor-browser]
+ * Bug 42315: compat: why is eventCounts undefined? [tor-browser]
+ * Bug 42336: Review the relationship between TorSettings and the TorProvider [tor-browser]
+ * Bug 42340: TorBridgeChanged notification sends out "[object Object]" as its data. [tor-browser]
+ * Bug 42343: Consume pt_config.json in the browser [tor-browser]
+ * Bug 42354: Refactor exclusions in ShouldSanitizePreference() to the pref list. [tor-browser]
+ * Bug 42358: Separate the domain fronted requests from Moat [tor-browser]
+ * Bug 42359: Handle firewall and proxy in TorSettings.setSettings [tor-browser]
+ * Bug 42390: Betterboxing: make the decorator border disappear when the corners are flat [tor-browser]
+ * Bug 42397: Change RFP-spoofed Timezone from UTC to a real-world, less discriminable one [tor-browser]
+ * Bug 42437: Drop "torbrowser.version" preference [tor-browser]
+ * Bug 42466: Drop the "Onion Logo" from trademark statement [tor-browser]
+ * Bug 42479: Switch from localized strings to error codes in TorConnect errors [tor-browser]
+ * Bug 42481: Modularize SecurityLevel [tor-browser]
+ * Bug 42521: Remove unused onboarding strings [tor-browser]
+ * Bug 42529: Try not to spoof system-ui in contexts exempt from RFP [tor-browser]
+ * Bug 42537: Move Fluent files from "browser" to "toolkit" [tor-browser]
+ * Bug 42538: Move onion icons to toolkit [tor-browser]
+ * Bug 42549: Remove brand.dtd [tor-browser]
+ * Bug 42604: Add some debug logs about circuits [tor-browser]
+ * Bug 241: Move network.proxy.failover_direct=false pref to base-browser [mullvad-browser]
+ * Bug 41111: Use Lyrebird to provide WebTunnel PT Client [tor-browser-build]
+ * Windows + macOS + Linux
+ * Bug 40843: Add a working state to the Internet test button in connection settings [tor-browser]
+ * Bug 41621: Tweak about:torconnect styling [tor-browser]
+ * Bug 41622: Convert onion site errors to the new neterror template [tor-browser]
+ * Bug 41814: Change "vanilla bridge:" to "Tor bridge:" in bridge cards [tor-browser]
+ * Bug 41916: Letterboxing preferences UI [tor-browser]
+ * Bug 41917: Make the appearance of letterboxing look more intentional [tor-browser]
+ * Bug 41918: Add option to reuse last window size when letterboxing is enabled [tor-browser]
+ * Bug 41930: intl.accept_languages gets into a stuck modifed state [tor-browser]
+ * Bug 41966: Cannot remove locales from the locale alternatives list [tor-browser]
+ * Bug 42036: Design and build a user interface for Lox [tor-browser]
+ * Bug 42192: Correctly round new windows when bookmarks toolbar is set to "Only Show on New Tab" [tor-browser]
+ * Bug 42202: Fluent migration: crypto safety [tor-browser]
+ * Bug 42203: Fluent migration: about dialog [tor-browser]
+ * Bug 42204: Drop unused aboutTor.dtd [tor-browser]
+ * Bug 42206: Fluent migration: about:rulesets [tor-browser]
+ * Bug 42207: Fluent migration: preferences [tor-browser]
+ * Bug 42209: Fluent migration: tor circuit [tor-browser]
+ * Bug 42210: Fluent migration: download warning [tor-browser]
+ * Bug 42211: Fluent migration: new identity [tor-browser]
+ * Bug 42214: Fluent migration: security level [tor-browser]
+ * Bug 42270: Implement design changes to QR code dialog [tor-browser]
+ * Bug 42303: Remove unused "help" button logic in tor dialogs [tor-browser]
+ * Bug 42319: Make all the wordmark of the same size [tor-browser]
+ * Bug 42387: Visual noise in 13.5a4 letterboxing [tor-browser]
+ * Bug 42389: Betterboxing: gradient is never shown [tor-browser]
+ * Bug 42398: Include Alpha and Nightly in MOZ_APP_DISPLAYNAME (and possibly in other places) [tor-browser]
+ * Bug 42405: Fix betterboxing + findbar horizontal bounce if the scrollbar is not an overlay [tor-browser]
+ * Bug 42414: Show ellipsis when the tor bridge address overflows [tor-browser]
+ * Bug 42415: Improve focus styling for forced focus in bridge settings [tor-browser]
+ * Bug 42421: Remove bridge option should be hidden for Lox bridges [tor-browser]
+ * Bug 42423: Move temporary Lox Fluent strings to new file [tor-browser]
+ * Bug 42425: Improve accessibility of the bridge emoji cells [tor-browser]
+ * Bug 42443: Shrink the window to match letterboxing size when the emtpy area is doble-clicked [tor-browser]
+ * Bug 42446: Improve accessible descriptions in built-in dialog [tor-browser]
+ * Bug 42457: Loading icon for bridge pass (Lox) invites [tor-browser]
+ * Bug 42458: Update the "Submit Feedback" link in "About Tor Browser" [tor-browser]
+ * Bug 42476: Only allow Lox (invites) in alpha and nightly builds [tor-browser]
+ * Bug 42489: Lox module notifications [tor-browser]
+ * Bug 42490: Install svg from branding theme to browser/chrome/icons/default [tor-browser]
+ * Bug 42496: Moat refresh bug [tor-browser]
+ * Bug 42500: When startup window is maximized per letterboxing.rememberSize on startup, the restore button shrinks it to its minimum size [tor-browser]
+ * Bug 42504: TB Bookmarks: Add the Tor forum .onion to the bookmarks [tor-browser]
+ * Bug 42510: SETCONF Tor control protocol command should not be used when system Tor is configured / TOR_SKIP_LAUNCH=1 is not honored [tor-browser]
+ * Bug 42511: false positive message: browser tab bar shows "Not connected" even though connected in a system Tor etc. context [tor-browser]
+ * Bug 42520: Correctly record new initial window size after auto-shrinking [tor-browser]
+ * Bug 42533: Add Lox notification for activeLoxId [tor-browser]
+ * Bug 42540: Fix gNetworkStatus.deinint typo [tor-browser]
+ * Bug 42541: Circuit Display does not work when using Conjure pluggable transport [tor-browser]
+ * Bug 42542: Quirks when onion authentication prompt is shared between two tabs [tor-browser]
+ * Bug 42573: Tweak language notification to avoid formatValue [tor-browser]
+ * Bug 42574: Exempt pdf.js from letterboxing [tor-browser]
+ * Bug 42583: Modify moz-support-link [tor-browser]
+ * Bug 262: Mouse-over long links causes the browser element to re-center relative to width of status tooltip [mullvad-browser]
+ * Bug 289: The Letterboxing>Content Alignment heading doesn't follow the Firefox design document capitalization [mullvad-browser]
+ * Bug 41149: Add be, bg and pt-PT translations to nightlies [tor-browser-build]
+ * Windows + macOS
+ * Bug 41405: Win ≤8.1 and macOS ≤10.14 not supported in ESR 128 [tor-browser]
+ * Bug 42347: Add a banner warning users about the upcoming EOL for Win ≤8.1 and macOS ≤10.14 [tor-browser]
+ * Bug 42586: Add support link to OS deprecation message [tor-browser]
+ * Windows
+ * Bug 41859: Font used for IPs in circuit display is illegible [tor-browser]
+ * Bug 41901: windows: FontSubstitutes can leak system locale [tor-browser]
+ * Bug 42163: Make the 3rd party DLL blocklist obey portable mode [tor-browser]
+ * macOS
+ * Bug 40569: Create build-specific installer for macOS [tor-browser-build]
+ * Linux
+ * Bug 42438: Adapt the data import wizard to use the original $HOME on Linux [tor-browser]
+ * Bug 41112: Fix indentation of projects/browser/RelativeLink/start-browser [tor-browser-build]
+ * Bug 41136: Include *.deb in the list of files to gpg sign [tor-browser-build]
+ * Android
+ * Bug 41187: Improve Android's bridge settings UI [tor-browser]
+ * Bug 41846: Disable new nimbus use in firefox-android 115 [tor-browser]
+ * Bug 42017: TBA13: system/widget font tests: font-family not returned in getComputedStyle [tor-browser]
+ * Bug 42248: Allow GeckoView to launch tor [tor-browser]
+ * Bug 42249: Allow GeckoView to launch lyrebird [tor-browser]
+ * Bug 42250: Allow Moat.sys.mjs to invoke lyrebird on Android [tor-browser]
+ * Bug 42252: Plumb down TorConnect commands from firefox-android to GeckoView [tor-browser]
+ * Bug 42253: Remove "New private tab" action and widget [tor-browser]
+ * Bug 42259: Remove unused firefox branding from Tor Browser for Android [tor-browser]
+ * Bug 42260: Add TBB artifacts to .gitignore [tor-browser]
+ * Bug 42301: Make TorSettings interact with the old Android Settings [tor-browser]
+ * Bug 42317: Update "Security Settings" menu item [tor-browser]
+ * Bug 42323: Add a checkbox to enable the connect assist experiments on alpha [tor-browser]
+ * Bug 42409: TTP-03-011 WP3: Potential DoS due to Deep Link abuse [tor-browser]
+ * Bug 42427: Do not ship bridges as prefences anymore [tor-browser]
+ * Bug 42486: firefox-android bridge settings sometimes dont save [tor-browser]
+ * Bug 42522: The quick connect switch on Android seems too much on the right side [tor-browser]
+ * Bug 42552: TBA: formatting APIs are en-US only [tor-browser]
+ * Bug 42566: Remove 'Enable beta connection features' menu item in stable release channel [tor-browser]
+ * Bug 42567: Remove 'Enable beta connection features' toggle [tor-browser]
+ * Bug 42571: The new bootstrap on Android breaks if the browser goes in background [tor-browser]
+ * Bug 42576: Backport Bug 1885171: use the private keyboard for prompts on Android [tor-browser]
+ * Bug 42578: Reject Android "open in Tor Browser" intent [tor-browser]
+ * Bug 42582: Accepted languages should use id and he on Android [tor-browser]
+ * Bug 42593: Unable to disable bridges after they have been configured and successfully bootstrapped [tor-browser]
+ * Bug 42618: Addons on Android have a stale cache [tor-browser]
+ * Bug 42619: Cannot install Android addons from AMO [tor-browser]
+ * Bug 42632: Don't display builtin bridges in provide bridge popup [tor-browser]
+ * Bug 42636: A bad bridge line might get TBA stuck [tor-browser]
+ * Bug 42648: Don't cancel tor bootstrap when opening settings from bootstrap [tor-browser]
+ * Bug 41143: Enable multi-locales also on GeckoView [tor-browser-build]
+ * Build System
+ * All Platforms
+ * Bug 42331: tb-dev fetch command is missing repository argument [tor-browser]
+ * Bug 42516: Make tb-dev worktree-compatible [tor-browser]
+ * Bug 42594: Update mach to work with Python 3.12 [tor-browser]
+ * Bug 40852: Reproducible build of the the lox client library to wasm [tor-browser-build]
+ * Bug 40983: Bump the various branches to 13.5 on main [tor-browser-build]
+ * Bug 41001: Create Release Prep MR generating script [tor-browser-build]
+ * Bug 41037: Set time on signing machine before starting signing [tor-browser-build]
+ * Bug 41038: Add RPM dependencies to README [tor-browser-build]
+ * Bug 41045: Dump more information about build times on Firefox [tor-browser-build]
+ * Bug 41048: Drop the kcp-go project [tor-browser-build]
+ * Bug 41073: Update documention about required packages for container-less build [tor-browser-build]
+ * Bug 41081: Update detailsURL in tools/signing/nightly/update-responses-base-config.yml [tor-browser-build]
+ * Bug 41148: Update projects/browser/Bundle-Data/Docs/Licenses/NoScript.txt [tor-browser-build]
+ * Bug 41153: Update README for Ubuntu 24.04 unprivileged user namespace changes [tor-browser-build]
+ * Bug 41154: Update keyring/boklm.gpg for new subkeys [tor-browser-build]
+ * Bug 41161: Explicitly fetch tags in the release preparation script [tor-browser-build]
+ * Bug 40071: Add an option to create zip files using 7z [rbm]
+ * Bug 40073: We should remove ./ when using 7-zip for zip files [rbm]
+ * Bug 40076: Correctly refresh file when computing input_files_id and a file is set as refresh_input [rbm]
+ * Windows + macOS + Linux
+ * Bug 42305: (Semi-)Automatically merge translation resources across tor browser releases (desktop) [tor-browser]
+ * Bug 42501: Move `--disable-eme` to OS- and architecture-specific mozconfigs [tor-browser]
+ * Bug 42519: Update the profile directory patch to check both for `system-install` and for `is-packaged-app` file [tor-browser]
+ * Bug 41057: make fetch is not fetching mullvad repo [tor-browser-build]
+ * Bug 41078: pt_config.json not touch'd before adding to omni.ja, resulting in build non-determinism [tor-browser-build]
+ * Bug 41088: Remove use of projects/browser/run_scripts [tor-browser-build]
+ * Windows
+ * Bug 40606: Use Clang to compile NSIS [tor-browser-build]
+ * Bug 40900: Update NSIS to 3.09 [tor-browser-build]
+ * Bug 41065: Do a cleanup of the NSIS script [tor-browser-build]
+ * Bug 41076: Include the ShellLink plugin in NSIS [tor-browser-build]
+ * Bug 41097: authenticode-timestamping.sh fails to run again because tmp-timestamp already exists [tor-browser-build]
+ * Bug 41150: Do not check for SSE2 on the Windows installer [tor-browser-build]
+ * macOS
+ * Bug 41084: $app_bundle is missing the final .app in projects/firefox/build [tor-browser-build]
+ * Bug 41124: Since TB/MB 13.5a5 macos signed installers contain all .DS_Store [tor-browser-build]
+ * Linux
+ * Bug 42491: Add mozconfig-linux-aarch64 [tor-browser]
+ * Bug 41046: Use the final path for Linux debug symbols [tor-browser-build]
+ * Bug 41126: Make deb and rpm packages for Tor Browser [tor-browser-build]
+ * Bug 41137: Build gcc-cross and tor-expert-bundle for linux-aarch64 [tor-browser-build]
+ * Bug 41160: Enable build of Tor Browser rpm/deb packages for nightly only [tor-browser-build]
+ * Android
+ * Bug 40502: Do not recommend addons on Tor Browser [tor-browser]
+ * Bug 42399: Re-enable minimization of JS for Android [tor-browser]
+ * Bug 42568: Remove legacy tor dependencies from firefox-android [tor-browser]
+ * Bug 42569: Remove tor-onion-proxy-library and and tor-android-service deployment/ingestion steps from firefox-android dev tools/scripts [tor-browser]
+ * Bug 42570: Add tor-expert-bundle aar depoyment/ingestion step to firefox-android dev tools/scripts [tor-browser]
+ * Bug 42581: Check if a file exists before trying to sign it in tools/tba-sign-devbuild.sh [tor-browser]
+ * Bug 41080: Re-pack omni.ja with 7-zip on Android [tor-browser-build]
+ * Bug 41082: Package tor expert bundle on android as .aar that firefox-android can use in lieu of tor-android-service with geckoview bootstrap [tor-browser-build]
+ * Bug 41092: Use an uncompressed omni.ja to improve final apk compression. [tor-browser-build]
+ * Bug 41093: Sign unsigned APKs instead of the QA-signed ones [tor-browser-build]
+ * Bug 41127: Android testbuilds fail because of the too early MOZ_BUILD_DATE [tor-browser-build]
+ * Bug 41139: Remove tor-android-service and tor-onion-proxy-library dependencies and ingestion steps from firefox-android config and build script [tor-browser-build]
+ * Bug 41140: Remove tor-onion-proxy-library and tor-android-service projects from tor-browser-build [tor-browser-build]
+ * Bug 41141: Add tor-expert-bundle aar dependency to firefox-android [tor-browser-build]
+ * Bug 42201: Make the script sign all the channels for local builds [tor-browser]
+ * Bug 42258: Replace the current boring "fiery android" icon we use for dev with the cool nightly icon [tor-browser]
+
+Tor Browser 13.0.16 - June 11th 2024
+ * All Platforms
+ * Updated Tor to 0.4.8.12
+ * Updated OpenSSL to 3.0.14
+ * Bug 42625: Rebase Tor Browser Stable 13.0 onto 115.12.0esr [tor-browser]
+ * Windows + macOS + Linux
+ * Updated Firefox to 115.12.0esr
+ * Android
+ * Updated GeckoView to 115.12.0esr
+ * Bug 42621: Backport security fixes from Firefox 127 [tor-browser]
+ * Build System
+ * All Platforms
+ * Updated Go to 1.21.11
+
Tor Browser 13.5a9 - June 10 2024
* All Platforms
* Updated Tor to 0.4.8.12
=====================================
projects/browser/config
=====================================
@@ -105,9 +105,9 @@ input_files:
enable: '[% ! c("var/android") %]'
- filename: Bundle-Data
enable: '[% ! c("var/android") %]'
- - URL: https://addons.mozilla.org/firefox/downloads/file/4206186/noscript-11.4.29.…
+ - URL: https://addons.mozilla.org/firefox/downloads/file/4320635/noscript-11.4.31.…
name: noscript
- sha256sum: 05b98840b05ef2acbac333543e4b7c3d40fee2ce5fb4e29260b05e2ff6fe24cd
+ sha256sum: b22c007534471a8fb74378e970ba79a536a44f88d81ad3852273b82a466d10c7
- URL: https://addons.mozilla.org/firefox/downloads/file/4290466/ublock_origin-1.5…
name: ublock-origin
sha256sum: 470c56994a7174db21578adce598b158a5dc0970c87c5cfe889ac632bd3085ea
=====================================
projects/firefox/config
=====================================
@@ -17,8 +17,10 @@ var:
firefox_platform_version: 128.0
firefox_version: '[% c("var/firefox_platform_version") %]esr'
browser_series: '14.0'
- browser_rebase: 1
+ # Note: In 14.0a1, mullvad-browser is on browser_rebase: 1!
+ browser_rebase: 2
browser_branch: '[% c("var/browser_series") %]-[% c("var/browser_rebase") %]'
+ # Note: In 14.0a1, mullvad-browser is on browser_build: 2!
browser_build: 1
branding_directory_prefix: 'tb'
copyright_year: '[% exec("git show -s --format=%ci").remove("-.*") %]'
@@ -107,6 +109,10 @@ targets:
gitlab_project: https://gitlab.torproject.org/tpo/applications/mullvad-browser
updater_url: 'https://cdn.mullvad.net/browser/update_responses/update_1/'
nightly_updates_publish_dir_prefix: mullvadbrowser-
+ # TODO: Remove/update me for 14.0a2 when/if in-sync with tor-browser
+ browser_rebase: 1
+ # TODO: Remove/update me for 14.0a2 when/if in-sync with tor-browser
+ browser_build: 2
linux-x86_64:
var:
=====================================
projects/go-bootstrap/build
=====================================
@@ -18,8 +18,16 @@ cd /var/tmp/build/go1.4/src
CGO_ENABLED=0 CC= CFLAGS= LDFLAGS= ./make.bash
export GOROOT_BOOTSTRAP="/var/tmp/build/go1.4"
+# Building go 1.19.X
cd $rootdir
+tar -C /var/tmp/build --transform='s,^go\>,go1.19,' -xf $rootdir/[% c('input_files_by_name/go119') %]
+cd /var/tmp/build/go1.19/src
+./make.bash
+export GOROOT_BOOTSTRAP="/var/tmp/build/go1.19"
+
+# Building go 1.21.X
+cd $rootdir
tar -C /var/tmp/dist -xf $rootdir/[% c('input_files_by_name/go') %]
export GOROOT="$distdir"
mv /var/tmp/dist/go $distdir
=====================================
projects/go-bootstrap/config
=====================================
@@ -1,5 +1,5 @@
# vim: filetype=yaml sw=2
-version: 1.19.9
+version: 1.21.12
filename: '[% project %]-[% c("version") %]-[% c("var/build_id") %].tar.[% c("compress_tar") %]'
container:
use_container: 1
@@ -9,9 +9,12 @@ var:
input_files:
- project: container-image
- - URL: 'https://golang.org/dl/go[% c("version") %].src.tar.gz'
+ - URL: 'https://go.dev/dl/go[% c("version") %].src.tar.gz'
name: go
- sha256sum: 131190a4697a70c5b1d232df5d3f55a3f9ec0e78e40516196ffb3f09ae6a5744
+ sha256sum: 30e68af27bc1f1df231e3ab74f3d17d3b8d52a089c79bcaab573b4f1b807ed4f
+ - URL: https://go.dev/dl/go1.19.13.src.tar.gz
+ sha256sum: ccf36b53fb0024a017353c3ddb22c1f00bc7a8073c6aac79042da24ee34434d3
+ name: go119
- URL: https://dl.google.com/go/go1.4-bootstrap-20171003.tar.gz
name: go14
sha256sum: f4ff5b5eb3a3cae1c993723f3eab519c5bae18866b5e5f96fe1102f0cb5c3e52
=====================================
projects/go/config
=====================================
@@ -1,14 +1,10 @@
# vim: filetype=yaml sw=2
-# When Windows 7 goes EOL, just update this field
-version: '[% IF c("var/use_go_1_20") %][% c("var/go_1_20") %][% ELSE %][% c("var/go_1_21") %][% END %]'
+version: '1.22.5'
filename: '[% project %]-[% c("version") %]-[% c("var/osname") %]-[% c("var/build_id") %].tar.[% c("compress_tar") %]'
container:
use_container: 1
var:
- use_go_1_20: 0
- go_1_21: 1.21.11
- go_1_20: 1.20.14
no_crosscompile: 1
setup: |
mkdir -p /var/tmp/dist
@@ -77,7 +73,6 @@ targets:
windows:
var:
GOOS: windows
- use_go_1_20: '[% c("origin_project") != "snowflake" %]'
windows-i686:
var:
GOARCH: 386
@@ -129,14 +124,9 @@ input_files:
- name: '[% c("var/compiler") %]'
project: '[% c("var/compiler") %]'
enable: '[% ! c("var/linux") %]'
- - URL: 'https://go.dev/dl/go[% c("var/go_1_21") %].src.tar.gz'
+ - URL: 'https://go.dev/dl/go[% c("version") %].src.tar.gz'
name: go
- sha256sum: 42aee9bf2b6956c75a7ad6aa3f0a51b5821ffeac57f5a2e733a2d6eae1e6d9d2
- enable: '[% !c("var/use_go_1_20") %]'
- - URL: 'https://go.dev/dl/go[% c("var/go_1_20") %].src.tar.gz'
- name: go
- sha256sum: 1aef321a0e3e38b7e91d2d7eb64040666cabdcc77d383de3c9522d0d69b67f4e
- enable: '[% c("var/use_go_1_20") %]'
+ sha256sum: ac9c723f224969aee624bc34fd34c9e13f2a212d75c71c807de644bb46e112f6
- project: go-bootstrap
name: go-bootstrap
target_replace:
=====================================
projects/manual/config
=====================================
@@ -1,7 +1,7 @@
# vim: filetype=yaml sw=2
# To update, see doc/how-to-update-the-manual.txt
# Remember to update also the package's hash, with the version!
-version: 172720
+version: 186657
filename: 'manual-[% c("version") %]-[% c("var/build_id") %].tar.[% c("compress_tar") %]'
container:
use_container: 1
@@ -23,6 +23,6 @@ input_files:
- project: container-image
- URL: 'https://build-sources.tbb.torproject.org/manual_[% c("version") %].zip'
name: manual
- sha256sum: f2abffe1471ae63046cff06b853685c6614e117cc67bdf51228dc0792344441c
+ sha256sum: c73bb6c97eebe22947b0e9e076838e3c4994da24f3e6e16b7621831afd2006a8
- filename: packagemanual.py
name: package_script
=====================================
projects/release/update_responses_config.yml
=====================================
@@ -55,17 +55,15 @@ versions:
migrate_langs:
# minSupportedOsVersion on macOS corresponds to the Darwin version ( https://en.wikipedia.org/wiki/Darwin_(operating_system) )
macos:
- # macOS v10.12.0
- minSupportedOSVersion: 16.0.0
+ # macOS v10.15.0
+ minSupportedOSVersion: 19.0.0
# minSupportedOsVersion on Windows corresponds to the operating system version ( https://docs.microsoft.com/en-us/windows/win32/sysinfo/operating-system-ver… )
windows-i686:
- # Windows 7
- minSupportedOSVersion: 6.1
- minSupportedInstructionSet: SSE2
+ # Windows 10
+ minSupportedOSVersion: 10.0
windows-x86_64:
- # Windows 7
- minSupportedOSVersion: 6.1
- minSupportedInstructionSet: SSE2
+ # Windows 10
+ minSupportedOSVersion: 10.0
linux-i686:
minSupportedInstructionSet: SSE2
linux-x86_64:
=====================================
projects/translation/config
=====================================
@@ -12,13 +12,13 @@ compress_tar: 'gz'
steps:
base-browser:
base-browser: '[% INCLUDE build %]'
- git_hash: a2c920966678dd664e98318557ef03ab22023880
+ git_hash: b8972d5a7409c964c832c6ccb7703f0451e000cd
targets:
nightly:
git_hash: 'base-browser'
tor-browser:
tor-browser: '[% INCLUDE build %]'
- git_hash: 0542de960c53726fab59918eeaddb3173dbacea2
+ git_hash: dd38ffa906e83acfaf5af94d5823feee52eb86f2
targets:
nightly:
git_hash: 'tor-browser'
@@ -32,7 +32,7 @@ steps:
fenix: '[% INCLUDE build %]'
# We need to bump the commit before releasing but just pointing to a branch
# might cause too much rebuidling of the Firefox part.
- git_hash: 35087956c0e382242935c2ce6e9cecfd44c112bc
+ git_hash: 5799bb4b0104159a79ad43334f89ac26c36a1465
compress_tar: 'zst'
targets:
nightly:
=====================================
rbm.conf
=====================================
@@ -73,18 +73,18 @@ buildconf:
git_signtag_opt: '-s'
var:
- torbrowser_version: '13.5a9'
- torbrowser_build: 'build2'
+ torbrowser_version: '14.0a1'
+ torbrowser_build: 'build1'
# This should be the date of when the build is started. For the build
# to be reproducible, browser_release_date should always be in the past.
- browser_release_date: '2024/06/10 06:30:00'
+ browser_release_date: '2024/07/24 21:00:00'
browser_release_date_timestamp: '[% USE date; date.format(c("var/browser_release_date"), "%s") %]'
updater_enabled: 1
build_mar: 1
torbrowser_incremental_from:
+ - 13.5a9
- 13.5a8
- 13.5a7
- - 13.5a6
mar_channel_id: '[% c("var/projectname") %]-torproject-[% c("var/channel") %]'
# By default, we sort the list of installed packages. This allows sharing
=====================================
tools/fetch_changelogs.py
=====================================
@@ -41,7 +41,8 @@ class ChangelogEntry:
"tor-browser": 2,
"tor-browser-build": 3,
"mullvad-browser": 1 if is_mb else 4,
- "rbm": 5,
+ "tor-browser-bundle-testsuite": 5,
+ "rbm": 6,
}
def get_platforms(self):
=====================================
tools/signing/set-config
=====================================
@@ -42,5 +42,5 @@ faketime_path=/usr/lib/x86_64-linux-gnu/faketime/libfaketime.so.1
test -z "${NON_INTERACTIVE:-}" || rsync_progress="--progress"
rsync_options="-avH ${rsync_progress:-} ${DRY_RUN:-}"
-tb_builders='boklm dan henry ma1 pierov richard'
+tb_builders='boklm dan henry ma1 morgan pierov'
wrappers_dir=/signing/tor-browser-build/tools/signing/wrappers
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/compare/…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/compare/…
You're receiving this email because of your account on gitlab.torproject.org.
morgan pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits:
8d56b077 by Morgan at 2024-07-24T20:01:53+00:00
Bug 41189: Add selenium-tor maintainer to comms list in Tor Browser release-prep issue template
- - - - -
1 changed file:
- .gitlab/issue_templates/Release Prep - Tor Browser Alpha.md
Changes:
=====================================
.gitlab/issue_templates/Release Prep - Tor Browser Alpha.md
=====================================
@@ -164,6 +164,8 @@ Tor Browser Alpha (and Nightly) are on the `main` branch
- [ ] FreeBSD port: freebsd(a)sysctl.cz <!-- Gitlab user maxfx -->
- [ ] OpenBSD port: caspar(a)schutijser.com <!-- Gitlab user cschutijser -->
- [ ] Note any changes which may affect packaging/downstream integration
+- [ ] ***(Optional, only after internal API-breaking changes)*** Email downstream project maintainers:
+ - [ ] selenium-tor: matzfan(a)tempr.email <!-- Forum user Noino -->
- [ ] ***(Optional, after ESR migration)*** Email external partners:
- [ ] Cloudflare: ask-research(a)cloudflare.com
- **NOTE** : We need to provide them with updated user agent string so they can update their internal machinery to prevent Tor Browser users from getting so many CAPTCHAs
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/8…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/8…
You're receiving this email because of your account on gitlab.torproject.org.