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
  • ----- 2025 -----
  • 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
  • 18805 discussions
[Git][tpo/applications/tor-browser][tor-browser-102.8.0esr-12.0-1] Bug 41542: Disable the creation of a default profile
by Pier Angelo Vendrame (@pierov) 16 Feb '23

16 Feb '23
Pier Angelo Vendrame pushed to branch tor-browser-102.8.0esr-12.0-1 at The Tor Project / Applications / Tor Browser Commits: 80a1167e by Pier Angelo Vendrame at 2023-02-16T08:35:36+01:00 Bug 41542: Disable the creation of a default profile Firefox creates a profile as a fallback for old versions. However, we do not need this, so we want to prevent Firefox from creating the related directories. We comment out the code, but should Mozilla be interested in a compile-time flag, we could rewrite the patch to add one. See also https://bugzilla.mozilla.org/show_bug.cgi?id=1770174. - - - - - 1 changed file: - toolkit/profile/nsToolkitProfileService.cpp Changes: ===================================== toolkit/profile/nsToolkitProfileService.cpp ===================================== @@ -1587,6 +1587,12 @@ nsresult nsToolkitProfileService::SelectStartupProfile( rv = CreateDefaultProfile(getter_AddRefs(mCurrent)); if (NS_SUCCEEDED(rv)) { + // tor-browser#41542: We do not need to support legacy versions. + // For now, we just use an ifdef, but we could write a patch to disable + // this behavior through a build-time flag, should Mozilla be interested + // in taking it. + // See also https://bugzilla.mozilla.org/show_bug.cgi?id=1770174 +#ifndef BASE_BROWSER // If there is only one profile and it isn't meant to be the profile that // older versions of Firefox use then we must create a default profile // for older versions of Firefox to avoid the existing profile being @@ -1598,6 +1604,7 @@ nsresult nsToolkitProfileService::SelectStartupProfile( getter_AddRefs(newProfile)); SetNormalDefault(newProfile); } +#endif rv = Flush(); NS_ENSURE_SUCCESS(rv, rv); View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/80a1167… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/80a1167… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][base-browser-102.8.0esr-12.0-1] Bug 41542: Disable the creation of a default profile
by Pier Angelo Vendrame (@pierov) 16 Feb '23

16 Feb '23
Pier Angelo Vendrame pushed to branch base-browser-102.8.0esr-12.0-1 at The Tor Project / Applications / Tor Browser Commits: 95267ce7 by Pier Angelo Vendrame at 2023-02-16T08:34:57+01:00 Bug 41542: Disable the creation of a default profile Firefox creates a profile as a fallback for old versions. However, we do not need this, so we want to prevent Firefox from creating the related directories. We comment out the code, but should Mozilla be interested in a compile-time flag, we could rewrite the patch to add one. See also https://bugzilla.mozilla.org/show_bug.cgi?id=1770174. - - - - - 1 changed file: - toolkit/profile/nsToolkitProfileService.cpp Changes: ===================================== toolkit/profile/nsToolkitProfileService.cpp ===================================== @@ -1578,6 +1578,12 @@ nsresult nsToolkitProfileService::SelectStartupProfile( rv = CreateDefaultProfile(getter_AddRefs(mCurrent)); if (NS_SUCCEEDED(rv)) { + // tor-browser#41542: We do not need to support legacy versions. + // For now, we just use an ifdef, but we could write a patch to disable + // this behavior through a build-time flag, should Mozilla be interested + // in taking it. + // See also https://bugzilla.mozilla.org/show_bug.cgi?id=1770174 +#ifndef BASE_BROWSER // If there is only one profile and it isn't meant to be the profile that // older versions of Firefox use then we must create a default profile // for older versions of Firefox to avoid the existing profile being @@ -1589,6 +1595,7 @@ nsresult nsToolkitProfileService::SelectStartupProfile( getter_AddRefs(newProfile)); SetNormalDefault(newProfile); } +#endif rv = Flush(); NS_ENSURE_SUCCESS(rv, rv); View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/95267ce… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/95267ce… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-update-responses][main] release: new version, 12.0.3
by Richard Pospesel (@richard) 15 Feb '23

15 Feb '23
Richard Pospesel pushed to branch main at The Tor Project / Applications / Tor Browser update responses Commits: b61c302e by Richard Pospesel at 2023-02-15T21:39:23+00:00 release: new version, 12.0.3 - - - - - 29 changed files: - update_3/release/.htaccess - − update_3/release/12.0.1-12.0.2-linux32-ALL.xml - − update_3/release/12.0.1-12.0.2-linux64-ALL.xml - − update_3/release/12.0.1-12.0.2-macos-ALL.xml - − update_3/release/12.0.1-12.0.2-win32-ALL.xml - − update_3/release/12.0.1-12.0.2-win64-ALL.xml - + update_3/release/12.0.2-12.0.3-linux32-ALL.xml - + update_3/release/12.0.2-12.0.3-linux64-ALL.xml - + update_3/release/12.0.2-12.0.3-win32-ALL.xml - + update_3/release/12.0.2-12.0.3-win64-ALL.xml - − update_3/release/12.0.2-linux32-ALL.xml - − update_3/release/12.0.2-linux64-ALL.xml - − update_3/release/12.0.2-macos-ALL.xml - − update_3/release/12.0.2-win32-ALL.xml - − update_3/release/12.0.2-win64-ALL.xml - + update_3/release/12.0.3-linux32-ALL.xml - + update_3/release/12.0.3-linux64-ALL.xml - + update_3/release/12.0.3-win32-ALL.xml - + update_3/release/12.0.3-win64-ALL.xml - 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 Changes: ===================================== update_3/release/.htaccess ===================================== @@ -7,28 +7,22 @@ RewriteRule ^[^/]+/10\..*/.* https://aus1.torproject.org/torbrowser/update_pre12 RewriteRule ^[^/]+/11\.0.*/.* https://aus1.torproject.org/torbrowser/update_pre12.0/release/$0 [last] RewriteRule ^[^/]+/11\.5/.* https://aus1.torproject.org/torbrowser/update_pre12.0/release/$0 [last] RewriteRule ^[^/]+/11\.5\.[01234567]/.* https://aus1.torproject.org/torbrowser/update_pre12.0/release/$0 [last] -RewriteRule ^[^/]+/12.0.2/ no-update.xml [last] -RewriteRule ^Linux_x86-gcc3/12.0.1/ALL 12.0.1-12.0.2-linux32-ALL.xml [last] -RewriteRule ^Linux_x86-gcc3/[^/]+/ALL 12.0.2-linux32-ALL.xml [last] -RewriteRule ^Linux_x86-gcc3/ 12.0.2-linux32-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/12.0.1/ALL 12.0.1-12.0.2-linux64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/[^/]+/ALL 12.0.2-linux64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/ 12.0.2-linux64-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/12.0.1/ALL 12.0.1-12.0.2-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/[^/]+/ALL 12.0.2-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/ 12.0.2-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/12.0.1/ALL 12.0.1-12.0.2-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/[^/]+/ALL 12.0.2-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/ 12.0.2-macos-ALL.xml [last] -RewriteRule ^WINNT_x86-gcc3/12.0.1/ALL 12.0.1-12.0.2-win32-ALL.xml [last] -RewriteRule ^WINNT_x86-gcc3/[^/]+/ALL 12.0.2-win32-ALL.xml [last] -RewriteRule ^WINNT_x86-gcc3/ 12.0.2-win32-ALL.xml [last] -RewriteRule ^WINNT_x86-gcc3-x86/12.0.1/ALL 12.0.1-12.0.2-win32-ALL.xml [last] -RewriteRule ^WINNT_x86-gcc3-x86/[^/]+/ALL 12.0.2-win32-ALL.xml [last] -RewriteRule ^WINNT_x86-gcc3-x86/ 12.0.2-win32-ALL.xml [last] -RewriteRule ^WINNT_x86-gcc3-x64/12.0.1/ALL 12.0.1-12.0.2-win32-ALL.xml [last] -RewriteRule ^WINNT_x86-gcc3-x64/[^/]+/ALL 12.0.2-win32-ALL.xml [last] -RewriteRule ^WINNT_x86-gcc3-x64/ 12.0.2-win32-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/12.0.1/ALL 12.0.1-12.0.2-win64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/[^/]+/ALL 12.0.2-win64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/ 12.0.2-win64-ALL.xml [last] +RewriteRule ^[^/]+/12.0.3/ no-update.xml [last] +RewriteRule ^Linux_x86-gcc3/12.0.2/ALL 12.0.2-12.0.3-linux32-ALL.xml [last] +RewriteRule ^Linux_x86-gcc3/[^/]+/ALL 12.0.3-linux32-ALL.xml [last] +RewriteRule ^Linux_x86-gcc3/ 12.0.3-linux32-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/12.0.2/ALL 12.0.2-12.0.3-linux64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/[^/]+/ALL 12.0.3-linux64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/ 12.0.3-linux64-ALL.xml [last] +RewriteRule ^WINNT_x86-gcc3/12.0.2/ALL 12.0.2-12.0.3-win32-ALL.xml [last] +RewriteRule ^WINNT_x86-gcc3/[^/]+/ALL 12.0.3-win32-ALL.xml [last] +RewriteRule ^WINNT_x86-gcc3/ 12.0.3-win32-ALL.xml [last] +RewriteRule ^WINNT_x86-gcc3-x86/12.0.2/ALL 12.0.2-12.0.3-win32-ALL.xml [last] +RewriteRule ^WINNT_x86-gcc3-x86/[^/]+/ALL 12.0.3-win32-ALL.xml [last] +RewriteRule ^WINNT_x86-gcc3-x86/ 12.0.3-win32-ALL.xml [last] +RewriteRule ^WINNT_x86-gcc3-x64/12.0.2/ALL 12.0.2-12.0.3-win32-ALL.xml [last] +RewriteRule ^WINNT_x86-gcc3-x64/[^/]+/ALL 12.0.3-win32-ALL.xml [last] +RewriteRule ^WINNT_x86-gcc3-x64/ 12.0.3-win32-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/12.0.2/ALL 12.0.2-12.0.3-win64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/[^/]+/ALL 12.0.3-win64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/ 12.0.3-win64-ALL.xml [last] ===================================== update_3/release/12.0.1-12.0.2-linux32-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="12.0.2" appVersion="12.0.2" platformVersion="102.7.0" buildID="20230702030101" detailsURL="https://blog.torproject.org/new-release-tor-browser-1202" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-1202" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.0.2/tor-browser-linux32-12.0.…" hashFunction="SHA512" hashValue="0b4a3125aa1c6b7dbfad74758fe1d169d9a683de4bbec2b183a7786d5842f89ae9034673d86e95bdb48dc3097f45ba60ccb65e2ae7b7123dd9ea9d4322341d42" size="110837215" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.0.2/tor-browser-linux32-12.0.…" hashFunction="SHA512" hashValue="82f9d0e93e2cdbad1abb6336eca73975c7954e5e6c2ea7c1b983cffd7fb2d2b0beb9fb9b8d15fabec568fdc5a990cb36b26b2a4c44d9179be2b5ca0c360fc8b2" size="7280783" type="partial"></patch></update></updates> ===================================== update_3/release/12.0.1-12.0.2-linux64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="12.0.2" appVersion="12.0.2" platformVersion="102.7.0" buildID="20230702030101" detailsURL="https://blog.torproject.org/new-release-tor-browser-1202" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-1202" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.0.2/tor-browser-linux64-12.0.…" hashFunction="SHA512" hashValue="34aa34a25b2743ee23594ef5737e5b386cbc9bfcc7a1da9aa087e6fe43b4a74f1fa1e29f7b8e883b1a8ec37f776379897da57c092b201dd41780c3bee6c76caf" size="110110155" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.0.2/tor-browser-linux64-12.0.…" hashFunction="SHA512" hashValue="d0c615d99d204a088bf1427628b9e69b9188b22f4a175f85fa75da48f960026ef3889b6515c5c373b10e7d70cf1b90872d7adfa0cdb834028d002097a80e4d2b" size="6676074" type="partial"></patch></update></updates> ===================================== update_3/release/12.0.1-12.0.2-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="12.0.2" appVersion="12.0.2" platformVersion="102.7.0" buildID="20230702030101" detailsURL="https://blog.torproject.org/new-release-tor-browser-1202" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-1202" minSupportedOSVersion="16.0.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.0.2/tor-browser-macos-12.0.2_…" hashFunction="SHA512" hashValue="be63448295e3472111010869b7eb9200d44152c2d4e0ea13db23ef320437c7902eb46679b4d81c9858e76649422d2965f53fbd00fbf463495be38941deb7d4c9" size="140301438" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.0.2/tor-browser-macos-12.0.1-…" hashFunction="SHA512" hashValue="d5038a8e3fa0205138a8deb8f8ccaf551eba766aaa575cac9cb647db5293dc74fcc7af10dc186f4aa8c764659829327c681bc06e118b07e624ca9c47db6020d3" size="77792492" type="partial"></patch></update></updates> ===================================== update_3/release/12.0.1-12.0.2-win32-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="12.0.2" appVersion="12.0.2" platformVersion="102.7.0" buildID="20230702030101" detailsURL="https://blog.torproject.org/new-release-tor-browser-1202" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-1202" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.0.2/tor-browser-win32-12.0.2_…" hashFunction="SHA512" hashValue="867314fab520ffa8766b2586ca6d380cf2bf44c6324cf55f2050722c834f35decf409f4abc65d6db74024271c516348421625fb309331162a1310a672418b0d5" size="98205386" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.0.2/tor-browser-win32-12.0.1-…" hashFunction="SHA512" hashValue="3de7ad5147079d3bc94dbd4524d622dad17bd56886b9e4bd1ac08aa414893dfd37a5f637f69b05cbc62288d6d5429f46781be3a612c4cd1c2b39469d8d34f7b5" size="8266994" type="partial"></patch></update></updates> ===================================== update_3/release/12.0.1-12.0.2-win64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="12.0.2" appVersion="12.0.2" platformVersion="102.7.0" buildID="20230702030101" detailsURL="https://blog.torproject.org/new-release-tor-browser-1202" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-1202" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.0.2/tor-browser-win64-12.0.2_…" hashFunction="SHA512" hashValue="d2d889ad07ac29834eeb8a9a9872bd2553324d46bf15775a4d587f56c29a0a78c568d64641cee3da265cb5309d7b97d4f808ec4d533912fd0d33dcaad080d75a" size="98581284" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.0.2/tor-browser-win64-12.0.1-…" hashFunction="SHA512" hashValue="35a598102615806ba05cd94c41d96e44b750573b5f472397170025f54d8a687f58d4587b50eea5a8dea4cb78478c05d068c8531fae1b3ea3d034bfdcc618de8c" size="7549636" type="partial"></patch></update></updates> ===================================== update_3/release/12.0.2-12.0.3-linux32-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="12.0.3" appVersion="12.0.3" platformVersion="102.8.0" buildID="20230702040101" detailsURL="https://blog.torproject.org/new-release-tor-browser-1203" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-1203" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.0.3/tor-browser-linux32-12.0.…" hashFunction="SHA512" hashValue="0078c6ec3919afbd2c47962bd4f82b2abec0465b94fc3583f199e82e89ebab37485b4c9b6eef14102a8fb46b2d70622e992c39e3de4260c7c641d148cbf67ad5" size="111895711" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.0.3/tor-browser-linux32-12.0.…" hashFunction="SHA512" hashValue="46da428c21e90b5e74597e37e4e8b580e9e8273c23f2f9770405f46f9618457cbdef263c765edc4483a4c782f31c4a17b1f1728045e20c4f8b65bcb99cbbc8e8" size="13771797" type="partial"></patch></update></updates> ===================================== update_3/release/12.0.2-12.0.3-linux64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="12.0.3" appVersion="12.0.3" platformVersion="102.8.0" buildID="20230702040101" detailsURL="https://blog.torproject.org/new-release-tor-browser-1203" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-1203" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.0.3/tor-browser-linux64-12.0.…" hashFunction="SHA512" hashValue="d89eb52bb58833244a36e0897fcd7ae28f5f558653218f01dc0ca5d43a80c42ad4ce332d32d5392b2d04416610aa1c5e03d62490d65dc1fa3ca6185e0ea272a4" size="111170259" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.0.3/tor-browser-linux64-12.0.…" hashFunction="SHA512" hashValue="34229086afa7fc6b2c3f8861e0bfe7148d032f537f535f95ea520d5467208537e796bb6ec9a67e62140c0412db9871382e0aa2747f8af87ee4dae8b321b9f052" size="13520266" type="partial"></patch></update></updates> ===================================== update_3/release/12.0.2-12.0.3-win32-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="12.0.3" appVersion="12.0.3" platformVersion="102.8.0" buildID="20230702040101" detailsURL="https://blog.torproject.org/new-release-tor-browser-1203" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-1203" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.0.3/tor-browser-win32-12.0.3_…" hashFunction="SHA512" hashValue="cfe86b0dd881c7bc6afe21167534efff81f8097dd0a25b00b062433b263bd90b8cf2619dea61fe13eb3288f524cd7f4cd9905a6a1c69e852a9d0dff4a90ea02d" size="99263510" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.0.3/tor-browser-win32-12.0.2-…" hashFunction="SHA512" hashValue="f318a671016dd27fa3e535d5ad701a2d241de5494210a602d6310d53bab1569772b8ce9235847a095b2845e23b94dbbe78cd0bf36a0efc32af10d76c414e1126" size="14659065" type="partial"></patch></update></updates> ===================================== update_3/release/12.0.2-12.0.3-win64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="12.0.3" appVersion="12.0.3" platformVersion="102.8.0" buildID="20230702040101" detailsURL="https://blog.torproject.org/new-release-tor-browser-1203" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-1203" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.0.3/tor-browser-win64-12.0.3_…" hashFunction="SHA512" hashValue="036506cb54898acfa19bad083b6f23dbf0ab4f15ba5cfaac6483ac77d99cab048c723592ca9aef5d51bf0509ae66f5a3ff77753c6636009c03d89a202e532cac" size="99635364" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.0.3/tor-browser-win64-12.0.2-…" hashFunction="SHA512" hashValue="3926615f4752203e7f8a314021808b446961f576c2830b75488e042b4290f123a06cc5f1fc3d7af638ee213e996cc78d3a6395117ee0930a3672b8a1d523bd25" size="14006159" type="partial"></patch></update></updates> ===================================== update_3/release/12.0.2-linux32-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="12.0.2" appVersion="12.0.2" platformVersion="102.7.0" buildID="20230702030101" detailsURL="https://blog.torproject.org/new-release-tor-browser-1202" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-1202" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.0.2/tor-browser-linux32-12.0.…" hashFunction="SHA512" hashValue="0b4a3125aa1c6b7dbfad74758fe1d169d9a683de4bbec2b183a7786d5842f89ae9034673d86e95bdb48dc3097f45ba60ccb65e2ae7b7123dd9ea9d4322341d42" size="110837215" type="complete"></patch></update></updates> ===================================== update_3/release/12.0.2-linux64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="12.0.2" appVersion="12.0.2" platformVersion="102.7.0" buildID="20230702030101" detailsURL="https://blog.torproject.org/new-release-tor-browser-1202" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-1202" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.0.2/tor-browser-linux64-12.0.…" hashFunction="SHA512" hashValue="34aa34a25b2743ee23594ef5737e5b386cbc9bfcc7a1da9aa087e6fe43b4a74f1fa1e29f7b8e883b1a8ec37f776379897da57c092b201dd41780c3bee6c76caf" size="110110155" type="complete"></patch></update></updates> ===================================== update_3/release/12.0.2-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="12.0.2" appVersion="12.0.2" platformVersion="102.7.0" buildID="20230702030101" detailsURL="https://blog.torproject.org/new-release-tor-browser-1202" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-1202" minSupportedOSVersion="16.0.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.0.2/tor-browser-macos-12.0.2_…" hashFunction="SHA512" hashValue="be63448295e3472111010869b7eb9200d44152c2d4e0ea13db23ef320437c7902eb46679b4d81c9858e76649422d2965f53fbd00fbf463495be38941deb7d4c9" size="140301438" type="complete"></patch></update></updates> ===================================== update_3/release/12.0.2-win32-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="12.0.2" appVersion="12.0.2" platformVersion="102.7.0" buildID="20230702030101" detailsURL="https://blog.torproject.org/new-release-tor-browser-1202" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-1202" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.0.2/tor-browser-win32-12.0.2_…" hashFunction="SHA512" hashValue="867314fab520ffa8766b2586ca6d380cf2bf44c6324cf55f2050722c834f35decf409f4abc65d6db74024271c516348421625fb309331162a1310a672418b0d5" size="98205386" type="complete"></patch></update></updates> ===================================== update_3/release/12.0.2-win64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="12.0.2" appVersion="12.0.2" platformVersion="102.7.0" buildID="20230702030101" detailsURL="https://blog.torproject.org/new-release-tor-browser-1202" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-1202" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.0.2/tor-browser-win64-12.0.2_…" hashFunction="SHA512" hashValue="d2d889ad07ac29834eeb8a9a9872bd2553324d46bf15775a4d587f56c29a0a78c568d64641cee3da265cb5309d7b97d4f808ec4d533912fd0d33dcaad080d75a" size="98581284" type="complete"></patch></update></updates> ===================================== update_3/release/12.0.3-linux32-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="12.0.3" appVersion="12.0.3" platformVersion="102.8.0" buildID="20230702040101" detailsURL="https://blog.torproject.org/new-release-tor-browser-1203" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-1203" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.0.3/tor-browser-linux32-12.0.…" hashFunction="SHA512" hashValue="0078c6ec3919afbd2c47962bd4f82b2abec0465b94fc3583f199e82e89ebab37485b4c9b6eef14102a8fb46b2d70622e992c39e3de4260c7c641d148cbf67ad5" size="111895711" type="complete"></patch></update></updates> ===================================== update_3/release/12.0.3-linux64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="12.0.3" appVersion="12.0.3" platformVersion="102.8.0" buildID="20230702040101" detailsURL="https://blog.torproject.org/new-release-tor-browser-1203" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-1203" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.0.3/tor-browser-linux64-12.0.…" hashFunction="SHA512" hashValue="d89eb52bb58833244a36e0897fcd7ae28f5f558653218f01dc0ca5d43a80c42ad4ce332d32d5392b2d04416610aa1c5e03d62490d65dc1fa3ca6185e0ea272a4" size="111170259" type="complete"></patch></update></updates> ===================================== update_3/release/12.0.3-win32-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="12.0.3" appVersion="12.0.3" platformVersion="102.8.0" buildID="20230702040101" detailsURL="https://blog.torproject.org/new-release-tor-browser-1203" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-1203" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.0.3/tor-browser-win32-12.0.3_…" hashFunction="SHA512" hashValue="cfe86b0dd881c7bc6afe21167534efff81f8097dd0a25b00b062433b263bd90b8cf2619dea61fe13eb3288f524cd7f4cd9905a6a1c69e852a9d0dff4a90ea02d" size="99263510" type="complete"></patch></update></updates> ===================================== update_3/release/12.0.3-win64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="12.0.3" appVersion="12.0.3" platformVersion="102.8.0" buildID="20230702040101" detailsURL="https://blog.torproject.org/new-release-tor-browser-1203" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-1203" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/12.0.3/tor-browser-win64-12.0.3_…" hashFunction="SHA512" hashValue="036506cb54898acfa19bad083b6f23dbf0ab4f15ba5cfaac6483ac77d99cab048c723592ca9aef5d51bf0509ae66f5a3ff77753c6636009c03d89a202e532cac" size="99635364" type="complete"></patch></update></updates> ===================================== update_3/release/download-android-aarch64.json ===================================== @@ -1 +1 @@ -{"binary":"https://dist.torproject.org/torbrowser/12.0.2/tor-browser-12.0.2-android-aa…","git_tag":"tbb-12.0.2-build1","sig":"https://dist.torproject.org/torbrowser/12.0.2/tor-browser-12.0.2-android-aa…","version":"12.0.2"} +{"binary":"https://dist.torproject.org/torbrowser/12.0.3/tor-browser-12.0.3-android-aa…","git_tag":"tbb-12.0.3-build1","sig":"https://dist.torproject.org/torbrowser/12.0.3/tor-browser-12.0.3-android-aa…","version":"12.0.3"} \ No newline at end of file ===================================== update_3/release/download-android-armv7.json ===================================== @@ -1 +1 @@ -{"binary":"https://dist.torproject.org/torbrowser/12.0.2/tor-browser-12.0.2-android-ar…","git_tag":"tbb-12.0.2-build1","sig":"https://dist.torproject.org/torbrowser/12.0.2/tor-browser-12.0.2-android-ar…","version":"12.0.2"} +{"binary":"https://dist.torproject.org/torbrowser/12.0.3/tor-browser-12.0.3-android-ar…","git_tag":"tbb-12.0.3-build1","sig":"https://dist.torproject.org/torbrowser/12.0.3/tor-browser-12.0.3-android-ar…","version":"12.0.3"} \ No newline at end of file ===================================== update_3/release/download-android-x86.json ===================================== @@ -1 +1 @@ -{"binary":"https://dist.torproject.org/torbrowser/12.0.2/tor-browser-12.0.2-android-x8…","git_tag":"tbb-12.0.2-build1","sig":"https://dist.torproject.org/torbrowser/12.0.2/tor-browser-12.0.2-android-x8…","version":"12.0.2"} \ No newline at end of file +{"binary":"https://dist.torproject.org/torbrowser/12.0.3/tor-browser-12.0.3-android-x8…","git_tag":"tbb-12.0.3-build1","sig":"https://dist.torproject.org/torbrowser/12.0.3/tor-browser-12.0.3-android-x8…","version":"12.0.3"} \ No newline at end of file ===================================== update_3/release/download-android-x86_64.json ===================================== @@ -1 +1 @@ -{"binary":"https://dist.torproject.org/torbrowser/12.0.2/tor-browser-12.0.2-android-x8…","git_tag":"tbb-12.0.2-build1","sig":"https://dist.torproject.org/torbrowser/12.0.2/tor-browser-12.0.2-android-x8…","version":"12.0.2"} +{"binary":"https://dist.torproject.org/torbrowser/12.0.3/tor-browser-12.0.3-android-x8…","git_tag":"tbb-12.0.3-build1","sig":"https://dist.torproject.org/torbrowser/12.0.3/tor-browser-12.0.3-android-x8…","version":"12.0.3"} \ No newline at end of file ===================================== update_3/release/download-linux-i686.json ===================================== @@ -1 +1 @@ -{"binary":"https://dist.torproject.org/torbrowser/12.0.2/tor-browser-linux32-12.0.2_AL…","git_tag":"tbb-12.0.2-build1","sig":"https://dist.torproject.org/torbrowser/12.0.2/tor-browser-linux32-12.0.2_AL…","version":"12.0.2"} \ No newline at end of file +{"binary":"https://dist.torproject.org/torbrowser/12.0.3/tor-browser-linux32-12.0.3_AL…","git_tag":"tbb-12.0.3-build1","sig":"https://dist.torproject.org/torbrowser/12.0.3/tor-browser-linux32-12.0.3_AL…","version":"12.0.3"} \ No newline at end of file ===================================== update_3/release/download-linux-x86_64.json ===================================== @@ -1 +1 @@ -{"binary":"https://dist.torproject.org/torbrowser/12.0.2/tor-browser-linux64-12.0.2_AL…","git_tag":"tbb-12.0.2-build1","sig":"https://dist.torproject.org/torbrowser/12.0.2/tor-browser-linux64-12.0.2_AL…","version":"12.0.2"} \ No newline at end of file +{"binary":"https://dist.torproject.org/torbrowser/12.0.3/tor-browser-linux64-12.0.3_AL…","git_tag":"tbb-12.0.3-build1","sig":"https://dist.torproject.org/torbrowser/12.0.3/tor-browser-linux64-12.0.3_AL…","version":"12.0.3"} \ No newline at end of file ===================================== update_3/release/download-macos.json ===================================== @@ -1 +1 @@ -{"binary":"https://dist.torproject.org/torbrowser/12.0.2/TorBrowser-12.0.2-macos_ALL.d…","git_tag":"tbb-12.0.2-build1","sig":"https://dist.torproject.org/torbrowser/12.0.2/TorBrowser-12.0.2-macos_ALL.d…","version":"12.0.2"} \ No newline at end of file +{"binary":"https://dist.torproject.org/torbrowser/12.0.3/TorBrowser-12.0.3-macos_ALL.d…","git_tag":"tbb-12.0.3-build1","sig":"https://dist.torproject.org/torbrowser/12.0.3/TorBrowser-12.0.3-macos_ALL.d…","version":"12.0.3"} \ No newline at end of file ===================================== update_3/release/download-windows-i686.json ===================================== @@ -1 +1 @@ -{"binary":"https://dist.torproject.org/torbrowser/12.0.2/torbrowser-install-12.0.2_ALL…","git_tag":"tbb-12.0.2-build1","sig":"https://dist.torproject.org/torbrowser/12.0.2/torbrowser-install-12.0.2_ALL…","version":"12.0.2"} \ No newline at end of file +{"binary":"https://dist.torproject.org/torbrowser/12.0.3/torbrowser-install-12.0.3_ALL…","git_tag":"tbb-12.0.3-build1","sig":"https://dist.torproject.org/torbrowser/12.0.3/torbrowser-install-12.0.3_ALL…","version":"12.0.3"} \ No newline at end of file ===================================== update_3/release/download-windows-x86_64.json ===================================== @@ -1 +1 @@ -{"binary":"https://dist.torproject.org/torbrowser/12.0.2/torbrowser-install-win64-12.0…","git_tag":"tbb-12.0.2-build1","sig":"https://dist.torproject.org/torbrowser/12.0.2/torbrowser-install-win64-12.0…","version":"12.0.2"} \ No newline at end of file +{"binary":"https://dist.torproject.org/torbrowser/12.0.3/torbrowser-install-win64-12.0…","git_tag":"tbb-12.0.3-build1","sig":"https://dist.torproject.org/torbrowser/12.0.3/torbrowser-install-win64-12.0…","version":"12.0.3"} \ No newline at end of file ===================================== update_3/release/downloads.json ===================================== @@ -1 +1 @@ -{"downloads":{"linux32":{"ALL":{"binary":"https://dist.torproject.org/torbrowser/12.0.2/tor-browser-linux32-12.0.2_AL…","sig":"https://dist.torproject.org/torbrowser/12.0.2/tor-browser-linux32-12.0.2_AL…"}},"linux64":{"ALL":{"binary":"https://dist.torproject.org/torbrowser/12.0.2/tor-browser-linux64-12.0.2_AL…","sig":"https://dist.torproject.org/torbrowser/12.0.2/tor-browser-linux64-12.0.2_AL…"}},"macos":{"ALL":{"binary":"https://dist.torproject.org/torbrowser/12.0.2/TorBrowser-12.0.2-macos_ALL.d…","sig":"https://dist.torproject.org/torbrowser/12.0.2/TorBrowser-12.0.2-macos_ALL.d…"}},"win32":{"ALL":{"binary":"https://dist.torproject.org/torbrowser/12.0.2/torbrowser-install-12.0.2_ALL…","sig":"https://dist.torproject.org/torbrowser/12.0.2/torbrowser-install-12.0.2_ALL…"}},"win64":{"ALL":{"binary":"https://dist.torproject.org/torbrowser/12.0.2/torbrowser-install-win64-12.0…","sig":"https://dist.torproject.org/torbrowser/12.0.2/torbrowser-install-win64-12.0…"}}},"tag":"tbb-12.0.2-build1","version":"12.0.2"} \ No newline at end of file +{"downloads":{"linux32":{"ALL":{"binary":"https://dist.torproject.org/torbrowser/12.0.3/tor-browser-linux32-12.0.3_AL…","sig":"https://dist.torproject.org/torbrowser/12.0.3/tor-browser-linux32-12.0.3_AL…"}},"linux64":{"ALL":{"binary":"https://dist.torproject.org/torbrowser/12.0.3/tor-browser-linux64-12.0.3_AL…","sig":"https://dist.torproject.org/torbrowser/12.0.3/tor-browser-linux64-12.0.3_AL…"}},"macos":{"ALL":{"binary":"https://dist.torproject.org/torbrowser/12.0.3/TorBrowser-12.0.3-macos_ALL.d…","sig":"https://dist.torproject.org/torbrowser/12.0.3/TorBrowser-12.0.3-macos_ALL.d…"}},"win32":{"ALL":{"binary":"https://dist.torproject.org/torbrowser/12.0.3/torbrowser-install-12.0.3_ALL…","sig":"https://dist.torproject.org/torbrowser/12.0.3/torbrowser-install-12.0.3_ALL…"}},"win64":{"ALL":{"binary":"https://dist.torproject.org/torbrowser/12.0.3/torbrowser-install-win64-12.0…","sig":"https://dist.torproject.org/torbrowser/12.0.3/torbrowser-install-win64-12.0…"}}},"tag":"tbb-12.0.3-build1","version":"12.0.3"} \ No newline at end of file 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.
1 0
0 0
[Git][tpo/applications/tor-browser-build][main] Bug 40784: Fix var_p/nightly_torbrowser_incremental_from after #40737
by Richard Pospesel (@richard) 15 Feb '23

15 Feb '23
Richard Pospesel pushed to branch main at The Tor Project / Applications / tor-browser-build Commits: 9ba64275 by Nicolas Vigier at 2023-02-15T18:43:09+00:00 Bug 40784: Fix var_p/nightly_torbrowser_incremental_from after #40737 - - - - - 1 changed file: - rbm.conf Changes: ===================================== rbm.conf ===================================== @@ -661,7 +661,8 @@ gpg_allow_expired_keys: 1 }, nightly_torbrowser_incremental_from => sub { my ($project, $options) = @_; - my $nightly_dir = project_config($project, 'basedir', $options) . '/nightly'; + my $nightly_dir = project_config($project, 'basedir', $options) . '/' . + project_config($project, 'var/projectname', $options) . '/nightly'; my $current_version = project_config($project, 'var/torbrowser_version', $options); use Path::Tiny; return [] unless -d $nightly_dir; View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/9… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/9… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-build][maint-12.0] Bug 40782: Fetch signatures from tb-build-04 and tb-build-05
by Richard Pospesel (@richard) 15 Feb '23

15 Feb '23
Richard Pospesel pushed to branch maint-12.0 at The Tor Project / Applications / tor-browser-build Commits: 851a5e7c by Nicolas Vigier at 2023-02-15T18:41:27+00:00 Bug 40782: Fetch signatures from tb-build-04 and tb-build-05 - - - - - 1 changed file: - tools/signing/download-unsigned-sha256sums-gpg-signatures-from-people-tpo Changes: ===================================== tools/signing/download-unsigned-sha256sums-gpg-signatures-from-people-tpo ===================================== @@ -9,10 +9,18 @@ do do tmpfile=$(mktemp) chmod 644 "$tmpfile" - wget -q -O "$tmpfile" "https://people.torproject.org/~$builder/builds/$tbb_version-build$tbb_versi…" || \ - wget -q -O "$tmpfile" "https://people.torproject.org/~$builder/builds/tor-browser/$tbb_version-bui…" || \ - wget -q -O "$tmpfile" "https://tb-build-03.torproject.org/~$builder/builds/tor-browser/$tbb_versio…" && \ - mv "$tmpfile" "$signed_version_dir/$file-$builder" && echo "Added $file-$builder" + for url in \ + "https://people.torproject.org/~$builder/builds/$tbb_version-build$tbb_versi…" \ + "https://people.torproject.org/~$builder/builds/tor-browser/$tbb_version-bui…" \ + "https://tb-build-04.torproject.org/~$builder/builds/$tbb_version_type/unsig…" \ + "https://tb-build-05.torproject.org/~$builder/builds/$tbb_version_type/unsig…" + do + if wget -q -O "$tmpfile" "$url"; then + mv "$tmpfile" "$signed_version_dir/$file-$builder" + echo "Added $file-$builder" + break + fi + done done done exit 0 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.
1 0
0 0
[Git][tpo/applications/tor-browser-build][main] 2 commits: Bug 40782: Fetch signatures from tb-build-04 and tb-build-05
by Richard Pospesel (@richard) 15 Feb '23

15 Feb '23
Richard Pospesel pushed to branch main at The Tor Project / Applications / tor-browser-build Commits: 4003aeea by Nicolas Vigier at 2023-02-14T01:18:32+01:00 Bug 40782: Fetch signatures from tb-build-04 and tb-build-05 - - - - - 638c690d by Nicolas Vigier at 2023-02-14T01:21:34+01:00 Bug 40783: Use $projectname prefix when downloading signatures Following #40737 the build directory is prefixed with $projectname. - - - - - 1 changed file: - tools/signing/download-unsigned-sha256sums-gpg-signatures-from-people-tpo Changes: ===================================== tools/signing/download-unsigned-sha256sums-gpg-signatures-from-people-tpo ===================================== @@ -9,10 +9,18 @@ do do tmpfile=$(mktemp) chmod 644 "$tmpfile" - wget -q -O "$tmpfile" "https://people.torproject.org/~$builder/builds/$tbb_version-build$tbb_versi…" || \ - wget -q -O "$tmpfile" "https://people.torproject.org/~$builder/builds/tor-browser/$tbb_version-bui…" || \ - wget -q -O "$tmpfile" "https://tb-build-03.torproject.org/~$builder/builds/tor-browser/$tbb_versio…" && \ - mv "$tmpfile" "$signed_version_dir/$file-$builder" && echo "Added $file-$builder" + for url in \ + "https://people.torproject.org/~$builder/builds/$tbb_version-build$tbb_versi…" \ + "https://people.torproject.org/~$builder/builds/$SIGNING_PROJECTNAME/$tbb_ve…" \ + "https://tb-build-04.torproject.org/~$builder/builds/$SIGNING_PROJECTNAME/$t…" \ + "https://tb-build-05.torproject.org/~$builder/builds/$SIGNING_PROJECTNAME/$t…" + do + if wget -q -O "$tmpfile" "$url"; then + mv "$tmpfile" "$signed_version_dir/$file-$builder" + echo "Added $file-$builder" + break + fi + done done done exit 0 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.
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-102.8.0esr-12.0-1] amend! Bug 8324: Prevent DNS proxy bypasses caused by Drag&Drop
by Richard Pospesel (@richard) 15 Feb '23

15 Feb '23
Richard Pospesel pushed to branch tor-browser-102.8.0esr-12.0-1 at The Tor Project / Applications / Tor Browser Commits: 07121bec by hackademix at 2023-02-15T18:38:54+00:00 amend! Bug 8324: Prevent DNS proxy bypasses caused by Drag&amp;Drop Bug 8324: Prevent DNS proxy bypasses caused by Drag&amp;Drop Bug 41613: Skip Drang &amp; Drop filtering for DNS-safe URLs - - - - - 1 changed file: - toolkit/torbutton/components/dragDropFilter.js Changes: ===================================== toolkit/torbutton/components/dragDropFilter.js ===================================== @@ -113,6 +113,25 @@ DragDropFilter.prototype = { for (let i = 0, count = aDataTransfer.mozItemCount; i < count; ++i) { this.logger.log(3, `Inspecting the data transfer: ${i}.`); const types = aDataTransfer.mozTypesAt(i); + const urlType = "text/x-moz-url"; + // Fallback url type, to be parsed by this browser but not externally + const INTERNAL_FALLBACK = "application/x-torbrowser-opaque"; + if (types.contains(urlType)) { + const links = aDataTransfer.mozGetDataAt(urlType, i); + // Skip DNS-safe URLs (no hostname, e.g. RFC 3966 tel:) + const mayLeakDNS = links.split("\n").some(link => { + try { + return new URL(link).hostname; + } catch (e) { + return false; + } + }); + if (!mayLeakDNS) { + continue; + } + const opaqueKey = OpaqueDrag.store(links, urlType); + aDataTransfer.mozSetDataAt(INTERNAL_FALLBACK, opaqueKey, i); + } for (const type of types) { this.logger.log(3, `Type is: ${type}.`); if (URLISH_TYPES.includes(type)) { @@ -120,14 +139,6 @@ DragDropFilter.prototype = { 3, `Removing transfer data ${aDataTransfer.mozGetDataAt(type, i)}` ); - const urlType = "text/x-moz-url"; - // Fallback url type, to be parsed by this browser but not externally - const INTERNAL_FALLBACK = "application/x-torbrowser-opaque"; - if (types.contains(urlType)) { - const link = aDataTransfer.mozGetDataAt(urlType, i); - const opaqueKey = OpaqueDrag.store(link, urlType); - aDataTransfer.mozSetDataAt(INTERNAL_FALLBACK, opaqueKey, i); - } for (const type of types) { if ( type !== INTERNAL_FALLBACK && View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/07121be… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/07121be… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-102.8.0esr-12.0-1] Bug 41603: Customize the creation of MOZ_SOURCE_URL
by Richard Pospesel (@richard) 15 Feb '23

15 Feb '23
Richard Pospesel pushed to branch tor-browser-102.8.0esr-12.0-1 at The Tor Project / Applications / Tor Browser Commits: f6e9971c by Pier Angelo Vendrame at 2023-02-15T18:21:39+00:00 Bug 41603: Customize the creation of MOZ_SOURCE_URL MOZ_SOURCE_URL is created by combining MOZ_SOURCE_REPO and MOZ_SOURCE_CHANGESET. But the code takes for granted that it refers to a Hg instance, so it combines them as `$MOZ_SOURCE_REPO/rev/$MOZ_SOURCE_CHANGESET`. With this commit, we change this logic to combine them to create a URL that is valid for GitLab. $MOZ_SOURCE_CHANGESET needs to be a commit hash, not a branch or a tag. If that is needed, we could use /-/tree/, instead of /-/commit/. - - - - - 1 changed file: - build/variables.py Changes: ===================================== build/variables.py ===================================== @@ -97,7 +97,7 @@ def source_repo_header(output): output.write("#define MOZ_SOURCE_STAMP %s\n" % changeset) if repo and buildconfig.substs.get("MOZ_INCLUDE_SOURCE_INFO"): - source = "%s/rev/%s" % (repo, changeset) + source = "%s/-/commit/%s" % (repo, changeset) output.write("#define MOZ_SOURCE_REPO %s\n" % repo) output.write("#define MOZ_SOURCE_URL %s\n" % source) View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/f6e9971… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/f6e9971… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][base-browser-102.8.0esr-12.0-1] Bug 41603: Customize the creation of MOZ_SOURCE_URL
by Richard Pospesel (@richard) 15 Feb '23

15 Feb '23
Richard Pospesel pushed to branch base-browser-102.8.0esr-12.0-1 at The Tor Project / Applications / Tor Browser Commits: 002dd17a by Pier Angelo Vendrame at 2023-02-15T18:22:05+00:00 Bug 41603: Customize the creation of MOZ_SOURCE_URL MOZ_SOURCE_URL is created by combining MOZ_SOURCE_REPO and MOZ_SOURCE_CHANGESET. But the code takes for granted that it refers to a Hg instance, so it combines them as `$MOZ_SOURCE_REPO/rev/$MOZ_SOURCE_CHANGESET`. With this commit, we change this logic to combine them to create a URL that is valid for GitLab. $MOZ_SOURCE_CHANGESET needs to be a commit hash, not a branch or a tag. If that is needed, we could use /-/tree/, instead of /-/commit/. - - - - - 1 changed file: - build/variables.py Changes: ===================================== build/variables.py ===================================== @@ -97,7 +97,7 @@ def source_repo_header(output): output.write("#define MOZ_SOURCE_STAMP %s\n" % changeset) if repo and buildconfig.substs.get("MOZ_INCLUDE_SOURCE_INFO"): - source = "%s/rev/%s" % (repo, changeset) + source = "%s/-/commit/%s" % (repo, changeset) output.write("#define MOZ_SOURCE_REPO %s\n" % repo) output.write("#define MOZ_SOURCE_URL %s\n" % source) View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/002dd17… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/002dd17… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-build][maint-12.0] Bug 40764: Embed repo URL and git revision in Firefox
by Richard Pospesel (@richard) 15 Feb '23

15 Feb '23
Richard Pospesel pushed to branch maint-12.0 at The Tor Project / Applications / tor-browser-build Commits: ce346cd9 by Pier Angelo Vendrame at 2023-02-15T18:19:09+00:00 Bug 40764: Embed repo URL and git revision in Firefox They will be visible and clickable in about:buildconfig. - - - - - 2 changed files: - projects/firefox/config - projects/firefox/mozconfig Changes: ===================================== projects/firefox/config ===================================== @@ -19,6 +19,8 @@ var: branding_directory: 'browser/branding/alpha' copyright_year: '[% exec("git show -s --format=%ci").remove("-.*") %]' nightly_updates_osname: '[% c("var/osname") %]' + gitlab_project: https://gitlab.torproject.org/tpo/applications/tor-browser + git_commit: '[% exec("git rev-parse HEAD") %]' deps: - build-essential - unzip ===================================== projects/firefox/mozconfig ===================================== @@ -75,3 +75,6 @@ ac_add_options --with-relative-profile=[% c('var/ProjectName') %]/Data/Browser mk_add_options MOZ_APP_DISPLAYNAME="[% c('var/Project_Name') %]" mk_add_options MOZ_PARALLEL_BUILD=[% c("num_procs") %] +export MOZ_INCLUDE_SOURCE_INFO=1 +export MOZ_SOURCE_REPO="[% c('var/gitlab_project') %]" +export MOZ_SOURCE_CHANGESET=[% c("var/git_commit") %] 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.
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 452
  • 453
  • 454
  • 455
  • 456
  • 457
  • 458
  • ...
  • 1881
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.