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
Download
Threads by month
  • ----- 2025 -----
  • 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

October 2022

  • 2 participants
  • 177 discussions
[builders/tor-browser-build] branch main updated: Bug 40656: Make sign-nightly check for builds from the last 5 days
by gitolite role 21 Oct '22

21 Oct '22
This is an automated email from the git hooks/post-receive script. boklm pushed a commit to branch main in repository builders/tor-browser-build. The following commit(s) were added to refs/heads/main by this push: new edb3024f Bug 40656: Make sign-nightly check for builds from the last 5 days edb3024f is described below commit edb3024faf38b100a7a63792a67316a0f454b79d Author: Nicolas Vigier <boklm(a)torproject.org> AuthorDate: Fri Oct 21 10:47:40 2022 +0200 Bug 40656: Make sign-nightly check for builds from the last 5 days --- tools/signing/nightly/sign-nightly | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tools/signing/nightly/sign-nightly b/tools/signing/nightly/sign-nightly index a633313c..06426ed3 100755 --- a/tools/signing/nightly/sign-nightly +++ b/tools/signing/nightly/sign-nightly @@ -85,9 +85,12 @@ sub basedir_path { sub get_last_build_version { my ($config, $publish_dir) = @_; my $today = 'tbb-nightly.' . DateTime->now->ymd('.'); - my $dt_yesterday = DateTime->now - DateTime::Duration->new(days => 1); - my $yesterday = 'tbb-nightly.' . $dt_yesterday->ymd('.'); - for my $version ($today, $yesterday) { + my @last_days; + for my $i (1..5) { + my $dt = DateTime->now - DateTime::Duration->new(days => $i); + push @last_days, 'tbb-nightly.' . $dt->ymd('.'); + } + for my $version ($today, @last_days) { my $url = "$config->{builds_url}/$version/$publish_dir/sha256sums-unsigned-build.incrementals.txt"; if ($url =~ m|^/|) { return $version if -f $url; -- To stop receiving notification emails like this one, please contact the administrator of this repository.
1 0
0 0
[tor-browser] branch tor-browser-102.4.0esr-12.0-1 updated: fixup! Bug 41116: Normalize system fonts.
by gitolite role 21 Oct '22

21 Oct '22
This is an automated email from the git hooks/post-receive script. pierov pushed a commit to branch tor-browser-102.4.0esr-12.0-1 in repository tor-browser. The following commit(s) were added to refs/heads/tor-browser-102.4.0esr-12.0-1 by this push: new 0f57b5ae0941 fixup! Bug 41116: Normalize system fonts. 0f57b5ae0941 is described below commit 0f57b5ae09419f5238ba4ba36a5a2009a13de349 Author: Pier Angelo Vendrame <pierov(a)torproject.org> AuthorDate: Wed Oct 12 19:30:55 2022 +0200 fixup! Bug 41116: Normalize system fonts. Bug 41356: Try to check the context for RFP --- gfx/thebes/gfxPlatformFontList.cpp | 3 ++- layout/base/nsLayoutUtils.cpp | 5 ++++- widget/LookAndFeel.h | 4 +++- widget/gtk/nsNativeThemeGTK.cpp | 8 ++++++-- widget/nsXPLookAndFeel.cpp | 9 +++++---- widget/nsXPLookAndFeel.h | 3 ++- 6 files changed, 22 insertions(+), 10 deletions(-) diff --git a/gfx/thebes/gfxPlatformFontList.cpp b/gfx/thebes/gfxPlatformFontList.cpp index 37a095868031..1e03ca76b0fa 100644 --- a/gfx/thebes/gfxPlatformFontList.cpp +++ b/gfx/thebes/gfxPlatformFontList.cpp @@ -1901,7 +1901,8 @@ static void GetSystemUIFontFamilies([[maybe_unused]] nsAtom* aLangGroup, nsFont systemFont; gfxFontStyle fontStyle; nsAutoString systemFontName; - if (!LookAndFeel::GetFont(StyleSystemFont::Menu, systemFontName, fontStyle)) { + if (!LookAndFeel::GetFont(StyleSystemFont::Menu, systemFontName, fontStyle, + nsContentUtils::ShouldResistFingerprinting())) { return; } systemFontName.Trim("\"'"); diff --git a/layout/base/nsLayoutUtils.cpp b/layout/base/nsLayoutUtils.cpp index 4cae8e948de7..f2d023b0653d 100644 --- a/layout/base/nsLayoutUtils.cpp +++ b/layout/base/nsLayoutUtils.cpp @@ -9564,7 +9564,10 @@ void nsLayoutUtils::ComputeSystemFont(nsFont* aSystemFont, const Document* aDocument) { gfxFontStyle fontStyle; nsAutoString systemFontName; - if (!LookAndFeel::GetFont(aFontID, systemFontName, fontStyle)) { + const bool rfp = aDocument + ? nsContentUtils::ShouldResistFingerprinting(aDocument) + : nsContentUtils::ShouldResistFingerprinting(); + if (!LookAndFeel::GetFont(aFontID, systemFontName, fontStyle, rfp)) { return; } systemFontName.Trim("\"'"); diff --git a/widget/LookAndFeel.h b/widget/LookAndFeel.h index 9fe38d632919..c62948673ad1 100644 --- a/widget/LookAndFeel.h +++ b/widget/LookAndFeel.h @@ -486,8 +486,10 @@ class LookAndFeel { * @param aID Which system-theme font is wanted. * @param aName The name of the font to use. * @param aStyle Styling to apply to the font. + * @param aRFP Whether RFP is enabled in the caller's context */ - static bool GetFont(FontID aID, nsString& aName, gfxFontStyle& aStyle); + static bool GetFont(FontID aID, nsString& aName, gfxFontStyle& aStyle, + bool aRFP); /** * GetPasswordCharacter() returns a unicode character which should be used diff --git a/widget/gtk/nsNativeThemeGTK.cpp b/widget/gtk/nsNativeThemeGTK.cpp index 9072e95dcf05..304e7e44d25f 100644 --- a/widget/gtk/nsNativeThemeGTK.cpp +++ b/widget/gtk/nsNativeThemeGTK.cpp @@ -1369,11 +1369,15 @@ nsNativeThemeGTK::GetMinimumWidgetSize(nsPresContext* aPresContext, // smaller than the default one. This prevents <input type=text // style="font-size: .5em"> from keeping a ridiculously large size, for // example. - const gfxFloat fieldFontSizeInCSSPixels = [] { + const gfxFloat fieldFontSizeInCSSPixels = [aPresContext] { + const bool rfp = (aPresContext && aPresContext->Document()) + ? nsContentUtils::ShouldResistFingerprinting( + aPresContext->Document()) + : nsContentUtils::ShouldResistFingerprinting(); gfxFontStyle fieldFontStyle; nsAutoString unusedFontName; DebugOnly<bool> result = LookAndFeel::GetFont( - LookAndFeel::FontID::MozField, unusedFontName, fieldFontStyle); + LookAndFeel::FontID::MozField, unusedFontName, fieldFontStyle, rfp); MOZ_ASSERT(result, "GTK look and feel supports the field font"); // NOTE: GetFont returns font sizes in CSS pixels, and we want just // that. diff --git a/widget/nsXPLookAndFeel.cpp b/widget/nsXPLookAndFeel.cpp index 8791038a2a3f..51901844ba62 100644 --- a/widget/nsXPLookAndFeel.cpp +++ b/widget/nsXPLookAndFeel.cpp @@ -999,8 +999,8 @@ widget::LookAndFeelFont nsXPLookAndFeel::StyleToLookAndFeelFont( } bool nsXPLookAndFeel::GetFontValue(FontID aID, nsString& aName, - gfxFontStyle& aStyle) { - if (nsContentUtils::ShouldResistFingerprinting()) { + gfxFontStyle& aStyle, bool aRFP) { + if (aRFP) { #ifdef XP_MACOSX aName = u"-apple-system"_ns; #else @@ -1361,8 +1361,9 @@ nsresult LookAndFeel::GetFloat(FloatID aID, float* aResult) { } // static -bool LookAndFeel::GetFont(FontID aID, nsString& aName, gfxFontStyle& aStyle) { - return nsLookAndFeel::GetInstance()->GetFontValue(aID, aName, aStyle); +bool LookAndFeel::GetFont(FontID aID, nsString& aName, gfxFontStyle& aStyle, + bool aRFP) { + return nsLookAndFeel::GetInstance()->GetFontValue(aID, aName, aStyle, aRFP); } // static diff --git a/widget/nsXPLookAndFeel.h b/widget/nsXPLookAndFeel.h index 3218c9c7bd02..35421e0e4fb4 100644 --- a/widget/nsXPLookAndFeel.h +++ b/widget/nsXPLookAndFeel.h @@ -40,7 +40,8 @@ class nsXPLookAndFeel : public mozilla::LookAndFeel { nsresult GetFloatValue(FloatID aID, float& aResult); // Same, but returns false if there is no platform-specific value. // (There are no override prefs for font values.) - bool GetFontValue(FontID aID, nsString& aName, gfxFontStyle& aStyle); + bool GetFontValue(FontID aID, nsString& aName, gfxFontStyle& aStyle, + bool aRFP); virtual nsresult NativeGetInt(IntID aID, int32_t& aResult) = 0; virtual nsresult NativeGetFloat(FloatID aID, float& aResult) = 0; -- To stop receiving notification emails like this one, please contact the administrator of this repository.
1 0
0 0
[builders/tor-browser-build] branch main updated: Bug 40639: Removed tor-launcher references
by gitolite role 21 Oct '22

21 Oct '22
This is an automated email from the git hooks/post-receive script. pierov pushed a commit to branch main in repository builders/tor-browser-build. The following commit(s) were added to refs/heads/main by this push: new 0cb8ee4a Bug 40639: Removed tor-launcher references 0cb8ee4a is described below commit 0cb8ee4aa02e139aa80aab68ac85a4ffc82050ca Author: Pier Angelo Vendrame <pierov(a)torproject.org> AuthorDate: Thu Oct 20 15:28:44 2022 +0200 Bug 40639: Removed tor-launcher references --- .gitlab/issue_templates/Release Prep - Alpha.md | 12 ------------ doc/MAKEFILE.txt | 2 +- projects/firefox/build | 5 ----- projects/firefox/config | 3 --- projects/release/build | 1 - projects/release/config | 9 --------- projects/tor-launcher/build | 8 -------- projects/tor-launcher/config | 24 ------------------------ tools/signing/check_file_counts | 3 --- 9 files changed, 1 insertion(+), 66 deletions(-) diff --git a/.gitlab/issue_templates/Release Prep - Alpha.md b/.gitlab/issue_templates/Release Prep - Alpha.md index 1735c6b1..d396506f 100644 --- a/.gitlab/issue_templates/Release Prep - Alpha.md +++ b/.gitlab/issue_templates/Release Prep - Alpha.md @@ -3,8 +3,6 @@ - `$(BUILD_SERVER)` : the server the main builder is using to build a tor-browser release - `$(STAGING_SERVER)` : the server the signer is using to to run the signing process -- `$(TOR_LAUNCHER_VERSION)` : version of `tor-launcher`, used in tags - - example : `0.2.33` - `$(ESR_VERSION)` : the Mozilla defined ESR version, used in various places for building tor-browser tags, labels, etc - example : `91.6.0` - `$(RR_VERSION)` : the Mozilla defined Rapid-Release version; Tor Browser for Android is based off of the `$(ESR_VERSION)`, but Mozilla's Firefox for Android is based off of the `$(RR_VERSION)` so we need to keep track of security vulnerabilities to backport from the monthly Rapid-Release train and our frozen ESR train. @@ -42,16 +40,6 @@ - [ ] ***(Optional)*** Backport to maintenance branch if present and necessary - [ ] fixup! `tor-browser`'s `Bug 10760 : Integrate TorButton to TorBrowser core` issue to point to updated `torbutton` commit -### **tor-launcher** : https://gitlab.torproject.org/tpo/applications/tor-launcher.git -- [ ] Update translations: - - [ ] ./localization/import-translations.sh - - **NOTE** : if there are no new strings imported then we are done here -- [ ] Update `install.rdf` file with new version -- [ ] Sign/Tag commit : - - Tag : `$(TOR_LAUNCHER_VERSION)` - - Message `Tagging $(TOR_LAUNCHER_VERSION)` -- [ ] Push `main` and tag to origin - </details> <details> diff --git a/doc/MAKEFILE.txt b/doc/MAKEFILE.txt index d577a17e..823de3b2 100644 --- a/doc/MAKEFILE.txt +++ b/doc/MAKEFILE.txt @@ -55,7 +55,7 @@ Create a build for Linux x86_64 with Address Sanitizer enabled. torbrowser-{release,alpha,nightly,testbuild}-src ------------------------------------------------ -Create source tarballs for firefox, torbutton and tor-launcher. +Create source tarballs for firefox and torbutton. basebrowser-* ------------- diff --git a/projects/firefox/build b/projects/firefox/build index 8ff1b5f6..b06272f0 100644 --- a/projects/firefox/build +++ b/projects/firefox/build @@ -90,11 +90,6 @@ fi patch -p1 < $rootdir/namecoin-etld.patch [% END -%] -[% IF c("var/tor-browser") -%] - # Place a copy of the Tor Launcher sources under browser/extensions - tar -C browser/extensions -xf $rootdir/[% c('input_files_by_name/tor-launcher') %] -[% END -%] - [% IF c("var/namecoin") %] pushd toolkit/torproject/torbutton patch -p1 < $rootdir/namecoin-torbutton.patch diff --git a/projects/firefox/config b/projects/firefox/config index 899a2c63..a0f3bd53 100644 --- a/projects/firefox/config +++ b/projects/firefox/config @@ -174,9 +174,6 @@ input_files: enable: '[% c("var/linux") %]' - filename: start-firefox enable: '[% c("var/linux") %]' - - project: tor-launcher - name: tor-launcher - enable: '[% c("var/tor-browser") %]' - project: translation-base-browser name: translation-base-browser - filename: namecoin-torbutton.patch diff --git a/projects/release/build b/projects/release/build index b1dc191b..15e3e86f 100644 --- a/projects/release/build +++ b/projects/release/build @@ -36,7 +36,6 @@ mkdir -p "$destdir" [% END -%] [% IF c("var/browser-src") -%] mv [% c('input_files_by_name/src-firefox') %] \ - [% IF c("var/tor-browser"); GET c('input_files_by_name/src-tor-launcher'); END %] \ "$destdir"/ [% END -%] cd "$destdir" diff --git a/projects/release/config b/projects/release/config index 8a9803f3..f3165ed8 100644 --- a/projects/release/config +++ b/projects/release/config @@ -211,15 +211,6 @@ input_files: - browser-src - '[% c("var/browser_type") %]' - - name: src-tor-launcher - project: tor-launcher - enable: '[% c("var/browser-src") && c("var/tor-browser") %]' - pkg_type: src-tarballs - target: - - '[% c("var/build_target") %]' - - browser-src - - '[% c("var/browser_type") %]' - steps: signtag: build_log: '-' diff --git a/projects/tor-launcher/build b/projects/tor-launcher/build deleted file mode 100644 index 710416a1..00000000 --- a/projects/tor-launcher/build +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash -[% c("var/set_default_env") -%] -tar xvf [% project %]-[% c('version') %].tar.gz -mv [% project %]-[% c("version") %] [% project %] -[% c('tar', { - tar_src => [ project ], - tar_args => '-czf ' _ dest_dir _ '/' _ c('filename'), - }) %] diff --git a/projects/tor-launcher/config b/projects/tor-launcher/config deleted file mode 100644 index 0b2b0b46..00000000 --- a/projects/tor-launcher/config +++ /dev/null @@ -1,24 +0,0 @@ -# vim: filetype=yaml sw=2 -version: 0.2.39 -git_url: https://gitlab.torproject.org/tpo/applications/tor-launcher.git -git_hash: '[% c("version") %]' -gpg_keyring: torbutton.gpg -tag_gpg_id: 1 -filename: "[% project %]-[% c('version') %]-[% c('var/build_id') %].tar.gz" -container: - use_container: 1 -input_files: - - project: container-image - -steps: - src-tarballs: - filename: 'src-[% project %]-[% c("version") %].tar.xz' - input_files: [] - container: - use_container: 0 - -targets: - nightly: - version: '[% c("abbrev") %]' - git_hash: main - tag_gpg_id: 0 diff --git a/tools/signing/check_file_counts b/tools/signing/check_file_counts index beaa8e77..a0524c8d 100755 --- a/tools/signing/check_file_counts +++ b/tools/signing/check_file_counts @@ -145,10 +145,7 @@ f="$(ls src-firefox-tor-browser-*.tar.xz)" remaining_files="$(echo "${remaining_files}" | sed 's/[ ]*'"${f}"'[ ]*/ /')" remaining_files="$(echo "${remaining_files}" | sed 's/[ ]*'"${f}.asc"'[ ]*/ /')" -test "$(ls src-tor-launcher-*.tar.xz 2>/dev/null | wc -l)" = 1 || echo src-tor-launcher-*.tar.xz is wrong -test "$(ls src-tor-launcher-*.tar.xz.asc 2>/dev/null | wc -l)" = 1 || echo src-tor-launcher-*.tar.xz.asc is wrong total_count=$(( total_count + 2 )) -f="$(ls src-tor-launcher-*.tar.xz)" remaining_files="$(echo "${remaining_files}" | sed 's/[ ]*'"${f}"'[ ]*/ /')" remaining_files="$(echo "${remaining_files}" | sed 's/[ ]*'"${f}.asc"'[ ]*/ /')" -- To stop receiving notification emails like this one, please contact the administrator of this repository.
1 0
0 0
[builders/tor-browser-build] branch main updated: Bug 40658: Create an anticensorship team keyring
by gitolite role 21 Oct '22

21 Oct '22
This is an automated email from the git hooks/post-receive script. boklm pushed a commit to branch main in repository builders/tor-browser-build. The following commit(s) were added to refs/heads/main by this push: new ac4eda99 Bug 40658: Create an anticensorship team keyring ac4eda99 is described below commit ac4eda9947c23ac2b84c9e0ca800b72a905fd6bd Author: Pier Angelo Vendrame <pierov(a)torproject.org> AuthorDate: Fri Oct 21 12:00:10 2022 +0200 Bug 40658: Create an anticensorship team keyring --- keyring/anti-censorship.gpg | Bin 0 -> 13640 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/keyring/anti-censorship.gpg b/keyring/anti-censorship.gpg new file mode 100644 index 00000000..ffc024e0 Binary files /dev/null and b/keyring/anti-censorship.gpg differ -- To stop receiving notification emails like this one, please contact the administrator of this repository.
1 0
0 0
[tor-browser] branch tor-browser-102.4.0esr-12.0-1 updated: fixup! Omnibox: Add DDG, Startpage, Disconnect, Youtube, Twitter; remove Amazon, eBay, bing
by gitolite role 21 Oct '22

21 Oct '22
This is an automated email from the git hooks/post-receive script. pierov pushed a commit to branch tor-browser-102.4.0esr-12.0-1 in repository tor-browser. The following commit(s) were added to refs/heads/tor-browser-102.4.0esr-12.0-1 by this push: new 7ed45432f45b fixup! Omnibox: Add DDG, Startpage, Disconnect, Youtube, Twitter; remove Amazon, eBay, bing 7ed45432f45b is described below commit 7ed45432f45badb664aa55d52358115b83c52954 Author: cypherpunks1 <2478-cypherpunks1(a)gitlab.torproject.org> AuthorDate: Fri Oct 21 11:21:23 2022 +0300 fixup! Omnibox: Add DDG, Startpage, Disconnect, Youtube, Twitter; remove Amazon, eBay, bing Fix blockchair-onion search extension --- .../components/extensions/schemas/chrome_settings_overrides.json | 6 +++--- browser/components/search/extensions/blockchair-onion/manifest.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/browser/components/extensions/schemas/chrome_settings_overrides.json b/browser/components/extensions/schemas/chrome_settings_overrides.json index 96144745f574..674e237a5696 100644 --- a/browser/components/extensions/schemas/chrome_settings_overrides.json +++ b/browser/components/extensions/schemas/chrome_settings_overrides.json @@ -45,7 +45,7 @@ "search_url": { "type": "string", "format": "url", - "pattern": "^(https://|http://(localhost|127\\.0\\.0\\.1|\\[::1\\])(:\\d*)?(/|$)).*$", + "pattern": "^(https://|http://(.+\\.onion|localhost|127\\.0\\.0\\.1|\\[::1\\])(:\\d*)?(/|$)).*$", "preprocess": "localize" }, "favicon_url": { @@ -66,7 +66,7 @@ "suggest_url": { "type": "string", "optional": true, - "pattern": "^$|^(https://|http://(localhost|127\\.0\\.0\\.1|\\[::1\\])(:\\d*)?(/|$)).*$", + "pattern": "^$|^(https://|http://(.+\\.onion|localhost|127\\.0\\.0\\.1|\\[::1\\])(:\\d*)?(/|$)).*$", "preprocess": "localize" }, "instant_url": { @@ -123,7 +123,7 @@ "type": "string", "optional": true, "format": "url", - "pattern": "^(https://|http://(localhost|127\\.0\\.0\\.1|\\[::1\\])(:\\d*)?(/|$)).*$", + "pattern": "^(https://|http://(.+\\.onion|localhost|127\\.0\\.0\\.1|\\[::1\\])(:\\d*)?(/|$)).*$", "preprocess": "localize" }, "alternate_urls": { diff --git a/browser/components/search/extensions/blockchair-onion/manifest.json b/browser/components/search/extensions/blockchair-onion/manifest.json index e7d15ee50247..f21840e079a6 100644 --- a/browser/components/search/extensions/blockchair-onion/manifest.json +++ b/browser/components/search/extensions/blockchair-onion/manifest.json @@ -20,7 +20,7 @@ "name": "BlockchairOnion", "search_url": "http://blkchairbknpn73cfjhevhla7rkp4ed5gg2knctvv7it4lioy22defid.onion/search", "search_form": "http://blkchairbknpn73cfjhevhla7rkp4ed5gg2knctvv7it4lioy22defid.onion/searc…", - "search_url_post_params": "q={searchTerms}" + "search_url_get_params": "q={searchTerms}" } } } -- To stop receiving notification emails like this one, please contact the administrator of this repository.
1 0
0 0
[builders/tor-browser-build] branch main updated: fixup! Bug 40464: Upgrade to go 1.19.2
by gitolite role 20 Oct '22

20 Oct '22
This is an automated email from the git hooks/post-receive script. pierov pushed a commit to branch main in repository builders/tor-browser-build. The following commit(s) were added to refs/heads/main by this push: new 8867fa20 fixup! Bug 40464: Upgrade to go 1.19.2 8867fa20 is described below commit 8867fa20d797dd8797d88948f2d9584077181724 Author: Pier Angelo Vendrame <pierov(a)torproject.org> AuthorDate: Thu Oct 20 22:32:36 2022 +0200 fixup! Bug 40464: Upgrade to go 1.19.2 Use the same version (1.19.2 at the moment) both for desktop and Android. Also, updated gosys to current HEAD. --- projects/go/config | 6 ------ projects/goxsys/config | 4 ++-- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/projects/go/config b/projects/go/config index ea3c6c36..a61bcff3 100644 --- a/projects/go/config +++ b/projects/go/config @@ -99,7 +99,6 @@ targets: var: GOARCH: 386 android: - version: 1.18.5 var: GOOS: android android-x86: @@ -121,13 +120,8 @@ input_files: project: '[% c("var/compiler") %]' enable: '[% ! c("var/linux") %]' - URL: 'https://golang.org/dl/go[% c("version") %].src.tar.gz' - enable: '[% ! c("var/android") %]' name: go sha256sum: 2ce930d70a931de660fdaf271d70192793b1b240272645bf0275779f6704df6b - - URL: 'https://golang.org/dl/go[% c("version") %].src.tar.gz' - enable: '[% c("var/android") %]' - name: go - sha256sum: 9920d3306a1ac536cdd2c796d6cb3c54bc559c226fc3cc39c32f1e0bd7f50d2a - URL: 'https://golang.org/dl/go[% c("var/go14_version") %].src.tar.gz' name: go14 sha256sum: 9947fc705b0b841b5938c48b22dc33e9647ec0752bae66e50278df4f23f64959 diff --git a/projects/goxsys/config b/projects/goxsys/config index 9b524e87..e93c0aa7 100644 --- a/projects/goxsys/config +++ b/projects/goxsys/config @@ -1,8 +1,8 @@ # vim: filetype=yaml sw=2 version: '[% c("abbrev") %]' git_url: https://github.com/golang/sys -# hash at the top of the internal-branch.go1.19-vendor branch -git_hash: 6c1b26c55098eae66ce95ab7c3712ab6cbfff2b7 +# HEAD as of 2022.10.20 +git_hash: 95e765b1cc43ac521bd4fd501e00774e34401449 filename: '[% project %]-[% c("version") %]-[% c("var/osname") %]-[% c("var/build_id") %].tar.gz' container: use_container: 1 -- To stop receiving notification emails like this one, please contact the administrator of this repository.
1 0
0 0
[builders/tor-browser-build] branch maint-11.5 updated (a45263b6 -> 69d77eba)
by gitolite role 20 Oct '22

20 Oct '22
This is an automated email from the git hooks/post-receive script. richard pushed a change to branch maint-11.5 in repository builders/tor-browser-build. from a45263b6 Bug 40464: Upgrade to go 1.18.7 & remove conditional android version of go new 6a8c634d Enable uTLS and use the full bridge line for snowflake new 69d77eba Remove command line options from snowflake-client. The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: projects/common/bridges_list.snowflake.txt | 2 +- .../tor-browser/Bundle-Data/PTConfigs/linux/torrc-defaults-appendix | 2 +- projects/tor-browser/Bundle-Data/PTConfigs/mac/torrc-defaults-appendix | 2 +- .../tor-browser/Bundle-Data/PTConfigs/windows/torrc-defaults-appendix | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) -- To stop receiving notification emails like this one, please contact the administrator of this repository.
1 2
0 0
[builders/tor-browser-build] branch main updated (6d159b0b -> ec85353e)
by gitolite role 20 Oct '22

20 Oct '22
This is an automated email from the git hooks/post-receive script. pierov pushed a change to branch main in repository builders/tor-browser-build. from 6d159b0b Bug 40464: Upgrade to go 1.19.2 new 53498bf0 Enable uTLS and use the full bridge line for snowflake new ec85353e Remove command line options from snowflake-client. The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: projects/browser/Bundle-Data/PTConfigs/linux/torrc-defaults-appendix | 2 +- projects/browser/Bundle-Data/PTConfigs/mac/torrc-defaults-appendix | 2 +- projects/browser/Bundle-Data/PTConfigs/windows/torrc-defaults-appendix | 2 +- projects/common/bridges_list.snowflake.txt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) -- To stop receiving notification emails like this one, please contact the administrator of this repository.
1 2
0 0
[builders/tor-browser-build] branch maint-11.5 updated: Bug 40464: Upgrade to go 1.18.7 & remove conditional android version of go
by gitolite role 20 Oct '22

20 Oct '22
This is an automated email from the git hooks/post-receive script. richard pushed a commit to branch maint-11.5 in repository builders/tor-browser-build. The following commit(s) were added to refs/heads/maint-11.5 by this push: new a45263b6 Bug 40464: Upgrade to go 1.18.7 & remove conditional android version of go a45263b6 is described below commit a45263b691bb0cad0d2d6a2983458494fa11e9de Author: Dan Ballard <dan(a)mindstab.net> AuthorDate: Thu Oct 20 08:40:13 2022 -0700 Bug 40464: Upgrade to go 1.18.7 & remove conditional android version of go --- projects/go/config | 8 +------- projects/goxsys/config | 3 ++- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/projects/go/config b/projects/go/config index e6bee017..9cc6ee49 100644 --- a/projects/go/config +++ b/projects/go/config @@ -1,5 +1,5 @@ # vim: filetype=yaml sw=2 -version: 1.17.13 +version: 1.18.7 filename: '[% project %]-[% c("version") %]-[% c("var/build_id") %].tar.gz' container: use_container: 1 @@ -94,7 +94,6 @@ targets: var: GOARCH: 386 android: - version: 1.18.7 var: GOOS: android android-x86: @@ -116,11 +115,6 @@ input_files: project: '[% c("var/compiler") %]' enable: '[% ! c("var/linux") %]' - URL: 'https://golang.org/dl/go[% c("version") %].src.tar.gz' - enable: '[% ! c("var/android") %]' - name: go - sha256sum: a1a48b23afb206f95e7bbaa9b898d965f90826f6f1d1fc0c1d784ada0cd300fd - - URL: 'https://golang.org/dl/go[% c("version") %].src.tar.gz' - enable: '[% c("var/android") %]' name: go sha256sum: 9467e33b819f71bebb21fb0ee1dd6794fd2244ae94907a984286712f9839a944 - URL: 'https://golang.org/dl/go[% c("var/go14_version") %].src.tar.gz' diff --git a/projects/goxsys/config b/projects/goxsys/config index 470cf61c..e93c0aa7 100644 --- a/projects/goxsys/config +++ b/projects/goxsys/config @@ -1,7 +1,8 @@ # vim: filetype=yaml sw=2 version: '[% c("abbrev") %]' git_url: https://github.com/golang/sys -git_hash: fae7ac547cb717d141c433a2a173315e216b64c4 +# HEAD as of 2022.10.20 +git_hash: 95e765b1cc43ac521bd4fd501e00774e34401449 filename: '[% project %]-[% c("version") %]-[% c("var/osname") %]-[% c("var/build_id") %].tar.gz' container: use_container: 1 -- To stop receiving notification emails like this one, please contact the administrator of this repository.
1 0
0 0
[builders/tor-browser-build] branch main updated: Bug 40464: Upgrade to go 1.19.2
by gitolite role 20 Oct '22

20 Oct '22
This is an automated email from the git hooks/post-receive script. richard pushed a commit to branch main in repository builders/tor-browser-build. The following commit(s) were added to refs/heads/main by this push: new 6d159b0b Bug 40464: Upgrade to go 1.19.2 6d159b0b is described below commit 6d159b0b4c26dae209bc4434dc828855408f1cf9 Author: Dan Ballard <dan(a)mindstab.net> AuthorDate: Wed Oct 19 16:04:04 2022 -0700 Bug 40464: Upgrade to go 1.19.2 --- projects/go/config | 4 ++-- projects/goxsys/config | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/projects/go/config b/projects/go/config index 8578a6b4..ea3c6c36 100644 --- a/projects/go/config +++ b/projects/go/config @@ -1,5 +1,5 @@ # vim: filetype=yaml sw=2 -version: 1.17.13 +version: 1.19.2 filename: '[% project %]-[% c("version") %]-[% c("var/build_id") %].tar.gz' container: use_container: 1 @@ -123,7 +123,7 @@ input_files: - URL: 'https://golang.org/dl/go[% c("version") %].src.tar.gz' enable: '[% ! c("var/android") %]' name: go - sha256sum: a1a48b23afb206f95e7bbaa9b898d965f90826f6f1d1fc0c1d784ada0cd300fd + sha256sum: 2ce930d70a931de660fdaf271d70192793b1b240272645bf0275779f6704df6b - URL: 'https://golang.org/dl/go[% c("version") %].src.tar.gz' enable: '[% c("var/android") %]' name: go diff --git a/projects/goxsys/config b/projects/goxsys/config index 470cf61c..9b524e87 100644 --- a/projects/goxsys/config +++ b/projects/goxsys/config @@ -1,7 +1,8 @@ # vim: filetype=yaml sw=2 version: '[% c("abbrev") %]' git_url: https://github.com/golang/sys -git_hash: fae7ac547cb717d141c433a2a173315e216b64c4 +# hash at the top of the internal-branch.go1.19-vendor branch +git_hash: 6c1b26c55098eae66ce95ab7c3712ab6cbfff2b7 filename: '[% project %]-[% c("version") %]-[% c("var/osname") %]-[% c("var/build_id") %].tar.gz' container: use_container: 1 -- To stop receiving notification emails like this one, please contact the administrator of this repository.
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • ...
  • 18
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.