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 -----
  • 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

November 2022

  • 2 participants
  • 110 discussions
[tor-browser] branch tor-browser-102.5.0esr-12.5-1 created (now 541589634a77)
by gitolite role 29 Nov '22

29 Nov '22
This is an automated email from the git hooks/post-receive script. pierov pushed a change to branch tor-browser-102.5.0esr-12.5-1 in repository tor-browser. at 541589634a77 Bug 1798623: Update time zone data to tzdata2022f (ESR102 backport). r=#platform-i18n-reviewers, a=dmeehan No new revisions were added by this update. -- To stop receiving notification emails like this one, please contact the administrator of this repository.
1 0
0 0
[Git][tpo/applications/android-components][android-components-102.0.14-12.0-1] fixup! Bug 40007: Port external helper app prompting
by Richard Pospesel (@richard) 29 Nov '22

29 Nov '22
Richard Pospesel pushed to branch android-components-102.0.14-12.0-1 at The Tor Project / Applications / android-components Commits: cfaa7871 by Pier Angelo Vendrame at 2022-11-29T11:30:13+00:00 fixup! Bug 40007: Port external helper app prompting Bug 41481: Updated PendingIntent for API 31. - - - - - 1 changed file: - components/support/utils/src/main/java/mozilla/components/support/utils/TorUtils.kt Changes: ===================================== components/support/utils/src/main/java/mozilla/components/support/utils/TorUtils.kt ===================================== @@ -7,6 +7,7 @@ package mozilla.components.support.utils import android.app.PendingIntent import android.content.Context import android.content.Intent +import mozilla.components.support.utils.PendingIntentUtils object TorUtils { const val TORBROWSER_START_ACTIVITY_PROMPT = "torbrowser_start_activity_prompt" @@ -19,7 +20,7 @@ object TorUtils { fun startActivityPrompt(context: Context, intent: Intent) { val intentContainer = Intent() intentContainer.setPackage(context.applicationContext.packageName) - intentContainer.putExtra(TORBROWSER_START_ACTIVITY_PROMPT, PendingIntent.getActivity(context, 0, intent, 0)) + intentContainer.putExtra(TORBROWSER_START_ACTIVITY_PROMPT, PendingIntent.getActivity(context, 0, intent, PendingIntentUtils.defaultFlags)) intentContainer.flags = Intent.FLAG_ACTIVITY_NEW_TASK context.startActivity(intentContainer) } View it on GitLab: https://gitlab.torproject.org/tpo/applications/android-components/-/commit/… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/android-components/-/commit/… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[builders/tor-browser-build] branch main updated: Bug 40699: Fix input_files in projects/firefox-l10n/config
by gitolite role 29 Nov '22

29 Nov '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 985fe814 Bug 40699: Fix input_files in projects/firefox-l10n/config 985fe814 is described below commit 985fe814f019dae162f9410a6437bf0f3fcb9e09 Author: Nicolas Vigier <boklm(a)torproject.org> AuthorDate: Tue Nov 29 11:59:52 2022 +0100 Bug 40699: Fix input_files in projects/firefox-l10n/config In input_files in projects/firefox-l10n/config we are doing this: my $locales = project_config($project, 'var/locales', $options); foreach my $locale (@$locales) { $locale = process_template($project, $locale, '.'); In this foreach loop, `$locale` is pointing to the real string from `var/locales` and not a copy, and we are updating it with the output from `process_template`. This means that the template will be processed the first time the function is called (for example for a linux-x86_64 build) and the processed value from the first call reused on subsequent calls (for example a macos build, where the `ja` locale is supposed to be different). This is what caused the reproducibility issue in https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/merge_re… To fix that we just use a separate variable to store the processed template. --- projects/firefox-l10n/config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/firefox-l10n/config b/projects/firefox-l10n/config index 2a2e585b..d8800a3c 100644 --- a/projects/firefox-l10n/config +++ b/projects/firefox-l10n/config @@ -24,8 +24,8 @@ steps: my $changesets_json = project_config('firefox', 'var/l10n-changesets', { %$options, origin_project => $project }); my $d = decode_json $changesets_json; my $locales = project_config($project, 'var/locales', $options); - foreach my $locale (@$locales) { - $locale = process_template($project, $locale, '.'); + foreach my $loc (@$locales) { + my $locale = process_template($project, $loc, '.'); next unless my $revision = $d->{$locale}{revision}; my $input_file = { name => $locale, -- To stop receiving notification emails like this one, please contact the administrator of this repository.
1 0
0 0
[builders/tor-browser-build] annotated tag tbb-11.5.10-build1 created (now eefd0271)
by gitolite role 29 Nov '22

29 Nov '22
This is an automated email from the git hooks/post-receive script. richard pushed a change to annotated tag tbb-11.5.10-build1 in repository builders/tor-browser-build. at eefd0271 (tag) tagging 93b2db4fdb1ca92968a783429d29d49e82e47ef1 (commit) replaces tbb-11.5.9-build1 by Richard Pospesel on Tue Nov 29 10:04:35 2022 +0000 - Log ----------------------------------------------------------------- Tagging build1 for 11.5.10 -----BEGIN PGP SIGNATURE----- iQJLBAABCAA1FiEEvnyRTMkiztnZPSO33kc2A2PzSywFAmOF2TMXHHJpY2hhcmRA dG9ycHJvamVjdC5vcmcACgkQ3kc2A2PzSyx/CA/+Ovb1F7J6xv9JY7ZE/RP0lmHY yRAfSY8vW6T2TJ57NJJIFGaO88Z0T33nu9d9SBpXxKIQaMZPzYC0dO0re0QZxlmH as9hszd5JJMZozk/We8DUBx0HDuxnX3/7HEbE6UReYJr0Mb4fFRsRGgHJlpkV0uh ceho/eJoGAWeiQ26CdMPll6zAWyKtTM4/rGUCBhJPl1dJGZ2Whx3qj10wemuzOzl Vr8NlmBIQs2XOI/XA1Y1jfhwX3CFXCuDkmaupZOFOA9blkBiY5aVouAItrSVt4rj RzTYGLyrGNMBpHQMbGBk3qOPpJhKeV9U4u30dHokABZIpn0GjYxBekHcw+/rpt4/ LGaOU7QBXz83zeXJ3/O2xh2/Z8IfEUpi4HSyjpK20RBR1LxnXegpsQxyUw5Ne9Nb NXJ6ljdzu/kvTN0At+0+h3935J111KU7D/cZ2HloZs/dtJGMiogJHBUY6uKlZk+2 HU9upxStZGezNkPwpDjDj7qE7WnqQ62/CLXUxgTg6mHj3wSIiOwt/39CRTD+b4jY 3g1uMPJbUg4G0jJJCMokkC/+TgH0iGEeNsjQa6eEQCsdoBmRJD+KxBWfivDHz8Us 8LNt0lWnQsaeoh1DkGqPhN7tZl9zysI/tENCLwJxR7wLYMgy7c1d2ZDoQZpR86+v 1dzt9qqMBO2xBEmnFvU= =LJy2 -----END PGP SIGNATURE----- ----------------------------------------------------------------------- No new revisions were added by this update. -- 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: Bug 40696: Prepare stable release 11.5.10 (Android only)
by gitolite role 29 Nov '22

29 Nov '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 93b2db4f Bug 40696: Prepare stable release 11.5.10 (Android only) 93b2db4f is described below commit 93b2db4fdb1ca92968a783429d29d49e82e47ef1 Author: Richard Pospesel <richard(a)torproject.org> AuthorDate: Mon Nov 28 19:48:32 2022 +0000 Bug 40696: Prepare stable release 11.5.10 (Android only) --- projects/android-components/config | 2 +- projects/tor-android-service/config | 2 +- .../tor-browser/Bundle-Data/Docs/ChangeLog.txt | 5 + projects/tor-browser/allowed_addons.json | 167 ++++++++++----------- projects/tor-browser/config | 4 +- rbm.conf | 2 +- 6 files changed, 93 insertions(+), 89 deletions(-) diff --git a/projects/android-components/config b/projects/android-components/config index b2a2a35b..1fa8bf5c 100644 --- a/projects/android-components/config +++ b/projects/android-components/config @@ -1,7 +1,7 @@ # vim: filetype=yaml sw=2 version: '[% c("abbrev") %]' filename: '[% project %]-[% c("version") %]-[% c("var/build_id") %].tar.gz' -git_hash: '[% project %]-[% c("var/android_components_version") %]-[% c("var/torbrowser_branch") %]-1-build2' +git_hash: '[% project %]-[% c("var/android_components_version") %]-[% c("var/torbrowser_branch") %]-1-build3' git_url: https://gitlab.torproject.org/tpo/applications/android-components.git tag_gpg_id: 1 gpg_keyring: torbutton.gpg diff --git a/projects/tor-android-service/config b/projects/tor-android-service/config index 0cbe2451..34c285b3 100644 --- a/projects/tor-android-service/config +++ b/projects/tor-android-service/config @@ -1,7 +1,7 @@ # vim: filetype=yaml sw=2 version: '[% c("abbrev") %]' filename: '[% project %]-[% c("version") %]-[% c("var/build_id") %]' -git_hash: 0f264c8891904b63057c46a4e3902cc73b6b860c +git_hash: f324999c1773a8d8c83c50106a2cac30be93aabf git_url: https://git.torproject.org/tor-android-service.git git_submodule: 1 container: diff --git a/projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt b/projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt index 11a11fbc..f915b760 100644 --- a/projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt +++ b/projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt @@ -1,3 +1,8 @@ +Tor Brwoser 11.5.10 - November 28 2022 + * Android + * Update NoScript to 11.4.13 + * Bug 41481: Tor Browser 11.5.9 for Android crashes on launch on Android 12+ after targetSdkVersion update [tor-browser] + Tor Browser 11.5.9 - November 22 2022 * Android * Bug 41471: Update targetSdkVersion to 31 [tor-browser] diff --git a/projects/tor-browser/allowed_addons.json b/projects/tor-browser/allowed_addons.json index 41acf1bf..23fa86ab 100644 --- a/projects/tor-browser/allowed_addons.json +++ b/projects/tor-browser/allowed_addons.json @@ -17,7 +17,7 @@ "picture_url": "https://addons.mozilla.org/user-media/userpics/34/9734/13299734/13299734.pn…" } ], - "average_daily_users": 915286, + "average_daily_users": 909198, "categories": { "android": [ "experimental", @@ -221,10 +221,10 @@ "category": "recommended" }, "ratings": { - "average": 4.5579, - "bayesian_average": 4.5566771238117, - "count": 4687, - "text_count": 1494 + "average": 4.5582, + "bayesian_average": 4.5569804901850635, + "count": 4708, + "text_count": 1504 }, "ratings_url": "https://addons.mozilla.org/en-US/firefox/addon/darkreader/reviews/", "requires_payment": false, @@ -321,7 +321,7 @@ "type": "extension", "url": "https://addons.mozilla.org/en-US/firefox/addon/darkreader/", "versions_url": "https://addons.mozilla.org/en-US/firefox/addon/darkreader/versions/", - "weekly_downloads": 26742 + "weekly_downloads": 25656 }, "notes": null }, @@ -337,7 +337,7 @@ "picture_url": "https://addons.mozilla.org/user-media/userpics/73/4073/5474073/5474073.png?…" } ], - "average_daily_users": 680581, + "average_daily_users": 669887, "categories": { "android": [ "security-privacy" @@ -464,15 +464,14 @@ ], "promoted": { "apps": [ - "firefox", - "android" + "firefox" ], - "category": "recommended" + "category": "spotlight" }, "ratings": { - "average": 4.6591, - "bayesian_average": 4.656546073050549, - "count": 2303, + "average": 4.6597, + "bayesian_average": 4.657149505820861, + "count": 2307, "text_count": 460 }, "ratings_url": "https://addons.mozilla.org/en-US/firefox/addon/https-everywhere/reviews/", @@ -502,7 +501,7 @@ "type": "extension", "url": "https://www.eff.org/https-everywhere", "versions_url": "https://addons.mozilla.org/en-US/firefox/addon/https-everywhere/versions/", - "weekly_downloads": 9371 + "weekly_downloads": 7804 }, "notes": null }, @@ -518,7 +517,7 @@ "picture_url": "https://addons.mozilla.org/user-media/userpics/56/7656/6937656/6937656.png?…" } ], - "average_daily_users": 258956, + "average_daily_users": 256617, "categories": { "android": [ "security-privacy" @@ -733,9 +732,9 @@ "category": "recommended" }, "ratings": { - "average": 4.8196, - "bayesian_average": 4.814881708000599, - "count": 1297, + "average": 4.82, + "bayesian_average": 4.815284382393805, + "count": 1300, "text_count": 235 }, "ratings_url": "https://addons.mozilla.org/en-US/firefox/addon/decentraleyes/reviews/", @@ -821,7 +820,7 @@ "type": "extension", "url": "https://addons.mozilla.org/en-US/firefox/addon/decentraleyes/", "versions_url": "https://addons.mozilla.org/en-US/firefox/addon/decentraleyes/versions/", - "weekly_downloads": 5049 + "weekly_downloads": 5014 }, "notes": null }, @@ -837,7 +836,7 @@ "picture_url": "https://addons.mozilla.org/user-media/userpics/73/4073/5474073/5474073.png?…" } ], - "average_daily_users": 1087451, + "average_daily_users": 1080325, "categories": { "android": [ "security-privacy" @@ -1359,9 +1358,9 @@ "category": "recommended" }, "ratings": { - "average": 4.7974, - "bayesian_average": 4.7945372575845875, - "count": 2127, + "average": 4.7978, + "bayesian_average": 4.794944343168069, + "count": 2136, "text_count": 419 }, "ratings_url": "https://addons.mozilla.org/en-US/firefox/addon/privacy-badger17/reviews/", @@ -1386,7 +1385,7 @@ "type": "extension", "url": "https://addons.mozilla.org/en-US/firefox/addon/privacy-badger17/", "versions_url": "https://addons.mozilla.org/en-US/firefox/addon/privacy-badger17/versions/", - "weekly_downloads": 30652 + "weekly_downloads": 23645 }, "notes": null }, @@ -1402,7 +1401,7 @@ "picture_url": null } ], - "average_daily_users": 6179567, + "average_daily_users": 6109476, "categories": { "android": [ "security-privacy" @@ -1566,7 +1565,7 @@ }, "is_disabled": false, "is_experimental": false, - "last_updated": "2022-11-17T18:50:18Z", + "last_updated": "2022-11-21T14:05:21Z", "name": { "ar": "uBlock Origin", "bg": "uBlock Origin", @@ -1711,10 +1710,10 @@ "category": "recommended" }, "ratings": { - "average": 4.777, - "bayesian_average": 4.776583448503493, - "count": 14553, - "text_count": 3822 + "average": 4.7781, + "bayesian_average": 4.777684363250582, + "count": 14613, + "text_count": 3832 }, "ratings_url": "https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/reviews/", "requires_payment": false, @@ -1776,7 +1775,7 @@ "type": "extension", "url": "https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/", "versions_url": "https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/versions/", - "weekly_downloads": 143376 + "weekly_downloads": 145268 }, "notes": null }, @@ -1792,7 +1791,7 @@ "picture_url": null } ], - "average_daily_users": 136775, + "average_daily_users": 137691, "categories": { "android": [ "photos-media" @@ -1889,10 +1888,10 @@ "category": "recommended" }, "ratings": { - "average": 4.5112, - "bayesian_average": 4.505934556847595, - "count": 1072, - "text_count": 398 + "average": 4.5084, + "bayesian_average": 4.503134943951076, + "count": 1074, + "text_count": 399 }, "ratings_url": "https://addons.mozilla.org/en-US/firefox/addon/video-background-play-fix/re…", "requires_payment": false, @@ -1914,7 +1913,7 @@ "type": "extension", "url": "https://addons.mozilla.org/en-US/firefox/addon/video-background-play-fix/", "versions_url": "https://addons.mozilla.org/en-US/firefox/addon/video-background-play-fix/ve…", - "weekly_downloads": 342 + "weekly_downloads": 367 }, "notes": null }, @@ -1930,7 +1929,7 @@ "picture_url": null } ], - "average_daily_users": 94602, + "average_daily_users": 93297, "categories": { "android": [ "experimental", @@ -2042,10 +2041,10 @@ ], "promoted": null, "ratings": { - "average": 4.4005, - "bayesian_average": 4.386706032404273, - "count": 397, - "text_count": 111 + "average": 4.39, + "bayesian_average": 4.37632626166722, + "count": 400, + "text_count": 113 }, "ratings_url": "https://addons.mozilla.org/en-US/firefox/addon/privacy-possum/reviews/", "requires_payment": false, @@ -2067,7 +2066,7 @@ "type": "extension", "url": "https://addons.mozilla.org/en-US/firefox/addon/privacy-possum/", "versions_url": "https://addons.mozilla.org/en-US/firefox/addon/privacy-possum/versions/", - "weekly_downloads": 579 + "weekly_downloads": 578 }, "notes": null }, @@ -2083,7 +2082,7 @@ "picture_url": "https://addons.mozilla.org/user-media/userpics/64/9064/12929064/12929064.pn…" } ], - "average_daily_users": 242729, + "average_daily_users": 241693, "categories": { "android": [ "photos-media", @@ -2097,7 +2096,7 @@ "contributions_url": "https://www.paypal.com/donate?hosted_button_id=GLL4UNSNU6SQN&utm_content=pr…", "created": "2017-06-17T15:23:33Z", "current_version": { - "id": 5482102, + "id": 5490272, "compatibility": { "firefox": { "min": "91.0", @@ -2108,7 +2107,7 @@ "max": "*" } }, - "edit_url": "https://addons.mozilla.org/en-US/developers/addon/search_by_image/versions/…", + "edit_url": "https://addons.mozilla.org/en-US/developers/addon/search_by_image/versions/…", "is_strict_compatibility_enabled": false, "license": { "id": 6, @@ -2122,19 +2121,19 @@ "en-US": "Learn more about this release from the <a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/034fc31c913b4c44179589…" rel=\"nofollow\">changelog</a>." }, "reviewed": null, - "version": "5.4.0", + "version": "5.4.2", "files": [ { - "id": 4026447, - "created": "2022-11-05T13:49:24Z", - "hash": "sha256:3631a3ef95be1f07e1ab78e4517b8d54f9cfe1c90b50374c0c9e525251d2df8c", + "id": 4034617, + "created": "2022-11-23T22:15:06Z", + "hash": "sha256:327549ce86f8dc27794ece4a065cf673e007eefe716fb188b8c6d28102fca22f", "is_restart_required": false, "is_webextension": true, "is_mozilla_signed_extension": false, "platform": "all", - "size": 805876, + "size": 806112, "status": "public", - "url": "https://addons.mozilla.org/firefox/downloads/file/4026447/search_by_image-5…", + "url": "https://addons.mozilla.org/firefox/downloads/file/4034617/search_by_image-5…", "permissions": [ "alarms", "clipboardRead", @@ -2175,7 +2174,7 @@ }, "is_disabled": false, "is_experimental": false, - "last_updated": "2022-11-07T08:53:41Z", + "last_updated": "2022-11-24T10:36:11Z", "name": { "en-US": "Search by Image" }, @@ -2301,9 +2300,9 @@ "category": "recommended" }, "ratings": { - "average": 4.6445, - "bayesian_average": 4.639578825981166, - "count": 1190, + "average": 4.6475, + "bayesian_average": 4.6426080367355835, + "count": 1200, "text_count": 234 }, "ratings_url": "https://addons.mozilla.org/en-US/firefox/addon/search_by_image/reviews/", @@ -2325,7 +2324,7 @@ "type": "extension", "url": "https://addons.mozilla.org/en-US/firefox/addon/search_by_image/", "versions_url": "https://addons.mozilla.org/en-US/firefox/addon/search_by_image/versions/", - "weekly_downloads": 4715 + "weekly_downloads": 3908 }, "notes": null }, @@ -2348,7 +2347,7 @@ "picture_url": null } ], - "average_daily_users": 96564, + "average_daily_users": 97618, "categories": { "android": [ "other" @@ -2630,10 +2629,10 @@ "category": "recommended" }, "ratings": { - "average": 4.4477, - "bayesian_average": 4.442973243831534, - "count": 1175, - "text_count": 317 + "average": 4.4413, + "bayesian_average": 4.436575665528032, + "count": 1176, + "text_count": 316 }, "ratings_url": "https://addons.mozilla.org/en-US/firefox/addon/google-search-fixer/reviews/", "requires_payment": false, @@ -2653,7 +2652,7 @@ "type": "extension", "url": "https://addons.mozilla.org/en-US/firefox/addon/google-search-fixer/", "versions_url": "https://addons.mozilla.org/en-US/firefox/addon/google-search-fixer/versions/", - "weekly_downloads": 97 + "weekly_downloads": 37 }, "notes": null }, @@ -2669,7 +2668,7 @@ "picture_url": "https://addons.mozilla.org/user-media/userpics/43/0143/143/143.png?modified…" } ], - "average_daily_users": 335004, + "average_daily_users": 331471, "categories": { "android": [ "performance", @@ -2683,7 +2682,7 @@ "contributions_url": "https://www.paypal.com/donate/?hosted_button_id=9ERKTU5MBH4EW&utm_content=p…", "created": "2005-05-13T10:51:32Z", "current_version": { - "id": 5486044, + "id": 5489293, "compatibility": { "firefox": { "min": "59.0", @@ -2694,7 +2693,7 @@ "max": "*" } }, - "edit_url": "https://addons.mozilla.org/en-US/developers/addon/noscript/versions/5486044", + "edit_url": "https://addons.mozilla.org/en-US/developers/addon/noscript/versions/5489293", "is_strict_compatibility_enabled": false, "license": { "id": 13, @@ -2705,22 +2704,22 @@ "url": "http://www.gnu.org/licenses/gpl-2.0.html" }, "release_notes": { - "en-US": "v 11.4.12\n============================================================\nx [L10n] Updated is, mk\nx [L10n] New Finnish (fi) locale (thanks RJuho, olavinto and\n ricky.tigg)\nx [L10n] New Ukrainian (uk) locale (thanks Kataphan, MuS and\n uniss)\nx [L10n] New Persian (fa) locale (thanks voxp and magnifico)" + "en-US": "v 11.4.13\n============================================================\nx Ensure theme changes are synchronized across windows,\n including private ones (thanks barbaz for reporting)\nx [UI] Ensure prompts are always centered relative to the\n parent window in multi-monitors setups\nx Switch to \"Modern Red Evil\" icon contributed by fatboy\nx Work-around for Chromium unable to load the placeholder\n icon\nx Themed placeholders\nx [nscl] Fixed placeholder fallba [...] }, "reviewed": null, - "version": "11.4.12", + "version": "11.4.13", "files": [ { - "id": 4030389, - "created": "2022-11-14T23:11:19Z", - "hash": "sha256:90f1164a87e5ff303b5d60882ee9458e9c1f775c67098b902662f8f4a1c27df6", + "id": 4033638, + "created": "2022-11-21T22:34:56Z", + "hash": "sha256:078026ae894fe516ce9e61a1084d1b6dc883cd72c51027de342132141ca7f00d", "is_restart_required": false, "is_webextension": true, "is_mozilla_signed_extension": false, "platform": "all", - "size": 942951, + "size": 948790, "status": "public", - "url": "https://addons.mozilla.org/firefox/downloads/file/4030389/noscript-11.4.12.…", + "url": "https://addons.mozilla.org/firefox/downloads/file/4033638/noscript-11.4.13.…", "permissions": [ "contextMenus", "storage", @@ -2786,7 +2785,7 @@ }, "is_disabled": false, "is_experimental": false, - "last_updated": "2022-11-17T22:00:14Z", + "last_updated": "2022-11-22T09:08:25Z", "name": { "de": "NoScript", "el": "NoScript", @@ -2858,10 +2857,10 @@ "category": "recommended" }, "ratings": { - "average": 4.4098, - "bayesian_average": 4.407047989508024, - "count": 2001, - "text_count": 782 + "average": 4.409, + "bayesian_average": 4.406249605020352, + "count": 2005, + "text_count": 784 }, "ratings_url": "https://addons.mozilla.org/en-US/firefox/addon/noscript/reviews/", "requires_payment": false, @@ -2905,7 +2904,7 @@ "type": "extension", "url": "https://addons.mozilla.org/en-US/firefox/addon/noscript/", "versions_url": "https://addons.mozilla.org/en-US/firefox/addon/noscript/versions/", - "weekly_downloads": 7636 + "weekly_downloads": 7527 }, "notes": null }, @@ -2921,7 +2920,7 @@ "picture_url": null } ], - "average_daily_users": 140728, + "average_daily_users": 140511, "categories": { "android": [ "performance", @@ -3035,9 +3034,9 @@ "category": "recommended" }, "ratings": { - "average": 3.9136, - "bayesian_average": 3.90922832913084, - "count": 1088, + "average": 3.9128, + "bayesian_average": 3.90842770432453, + "count": 1089, "text_count": 388 }, "ratings_url": "https://addons.mozilla.org/en-US/firefox/addon/youtube-high-definition/revi…", @@ -3057,7 +3056,7 @@ "type": "extension", "url": "https://addons.mozilla.org/en-US/firefox/addon/youtube-high-definition/", "versions_url": "https://addons.mozilla.org/en-US/firefox/addon/youtube-high-definition/vers…", - "weekly_downloads": 1695 + "weekly_downloads": 1431 }, "notes": null } diff --git a/projects/tor-browser/config b/projects/tor-browser/config index 632a5256..c6a66b69 100644 --- a/projects/tor-browser/config +++ b/projects/tor-browser/config @@ -77,9 +77,9 @@ input_files: enable: '[% ! c("var/android") %]' - filename: Bundle-Data enable: '[% ! c("var/android") %]' - - URL: https://addons.mozilla.org/firefox/downloads/file/4030389/noscript-11.4.12.… + - URL: https://addons.mozilla.org/firefox/downloads/file/4033638/noscript-11.4.13.… name: noscript - sha256sum: 90f1164a87e5ff303b5d60882ee9458e9c1f775c67098b902662f8f4a1c27df6 + sha256sum: 078026ae894fe516ce9e61a1084d1b6dc883cd72c51027de342132141ca7f00d - filename: 'RelativeLink/start-tor-browser.desktop' enable: '[% c("var/linux") %]' - filename: 'RelativeLink/execdesktop' diff --git a/rbm.conf b/rbm.conf index 9635fbdd..75544920 100644 --- a/rbm.conf +++ b/rbm.conf @@ -71,7 +71,7 @@ buildconf: git_signtag_opt: '-s' var: - torbrowser_version: '11.5.9' + torbrowser_version: '11.5.10' torbrowser_build: 'build1' torbrowser_incremental_from: project_name: tor-browser -- 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 40254: Add per-platform download json files
by gitolite role 28 Nov '22

28 Nov '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 983f9860 Bug 40254: Add per-platform download json files 983f9860 is described below commit 983f9860892b094e391e2b166cbc5c09106aa65b Author: Nicolas Vigier <boklm(a)torproject.org> AuthorDate: Wed Nov 2 17:54:31 2022 +0100 Bug 40254: Add per-platform download json files We also add android download json files (#40110). --- projects/release/update_responses_config.yml | 1 + tools/update-responses/update_responses | 38 ++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+) diff --git a/projects/release/update_responses_config.yml b/projects/release/update_responses_config.yml index d27afd84..9c9b6693 100644 --- a/projects/release/update_responses_config.yml +++ b/projects/release/update_responses_config.yml @@ -2,6 +2,7 @@ tmp_dir: '[% c("tmp_dir") %]' create_downloads_json: 1 appname_marfile: tor-browser +appname_bundle_android: tor-browser appname_bundle_macos: TorBrowser appname_bundle_linux: tor-browser appname_bundle_win32: torbrowser-install diff --git a/tools/update-responses/update_responses b/tools/update-responses/update_responses index 265994a5..5725edbb 100755 --- a/tools/update-responses/update_responses +++ b/tools/update-responses/update_responses @@ -153,6 +153,39 @@ sub get_version_downloads { $config->{versions}{$version}{downloads} = $downloads; } +sub get_perplatform_downloads { + my ($config, $version, $gittag) = @_; + my $downloads = {}; + my $vdir = version_dir($config, $version); + my $download_url = "$config->{download}{bundles_url}/$version"; + opendir(my $d, $vdir) or exit_error "Error opening directory $vdir"; + foreach my $file (readdir $d) { + next unless -f "$vdir/$file"; + my $os; + if ($file =~ m/^$config->{appname_bundle_macos}-$version-macos_(.+).dmg$/) { + $os = 'macos'; + } elsif ($file =~ m/^$config->{appname_bundle_linux}-(linux32|linux64)-${version}_(.+).tar.xz$/) { + $os = $1 eq 'linux64' ? 'linux-x86_64' : 'linux-i686'; + } elsif ($file =~ m/^$config->{appname_bundle_win64}-${version}_(.+).exe$/) { + $os = 'windows-x86_64'; + } elsif ($file =~ m/^$config->{appname_bundle_win32}-${version}_(.+).exe$/) { + $os = 'windows-i686'; + } elsif ($file =~ m/^$config->{appname_bundle_android}-${version}-(android-armv7|android-x86|android-x86_64|android-aarch64)-multi.apk/) { + $os = $1; + } else { + next; + } + $downloads->{$os} = { + version => $version, + git_tag => $gittag, + binary => "$download_url/$file", + sig => "$download_url/$file.asc", + }; + } + closedir $d; + $config->{versions}{$version}{pp_downloads} = $downloads; +} + sub extract_mar { my ($mar_file, $dest_dir, $compression) = @_; my $old_cwd = getcwd; @@ -432,6 +465,11 @@ sub write_downloads_json { }; write_htdocs($channel, 'downloads.json', JSON->new->utf8->canonical->encode($data)); + my $pp_downloads = get_perplatform_downloads($config, $version, $tag); + foreach my $os (keys %{$pp_downloads}) { + write_htdocs($channel, "download-$os.json", + JSON->new->utf8->canonical->encode($pp_downloads->{$os})); + } } } -- To stop receiving notification emails like this one, please contact the administrator of this repository.
1 0
0 0
[Git][tpo/applications/android-components][android-components-102.0.14-11.5-1] fixup! Bug 40007: Port external helper app prompting
by Richard Pospesel (@richard) 28 Nov '22

28 Nov '22
Richard Pospesel pushed to branch android-components-102.0.14-11.5-1 at The Tor Project / Applications / android-components Commits: 311598f4 by Pier Angelo Vendrame at 2022-11-28T18:45:37+01:00 fixup! Bug 40007: Port external helper app prompting Bug 41481: Updated PendingIntent for API 31. - - - - - 1 changed file: - components/support/utils/src/main/java/mozilla/components/support/utils/TorUtils.kt Changes: ===================================== components/support/utils/src/main/java/mozilla/components/support/utils/TorUtils.kt ===================================== @@ -7,6 +7,7 @@ package mozilla.components.support.utils import android.app.PendingIntent import android.content.Context import android.content.Intent +import mozilla.components.support.utils.PendingIntentUtils object TorUtils { const val TORBROWSER_START_ACTIVITY_PROMPT = "torbrowser_start_activity_prompt" @@ -19,7 +20,7 @@ object TorUtils { fun startActivityPrompt(context: Context, intent: Intent) { val intentContainer = Intent() intentContainer.setPackage(context.applicationContext.packageName) - intentContainer.putExtra(TORBROWSER_START_ACTIVITY_PROMPT, PendingIntent.getActivity(context, 0, intent, 0)) + intentContainer.putExtra(TORBROWSER_START_ACTIVITY_PROMPT, PendingIntent.getActivity(context, 0, intent, PendingIntentUtils.defaultFlags)) intentContainer.flags = Intent.FLAG_ACTIVITY_NEW_TASK context.startActivity(intentContainer) } View it on GitLab: https://gitlab.torproject.org/tpo/applications/android-components/-/commit/… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/android-components/-/commit/… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[tor-android-service] branch main updated: Bug 41481: Update PendingIntent for Android 12+
by gitolite role 28 Nov '22

28 Nov '22
This is an automated email from the git hooks/post-receive script. richard pushed a commit to branch main in repository tor-android-service. The following commit(s) were added to refs/heads/main by this push: new f324999 Bug 41481: Update PendingIntent for Android 12+ f324999 is described below commit f324999c1773a8d8c83c50106a2cac30be93aabf Author: Pier Angelo Vendrame <pierov(a)torproject.org> AuthorDate: Mon Nov 28 09:54:28 2022 +0100 Bug 41481: Update PendingIntent for Android 12+ --- .../main/java/org/torproject/android/service/TorService.java | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/service/src/main/java/org/torproject/android/service/TorService.java b/service/src/main/java/org/torproject/android/service/TorService.java index f1ddcda..662d3cc 100644 --- a/service/src/main/java/org/torproject/android/service/TorService.java +++ b/service/src/main/java/org/torproject/android/service/TorService.java @@ -142,17 +142,25 @@ public final class TorService extends Service implements TorServiceConstants, Or } intent.setAction(TorServiceConstants.TOR_APP_USERNAME); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); - PendingIntent pendIntent = PendingIntent.getActivity(getApplicationContext(), 0, intent, 0); + int flags = 0; + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { + flags = flags | PendingIntent.FLAG_IMMUTABLE; + } + PendingIntent pendIntent = PendingIntent.getActivity(getApplicationContext(), 0, intent, flags); if (mNotifyBuilder == null) { mNotifyBuilder = new NotificationBuilderCompat(this, NOTIFICATION_CHANNEL_ID) .setContentTitle(getString(R.string.app_name)).setContentIntent(pendIntent).setCategory("service") .setSmallIcon(R.drawable.ic_stat_tor); + flags = PendingIntent.FLAG_UPDATE_CURRENT; + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { + flags = flags | PendingIntent.FLAG_IMMUTABLE; + } Intent intentRefresh = new Intent(CMD_NEWNYM); PendingIntent pendingIntentNewNym = PendingIntent.getBroadcast(getApplicationContext (), 0, - intentRefresh, PendingIntent.FLAG_UPDATE_CURRENT); + intentRefresh, flags); mNotifyBuilder.addAction(R.drawable.ic_refresh_white_24dp, getString(R.string .menu_new_identity), pendingIntentNewNym); -- To stop receiving notification emails like this one, please contact the administrator of this repository.
1 0
0 0
[tor-browser-spec] branch main updated: Bug 40037: FF102 Audit
by gitolite role 23 Nov '22

23 Nov '22
This is an automated email from the git hooks/post-receive script. richard pushed a commit to branch main in repository tor-browser-spec. The following commit(s) were added to refs/heads/main by this push: new 89cd77f Bug 40037: FF102 Audit 89cd77f is described below commit 89cd77f35caa56c04f9a63af619e3ac28634fa79 Author: Richard Pospesel <richard(a)torproject.org> AuthorDate: Wed Nov 23 13:44:12 2022 +0000 Bug 40037: FF102 Audit --- audits/FF102_AUDIT | 75 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) diff --git a/audits/FF102_AUDIT b/audits/FF102_AUDIT new file mode 100644 index 0000000..b712921 --- /dev/null +++ b/audits/FF102_AUDIT @@ -0,0 +1,75 @@ +Tracking issue: https://gitlab.torproject.org/tpo/applications/tor-browser-spec/-/issues/40… + +# General + +The audit begins at the commit hash where the previous audit ended. Use code_audit.sh for creating the diff and highlighting potentially problematic code. The audit is scoped to a specific language (currently C/C++, Rust, Java/Kotlin, and Javascript). + +The output includes the entire patch where the new problematic code was introduced. Search for `XXX MATCH XXX` to find the next potential violation. + +`code_audit.sh` contains the list of known problematic APIs. New usage of these functions are documented and analyzed in this audit. + +## Firefox: https://github.com/mozilla/gecko-dev.git + +- Start: `856b9168439ef597dbd103cd1e2940a8ad110450` ( `FIREFOX_RELEASE_102_BASE` ) +- End: `4960b7d420528392cc095c247a662670785b18b9` ( `FIREFOX_RELEASE_103_BASE` ) + +### Languages: +- [x] java +- [x] cpp +- [x] js +- [x] rust + +Nothing of interest (using `code_audit.sh`) + +--- + +## Application Services: https://github.com/mozilla/application-services.git + +- Start: `0302b89604bb29adb34fdcd710feabd3dd01992d` ( `v93.5.0` ) +- End: `55cbbddfdcb4ec82d2850e0811e8675fea2686c2` ( `v93.7.0` ) + +### Languages: +- [x] java +- [x] cpp +- [x] js +- [x] rust + +Nothing of interest (using `code_audit.sh`) + +## Android Components: https://github.com/mozilla-mobile/android-components.git + +- Start: `2b414097d4f540948f67f62f57c5ddcb0e2789d9` ( `v102.0.1` ) +- End: `cd19f9a6c5e26c4e57dda6e549a5c63ac7c042ea` ( `v102.0.14` ) + +### Languages: +- [x] java +- [x] cpp +- [x] js +- [x] rust + +Nothing of interest (using `code_audit.sh`) + +## Fenix: https://github.com/mozilla-mobile/fenix.git + +- Start: `cc68c965cbb29eb16244d242d433051327de5f48` ( `v102.0.0-beta.1` ) +- End: `2ec252d5f5d09b3eb73840ce585453b7105a7a7d` ( `releases_v102.0.0` ) + +### Languages: +- [x] java +- [x] cpp +- [x] js +- [x] rust + +Nothing of interest (using `code_audit.sh`) + +## Ticket Review ## + +### 102 https://bugzilla.mozilla.org/buglist.cgi?query_format=advanced&resolution=F… + +- https://bugzilla.mozilla.org/show_bug.cgi?id=1767919 : @pierov https://gitlab.torproject.org/tpo/applications/tor-browser/-/issues/41152 + - nothing for us to do here +- ~~https://bugzilla.mozilla.org/show_bug.cgi?id=1770881 : @pierov https://gitlab.torproject.org/tpo/applications/tor-browser/-/issues/41153~~ 102esr is unaffected: the Bugzilla ticket was wrong and then has been fixed +- https://bugzilla.mozilla.org/show_bug.cgi?id=1765167 : @pierov https://gitlab.torproject.org/tpo/applications/tor-browser/-/issues/41154 + - no security/privacy implications, just a refactor required to maintain functionality +- https://bugzilla.mozilla.org/show_bug.cgi?id=1751450 : @richard https://gitlab.torproject.org/tpo/applications/tor-browser/-/issues/41155 + - nothing for us to do here -- To stop receiving notification emails like this one, please contact the administrator of this repository.
1 0
0 0
[builders/tor-browser-build] annotated tag tbb-11.5.9-build1 created (now e76027ca)
by gitolite role 23 Nov '22

23 Nov '22
This is an automated email from the git hooks/post-receive script. richard pushed a change to annotated tag tbb-11.5.9-build1 in repository builders/tor-browser-build. at e76027ca (tag) tagging 22dec89e6d89eb9c14d287396b440570828090c8 (commit) replaces tbb-11.5.8-build1 by Richard Pospesel on Tue Nov 22 21:26:25 2022 +0000 - Log ----------------------------------------------------------------- Tagging build1 for 11.5.9 -----BEGIN PGP SIGNATURE----- iQJLBAABCAA1FiEEvnyRTMkiztnZPSO33kc2A2PzSywFAmN9PoEXHHJpY2hhcmRA dG9ycHJvamVjdC5vcmcACgkQ3kc2A2PzSyx5Uw//faerQzjl9TI8SLHXLL3m+X4I hwB+iz9o5E0RSe3M9UHJonmiVf7EruRJI+vfQ09Bn84pW1hrNIlxMraXctYgKdnr pzPqmQ2Kd0e406qx0JcLaT2rHxmR4ay5UIdTvgw/HdwK1HNG4/FVjsQvJL3cC5m6 5T4HCJAxn7sLSTe+2HPIHpX7Nh4xx6U8/5/6DMTorRqfo+Eui1VJTNQPrXdPn1fv U3FpcfEEXHcicPIyre5XiIPzIz09QOhNk83rAEWF/yYLexWz3mu2w9RQ88CM0Cn+ Z7+/7mPy/wg7lvF3xAC8kkPS6Pk6bKWTuzIwksddybGPYA1R10O3hIpQhgztca6D mX1QmOJ/DVxcclzuOlTyyhNPLpu11T3p4A+5p9ot/GFCBC2AAUdpKKquUM07/eKF b6RUD/uteZVSUBA8GnVD533Sxe2IGwYT9OtVOKt5yDd/8gzaZ0aTjJ6EavAAqMqF v12VCIb+x23B0F+nEEeAupo+ONi23AdllSecV0ZDqmDU/1PavUI5BXOPyo/8Pw+E H3bfS5T49K0IcZWq/vFENFtrK5UoxI1jV3bDUPUtUm59gutjbbvFhxg/BMr5W84g i2taQGwa7K8qRbS6wr8wY0JHrNzTgXqPjJOr1FgA1vUM8ROhbJIVi7y5A1vNDnbL 0kJdEWNRwNeyovr1rPM= =rzEd -----END PGP SIGNATURE----- ----------------------------------------------------------------------- No new revisions were added by this update. -- To stop receiving notification emails like this one, please contact the administrator of this repository.
1 0
0 0
  • ← Newer
  • 1
  • 2
  • 3
  • 4
  • 5
  • ...
  • 11
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.