lists.torproject.org
Sign In Sign Up
Manage this list Sign In Sign Up

Keyboard Shortcuts

Thread View

  • j: Next unread message
  • k: Previous unread message
  • j a: Jump to all threads
  • j l: Jump to MailingList overview

tbb-commits

Thread Start a new thread
Threads by month
  • ----- 2026 -----
  • May
  • April
  • March
  • February
  • January
  • ----- 2025 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2024 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2023 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2022 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2021 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2020 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2019 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2018 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2017 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2016 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2015 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2014 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
tbb-commits@lists.torproject.org

  • 1 participants
  • 20430 discussions
[Git][tpo/applications/mullvad-browser][mullvad-browser-140.9.1esr-15.0-1] BB 44749: Customize search parameters parsing.
by Pier Angelo Vendrame (@pierov) 13 Apr '26

13 Apr '26
Pier Angelo Vendrame pushed to branch mullvad-browser-140.9.1esr-15.0-1 at The Tor Project / Applications / Mullvad Browser Commits: 23f91601 by Pier Angelo Vendrame at 2026-04-13T15:03:55+02:00 BB 44749: Customize search parameters parsing. - - - - - 1 changed file: - toolkit/components/search/SearchEngine.sys.mjs Changes: ===================================== toolkit/components/search/SearchEngine.sys.mjs ===================================== @@ -151,7 +151,7 @@ function paramSubstitution(paramValue, searchTerms, queryCharset) { // Handle the less common OpenSearch parameters we're confident about. if (name == OS_PARAM_LANGUAGE) { - return Services.locale.requestedLocale || OS_PARAM_LANGUAGE_DEF; + return Services.locale.webExposedLocales[0] || OS_PARAM_LANGUAGE_DEF; } if (name == OS_PARAM_OUTPUT_ENCODING) { return OS_PARAM_OUTPUT_ENCODING_DEF; View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/23f… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/23f… You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-149.0a1-16.0-2] BB 44749: Customize search parameters parsing.
by Pier Angelo Vendrame (@pierov) 13 Apr '26

13 Apr '26
Pier Angelo Vendrame pushed to branch tor-browser-149.0a1-16.0-2 at The Tor Project / Applications / Tor Browser Commits: f3f9b329 by Pier Angelo Vendrame at 2026-04-13T10:50:56+02:00 BB 44749: Customize search parameters parsing. - - - - - 1 changed file: - toolkit/components/search/SearchEngine.sys.mjs Changes: ===================================== toolkit/components/search/SearchEngine.sys.mjs ===================================== @@ -169,7 +169,7 @@ function paramSubstitution(paramValue, searchTerms, queryCharset) { // Handle the less common OpenSearch parameters we're confident about. if (name == OS_PARAM_LANGUAGE) { - return Services.locale.requestedLocale || OS_PARAM_LANGUAGE_DEF; + return Services.locale.webExposedLocales[0] || OS_PARAM_LANGUAGE_DEF; } if (name == OS_PARAM_OUTPUT_ENCODING) { return OS_PARAM_OUTPUT_ENCODING_DEF; View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/f3f9b32… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/f3f9b32… You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-149.0a1-16.0-2] fixup! [android] Modify add-on support
by clairehurst (@clairehurst) 09 Apr '26

09 Apr '26
clairehurst pushed to branch tor-browser-149.0a1-16.0-2 at The Tor Project / Applications / Tor Browser Commits: 89ec9e9a by clairehurst at 2026-04-08T11:05:44-06:00 fixup! [android] Modify add-on support TB 44827: Always enable noscript for android - - - - - 2 changed files: - mobile/android/fenix/app/src/main/java/org/mozilla/fenix/FenixApplication.kt - mobile/android/fenix/app/src/main/java/org/mozilla/fenix/components/TorBrowserFeatures.kt Changes: ===================================== mobile/android/fenix/app/src/main/java/org/mozilla/fenix/FenixApplication.kt ===================================== @@ -133,6 +133,9 @@ import java.util.concurrent.TimeUnit import kotlin.math.roundToLong import mozilla.components.support.AppServicesInitializer.Config as AppServicesConfig +import org.mozilla.fenix.components.TorBrowserFeatures.NOSCRIPT_ID + + private const val RAM_THRESHOLD_MEGABYTES = 1024 private const val BYTES_TO_MEGABYTES_CONVERSION = 1024.0 * 1024.0 @@ -838,6 +841,15 @@ open class FenixApplication : Application(), Provider, ThemeProvider { components.useCases.tabsUseCases.selectTab(sessionId) }, onExtensionsLoaded = { extensions -> + // enable noscript if it is disabled + extensions.find { extension : WebExtension -> + extension.id == NOSCRIPT_ID + }?.let { noScript -> + if (!noScript.isEnabled()) { + components.core.engine.enableWebExtension(noScript) + } + } + // Delay until bootstrap is finished so that it will actually update tor-browser#44303 components.torController.registerRunOnceBootstrapped(object : RunOnceBootstrapped { override fun onBootstrapped() { ===================================== mobile/android/fenix/app/src/main/java/org/mozilla/fenix/components/TorBrowserFeatures.kt ===================================== @@ -24,7 +24,7 @@ import org.mozilla.fenix.tor.RunOnceBootstrapped object TorBrowserFeatures { private val logger = Logger("torbrowser-features") - private const val NOSCRIPT_ID = "{73a6fe31-595d-460b-a920-fcc0f8843232}" + const val NOSCRIPT_ID = "{73a6fe31-595d-460b-a920-fcc0f8843232}" private fun installNoScript( context: Context, View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/89ec9e9… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/89ec9e9… You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-149.0a1-16.0-2] fixup! TB 3455: Add DomainIsolator, for isolating circuit by domain.
by Pier Angelo Vendrame (@pierov) 08 Apr '26

08 Apr '26
Pier Angelo Vendrame pushed to branch tor-browser-149.0a1-16.0-2 at The Tor Project / Applications / Tor Browser Commits: a56f9bac by Pier Angelo Vendrame at 2026-04-07T18:13:53+02:00 fixup! TB 3455: Add DomainIsolator, for isolating circuit by domain. TB 44841: Handle invalid origin attributes. originAttributes should not be null, but just in case add a few more checks. - - - - - 1 changed file: - toolkit/components/tor-launcher/TorDomainIsolator.sys.mjs Changes: ===================================== toolkit/components/tor-launcher/TorDomainIsolator.sys.mjs ===================================== @@ -321,8 +321,10 @@ class TorDomainIsolatorImpl { } try { const channel = aChannel.QueryInterface(Ci.nsIChannel); - let firstPartyDomain = channel.loadInfo.originAttributes.firstPartyDomain; - const userContextId = channel.loadInfo.originAttributes.userContextId; + let firstPartyDomain = + channel.loadInfo.originAttributes?.firstPartyDomain; + const userContextId = + channel.loadInfo.originAttributes?.userContextId ?? 0; const scheme = channel.loadInfo.loadingPrincipal?.URI?.scheme; const filePath = channel.loadInfo.loadingPrincipal?.URI?.filePath; if ( @@ -375,7 +377,7 @@ class TorDomainIsolatorImpl { ); } catch (e) { logger.error("Error while setting a new proxy", e); - return null; + return aProxy; } } View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/a56f9ba… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/a56f9ba… You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1 0
0 0
[Git][tpo/applications/tor-browser-update-responses][main] 6 commits: release: new version, 15.0.9 (linux-i686)
by Pier Angelo Vendrame (@pierov) 07 Apr '26

07 Apr '26
Pier Angelo Vendrame pushed to branch main at The Tor Project / Applications / Tor Browser update responses Commits: 3e4a9c4f by Pier Angelo Vendrame at 2026-04-07T10:35:33+02:00 release: new version, 15.0.9 (linux-i686) - - - - - 732d084d by Pier Angelo Vendrame at 2026-04-07T10:35:41+02:00 release: new version, 15.0.9 (linux-x86_64) - - - - - da8f4bee by Pier Angelo Vendrame at 2026-04-07T10:35:41+02:00 release: new version, 15.0.9 (macos) - - - - - 43187538 by Pier Angelo Vendrame at 2026-04-07T10:35:41+02:00 release: new version, 15.0.9 (windows-i686) - - - - - cbb09dfe by Pier Angelo Vendrame at 2026-04-07T10:35:41+02:00 release: new version, 15.0.9 (windows-x86_64) - - - - - cb96f069 by Pier Angelo Vendrame at 2026-04-07T10:35:42+02:00 release: new version, 15.0.9 - - - - - 35 changed files: - update_3/release/download-android-aarch64.json - update_3/release/download-android-armv7.json - update_3/release/download-android-x86.json - update_3/release/download-android-x86_64.json - update_3/release/download-linux-i686.json - update_3/release/download-linux-x86_64.json - update_3/release/download-macos.json - update_3/release/download-windows-i686.json - update_3/release/download-windows-x86_64.json - update_3/release/downloads.json - update_3/release/linux-i686/.htaccess - update_3/release/linux-i686/update-15.0.5-15.0.8-linux-i686.xml → update_3/release/linux-i686/update-15.0.6-15.0.9-linux-i686.xml - update_3/release/linux-i686/update-15.0.6-15.0.8-linux-i686.xml → update_3/release/linux-i686/update-15.0.7-15.0.9-linux-i686.xml - update_3/release/linux-i686/update-15.0.7-15.0.8-linux-i686.xml → update_3/release/linux-i686/update-15.0.8-15.0.9-linux-i686.xml - update_3/release/linux-i686/update-15.0.8-linux-i686.xml → update_3/release/linux-i686/update-15.0.9-linux-i686.xml - update_3/release/linux-x86_64/.htaccess - update_3/release/linux-x86_64/update-15.0.5-15.0.8-linux-x86_64.xml → update_3/release/linux-x86_64/update-15.0.6-15.0.9-linux-x86_64.xml - update_3/release/linux-x86_64/update-15.0.6-15.0.8-linux-x86_64.xml → update_3/release/linux-x86_64/update-15.0.7-15.0.9-linux-x86_64.xml - update_3/release/linux-x86_64/update-15.0.7-15.0.8-linux-x86_64.xml → update_3/release/linux-x86_64/update-15.0.8-15.0.9-linux-x86_64.xml - update_3/release/linux-x86_64/update-15.0.8-linux-x86_64.xml → update_3/release/linux-x86_64/update-15.0.9-linux-x86_64.xml - update_3/release/macos/.htaccess - update_3/release/macos/update-15.0.7-15.0.8-macos.xml → update_3/release/macos/update-15.0.6-15.0.9-macos.xml - update_3/release/macos/update-15.0.5-15.0.8-macos.xml → update_3/release/macos/update-15.0.7-15.0.9-macos.xml - update_3/release/macos/update-15.0.6-15.0.8-macos.xml → update_3/release/macos/update-15.0.8-15.0.9-macos.xml - update_3/release/macos/update-15.0.8-macos.xml → update_3/release/macos/update-15.0.9-macos.xml - update_3/release/windows-i686/.htaccess - update_3/release/windows-i686/update-15.0.5-15.0.8-windows-i686.xml → update_3/release/windows-i686/update-15.0.6-15.0.9-windows-i686.xml - update_3/release/windows-i686/update-15.0.6-15.0.8-windows-i686.xml → update_3/release/windows-i686/update-15.0.7-15.0.9-windows-i686.xml - update_3/release/windows-i686/update-15.0.7-15.0.8-windows-i686.xml → update_3/release/windows-i686/update-15.0.8-15.0.9-windows-i686.xml - update_3/release/windows-i686/update-15.0.8-windows-i686.xml → update_3/release/windows-i686/update-15.0.9-windows-i686.xml - update_3/release/windows-x86_64/.htaccess - update_3/release/windows-x86_64/update-15.0.5-15.0.8-windows-x86_64.xml → update_3/release/windows-x86_64/update-15.0.6-15.0.9-windows-x86_64.xml - update_3/release/windows-x86_64/update-15.0.6-15.0.8-windows-x86_64.xml → update_3/release/windows-x86_64/update-15.0.7-15.0.9-windows-x86_64.xml - update_3/release/windows-x86_64/update-15.0.7-15.0.8-windows-x86_64.xml → update_3/release/windows-x86_64/update-15.0.8-15.0.9-windows-x86_64.xml - update_3/release/windows-x86_64/update-15.0.8-windows-x86_64.xml → update_3/release/windows-x86_64/update-15.0.9-windows-x86_64.xml The diff was not included because it is too large. View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses… You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1 0
0 0
[Git][tpo/applications/mullvad-browser][mullvad-browser-149.0a1-16.0-2] fixup! Base Browser's .mozconfigs.
by Pier Angelo Vendrame (@pierov) 07 Apr '26

07 Apr '26
Pier Angelo Vendrame pushed to branch mullvad-browser-149.0a1-16.0-2 at The Tor Project / Applications / Mullvad Browser Commits: 0011bde6 by Pier Angelo Vendrame at 2026-04-07T10:15:55+02:00 fixup! Base Browser's .mozconfigs. BB 31860: Enable LTO. - - - - - 5 changed files: - browser/config/mozconfigs/base-browser - browser/config/mozconfigs/base-browser-android - mozconfig-linux-aarch64-dev - mozconfig-linux-x86_64-dev - mozconfig-macos-dev Changes: ===================================== browser/config/mozconfigs/base-browser ===================================== @@ -12,6 +12,7 @@ export MOZILLA_OFFICIAL=1 ac_add_options --enable-optimize ac_add_options --enable-rust-simd +ac_add_options --enable-lto=cross ac_add_options --disable-unverified-updates ac_add_options --enable-base-browser-update ===================================== browser/config/mozconfigs/base-browser-android ===================================== @@ -5,6 +5,7 @@ export MOZILLA_OFFICIAL=1 ac_add_options --enable-optimize ac_add_options --enable-rust-simd +ac_add_options --enable-lto=cross ac_add_options --enable-application=mobile/android ===================================== mozconfig-linux-aarch64-dev ===================================== @@ -7,6 +7,9 @@ # Moz switched to lld for all Linux targets in Bug 1839739. ac_add_options --enable-linker=lld +# Disable LTO for dev builds, even though other optimizations are enabled. +ac_add_options --disable-lto + export MOZILLA_OFFICIAL= ac_add_options --with-branding=browser/branding/mb-nightly ===================================== mozconfig-linux-x86_64-dev ===================================== @@ -7,6 +7,9 @@ # Moz switched to lld for all Linux targets in Bug 1839739. ac_add_options --enable-linker=lld +# Disable LTO for dev builds, even though other optimizations are enabled. +ac_add_options --disable-lto + export MOZILLA_OFFICIAL= ac_add_options --with-branding=browser/branding/mb-nightly ===================================== mozconfig-macos-dev ===================================== @@ -4,6 +4,9 @@ # It is only intended to be used when doing incremental macOS builds # during development. +# Disable LTO for dev builds, even though other optimizations are enabled. +ac_add_options --disable-lto + export MOZILLA_OFFICIAL= ac_add_options --disable-strip View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/001… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/001… You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-149.0a1-16.0-2] fixup! Base Browser's .mozconfigs.
by Pier Angelo Vendrame (@pierov) 07 Apr '26

07 Apr '26
Pier Angelo Vendrame pushed to branch tor-browser-149.0a1-16.0-2 at The Tor Project / Applications / Tor Browser Commits: 34c4abe7 by Pier Angelo Vendrame at 2026-04-07T10:14:08+02:00 fixup! Base Browser's .mozconfigs. BB 31860: Enable LTO. - - - - - 5 changed files: - browser/config/mozconfigs/base-browser - browser/config/mozconfigs/base-browser-android - mozconfig-linux-aarch64-dev - mozconfig-linux-x86_64-dev - mozconfig-macos-dev Changes: ===================================== browser/config/mozconfigs/base-browser ===================================== @@ -12,6 +12,7 @@ export MOZILLA_OFFICIAL=1 ac_add_options --enable-optimize ac_add_options --enable-rust-simd +ac_add_options --enable-lto=cross ac_add_options --disable-unverified-updates ac_add_options --enable-base-browser-update ===================================== browser/config/mozconfigs/base-browser-android ===================================== @@ -5,6 +5,7 @@ export MOZILLA_OFFICIAL=1 ac_add_options --enable-optimize ac_add_options --enable-rust-simd +ac_add_options --enable-lto=cross ac_add_options --enable-application=mobile/android ===================================== mozconfig-linux-aarch64-dev ===================================== @@ -7,6 +7,9 @@ # Moz switched to lld for all Linux targets in Bug 1839739. ac_add_options --enable-linker=lld +# Disable LTO for dev builds, even though other optimizations are enabled. +ac_add_options --disable-lto + export MOZILLA_OFFICIAL= export MOZ_APP_REMOTINGNAME="Tor Browser Dev" ac_add_options --with-branding=browser/branding/tb-nightly ===================================== mozconfig-linux-x86_64-dev ===================================== @@ -7,6 +7,9 @@ # Moz switched to lld for all Linux targets in Bug 1839739. ac_add_options --enable-linker=lld +# Disable LTO for dev builds, even though other optimizations are enabled. +ac_add_options --disable-lto + export MOZILLA_OFFICIAL= export MOZ_APP_REMOTINGNAME="Tor Browser Dev" ac_add_options --with-branding=browser/branding/tb-nightly ===================================== mozconfig-macos-dev ===================================== @@ -4,6 +4,9 @@ # It is only intended to be used when doing incremental macOS builds # during development. +# Disable LTO for dev builds, even though other optimizations are enabled. +ac_add_options --disable-lto + export MOZILLA_OFFICIAL= ac_add_options --disable-strip View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/34c4abe… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/34c4abe… You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1 0
0 0
[Git][tpo/applications/tor-browser-build][main] Bug 41773: Change position of -mindepth in ddmg.sh.
by Pier Angelo Vendrame (@pierov) 07 Apr '26

07 Apr '26
Pier Angelo Vendrame pushed to branch main at The Tor Project / Applications / tor-browser-build Commits: 0906f5cf by Pier Angelo Vendrame at 2026-04-07T08:53:38+02:00 Bug 41773: Change position of -mindepth in ddmg.sh. -mindepth is a global option, therefore it should go before -type. - - - - - 2 changed files: - projects/browser/ddmg.sh - tools/signing/ddmg.sh Changes: ===================================== projects/browser/ddmg.sh ===================================== @@ -24,7 +24,7 @@ newfs_hfs -v "[% c('var/display_name') %]" "$hfsfile" pushd [% src %] -find -type d -mindepth 1 | sed -e 's/^\.\///' | sort | while read dirname; do +find -mindepth 1 -type d | sed -e 's/^\.\///' | sort | while read dirname; do hfsplus "$hfsfile" mkdir "/$dirname" hfsplus "$hfsfile" chmod 0755 "/$dirname" done ===================================== tools/signing/ddmg.sh ===================================== @@ -45,7 +45,7 @@ cd $src_dir # add it back again with the special command to do so. rm -f Applications -find -type d -mindepth 1 | sed -e 's/^\.\///' | sort | while read dirname; do +find -mindepth 1 -type d | sed -e 's/^\.\///' | sort | while read dirname; do hfsplus "$hfsfile" mkdir "/$dirname" hfsplus "$hfsfile" chmod 0755 "/$dirname" done View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/0… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/0… You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1 0
0 0
[Git][tpo/applications/tor-browser-build][maint-15.0] Bug 41742: Make the Mullvad Browser publishing script independent from the BB branch existence
by Pier Angelo Vendrame (@pierov) 07 Apr '26

07 Apr '26
Pier Angelo Vendrame pushed to branch maint-15.0 at The Tor Project / Applications / tor-browser-build Commits: cfd31e66 by hackademix at 2026-04-07T08:50:40+02:00 Bug 41742: Make the Mullvad Browser publishing script independent from the BB branch existence - - - - - 1 changed file: - tools/signing/publish-github.mullvadbrowser Changes: ===================================== tools/signing/publish-github.mullvadbrowser ===================================== @@ -37,7 +37,7 @@ fi pushd >/dev/null ../../git_clones/firefox echo "Fetching $MB_BRANCH and tags..." git fetch --tags "$GL_REMOTE_MULLVAD" "$MB_BRANCH" -git fetch --tags "$GL_REMOTE_TOR" "$BB_BRANCH" +git fetch --tags "$GL_REMOTE_TOR" BB_TAG=$(git tag -l "$BB_BRANCH-build*" | tail -n1) FX_TAG=$(git tag -l "FIREFOX_*${FX_VERSION//\./_}*" "FIREFOX_NIGHTLY_${FX_VERSION//\.0a[0-9]*/}*" | tail -n1) echo "QA build version: $BASE_VERSION" View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/c… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/c… You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1 0
0 0
[Git][tpo/applications/mullvad-browser-update-responses][main] 4 commits: release: new version, 15.0.9 (linux-x86_64)
by Pier Angelo Vendrame (@pierov) 04 Apr '26

04 Apr '26
Pier Angelo Vendrame pushed to branch main at The Tor Project / Applications / mullvad-browser-update-responses Commits: 0d072e43 by Pier Angelo Vendrame at 2026-04-04T18:39:41+02:00 release: new version, 15.0.9 (linux-x86_64) - - - - - f5e57220 by Pier Angelo Vendrame at 2026-04-04T18:39:49+02:00 release: new version, 15.0.9 (macos) - - - - - 46b029d7 by Pier Angelo Vendrame at 2026-04-04T18:39:49+02:00 release: new version, 15.0.9 (windows-x86_64) - - - - - 7cbb9a83 by Pier Angelo Vendrame at 2026-04-04T18:39:49+02:00 release: new version, 15.0.9 - - - - - 31 changed files: - update_1/release/download-linux-x86_64.json - update_1/release/download-macos.json - update_1/release/download-windows-x86_64.json - update_1/release/downloads.json - update_1/release/linux-x86_64/.htaccess - − update_1/release/linux-x86_64/update-15.0.4-15.0.8-linux-x86_64.xml - − update_1/release/linux-x86_64/update-15.0.6-15.0.8-linux-x86_64.xml - + update_1/release/linux-x86_64/update-15.0.6-15.0.9-linux-x86_64.xml - − update_1/release/linux-x86_64/update-15.0.7-15.0.8-linux-x86_64.xml - + update_1/release/linux-x86_64/update-15.0.7-15.0.9-linux-x86_64.xml - + update_1/release/linux-x86_64/update-15.0.8-15.0.9-linux-x86_64.xml - − update_1/release/linux-x86_64/update-15.0.8-linux-x86_64.xml - + update_1/release/linux-x86_64/update-15.0.9-linux-x86_64.xml - update_1/release/macos/.htaccess - − update_1/release/macos/update-15.0.4-15.0.8-macos.xml - − update_1/release/macos/update-15.0.6-15.0.8-macos.xml - + update_1/release/macos/update-15.0.6-15.0.9-macos.xml - − update_1/release/macos/update-15.0.7-15.0.8-macos.xml - + update_1/release/macos/update-15.0.7-15.0.9-macos.xml - + update_1/release/macos/update-15.0.8-15.0.9-macos.xml - − update_1/release/macos/update-15.0.8-macos.xml - + update_1/release/macos/update-15.0.9-macos.xml - update_1/release/windows-x86_64/.htaccess - − update_1/release/windows-x86_64/update-15.0.4-15.0.8-windows-x86_64.xml - − update_1/release/windows-x86_64/update-15.0.6-15.0.8-windows-x86_64.xml - + update_1/release/windows-x86_64/update-15.0.6-15.0.9-windows-x86_64.xml - − update_1/release/windows-x86_64/update-15.0.7-15.0.8-windows-x86_64.xml - + update_1/release/windows-x86_64/update-15.0.7-15.0.9-windows-x86_64.xml - + update_1/release/windows-x86_64/update-15.0.8-15.0.9-windows-x86_64.xml - − update_1/release/windows-x86_64/update-15.0.8-windows-x86_64.xml - + update_1/release/windows-x86_64/update-15.0.9-windows-x86_64.xml The diff was not included because it is too large. View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser-update-respo… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser-update-respo… You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • ...
  • 2043
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.