tor-commits
Threads by month
- ----- 2026 -----
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- 1 participants
- 215380 discussions
[Git][tpo/applications/tor-browser][tor-browser-152.0a1-16.0-2] 4 commits: fixup! TB 27476: Implement about:torconnect captive portal within Tor Browser
by morgan (@morgan) 08 Jun '26
by morgan (@morgan) 08 Jun '26
08 Jun '26
morgan pushed to branch tor-browser-152.0a1-16.0-2 at The Tor Project / Applications / Tor Browser
Commits:
a422ad59 by Henry Wilkes at 2026-06-08T12:27:13+01:00
fixup! TB 27476: Implement about:torconnect captive portal within Tor Browser
TB 44844: Rename CSS urlbar variables.
- - - - -
2d5c2b7d by Henry Wilkes at 2026-06-08T12:42:11+01:00
fixup! TB 27476: Implement about:torconnect captive portal within Tor Browser
TB 44844: Move CSS padding/margin variables to main CSS block.
- - - - -
4ba77e17 by Henry Wilkes at 2026-06-08T12:43:32+01:00
fixup! TB 27476: Implement about:torconnect captive portal within Tor Browser
TB 44844: Use CSS nesting and use `:not(.tor-button)` rather than
`.tor-urlbar-button-plain`.
- - - - -
24ebfbb7 by Henry Wilkes at 2026-06-08T12:43:36+01:00
fixup! TB 27476: Implement about:torconnect captive portal within Tor Browser
TB 44844: Add an outline for forced colors, and change the plain button
background when the urlbar has focus.
- - - - -
2 changed files:
- browser/components/torconnect/content/torConnectUrlbarButton.js
- browser/themes/shared/tor-urlbar-button.css
Changes:
=====================================
browser/components/torconnect/content/torConnectUrlbarButton.js
=====================================
@@ -141,7 +141,6 @@ var gTorConnectUrlbarButton = {
!this._isActive ||
!TorConnect.canBeginNormalBootstrap ||
TorConnect.potentiallyBlocked;
- this.button.classList.toggle("tor-urlbar-button-plain", plainButton);
this.button.classList.toggle("tor-button", !plainButton);
},
};
=====================================
browser/themes/shared/tor-urlbar-button.css
=====================================
@@ -1,45 +1,84 @@
-.tor-urlbar-button:not([hidden]) {
- display: flex;
+.tor-urlbar-button {
+ &:not([hidden]) {
+ display: flex;
+ }
align-self: stretch;
align-items: center;
gap: var(--space-small);
border-radius: var(--urlbar-inner-border-radius);
- --tor-urlbar-button-inline-padding: var(--space-small);
- padding-inline: var(--tor-urlbar-button-inline-padding);
- margin: 0;
-}
-
-.tor-urlbar-button > * {
- flex: 0 0 auto;
- margin: 0;
-}
-
-.tor-urlbar-button:focus-visible {
- /* This button lies within the urlbar, so if the outline extends beyond the
- * button's boundary, it will be clipped by the urlbar.
- * Most button's in the urlbar get around this by using --focus-outline-inset,
- * but our button has a purple background, which does not contrast well with
- * the focus outline.
- * Therefore, we use an offset outline rather than an inset outline, and
- * compensate by shrinking the button's width and height so that the outline
- * fits within the non-focused button boundary. Essentially, this has a
- * similar effect to using an inset outline that matches the color of the
- * urlbar background, but we keep the rounded corners. */
- outline: var(--focus-outline);
- outline-offset: var(--focus-outline-offset);
- /* Calculate the difference between the button's border area and the outline
- * area. */
- --tor-urlbar-focus-outline-difference: calc(var(--focus-outline-offset) + var(--focus-outline-width));
+ outline: var(--toolbarbutton-outline);
+ outline-offset: var(--toolbarbutton-outline-offset);
+ --tor-urlbar-focus-outline-difference: 0px;
/* For the inline direction, we shrink the padding by the difference, and
* increase the margin by the same amount so that the button text remains in
* the same position.
* For the block direction, the height of the button is flexibly sized with
* the urlbar height, so we should only need to increase the margin. */
- padding-inline: calc(var(--tor-urlbar-button-inline-padding) - var(--tor-urlbar-focus-outline-difference));
+ padding-inline: calc(var(--space-small) - var(--tor-urlbar-focus-outline-difference));
margin: var(--tor-urlbar-focus-outline-difference);
+
+ &:focus-visible {
+ /* This button lies within the urlbar, so if the outline extends beyond the
+ * button's boundary, it will be clipped by the urlbar.
+ * Most button's in the urlbar get around this by using
+ * --focus-outline-inset, but our button has a purple background, which does
+ * not contrast well with the focus outline.
+ * Therefore, we use an offset outline rather than an inset outline, and
+ * compensate by shrinking the button's width and height so that the outline
+ * fits within the non-focused button boundary. Essentially, this has a
+ * similar effect to using an inset outline that matches the color of the
+ * urlbar background, but we keep the rounded corners. */
+ outline-style: solid;
+ outline-width: var(--focus-outline-width);
+ outline-offset: var(--focus-outline-offset);
+ /* Calculate the difference between the button's border area and the outline
+ * area. */
+ --tor-urlbar-focus-outline-difference: calc(var(--focus-outline-offset) + var(--focus-outline-width));
+ }
+
+ &:not(.tor-button) {
+ /* Make the button look plain like the identity .identity-box-button. */
+ background-color: var(--urlbar-box-background-color);
+ color: var(--urlbar-box-text-color);
+
+ :where(#urlbar[focused]) & {
+ background-color: var(--urlbar-box-background-color-focus);
+ }
+
+ &:focus-visible {
+ outline-color: var(--focus-outline-color);
+ }
+
+ &:hover {
+ background-color: var(--urlbar-box-background-color-hover);
+ color: var(--urlbar-box-text-color-hover);
+ outline-color: var(--toolbarbutton-outline-color-hover);
+ }
+
+ &:hover:active {
+ background-color: var(--urlbar-box-background-color-active);
+ color: var(--urlbar-box-text-color-hover);
+ outline-color: var(--toolbarbutton-outline-color-active);
+ }
+ }
+
+ &.tor-button:not(:focus-visible) {
+ /* Set the outline color based on a primary button. */
+ outline-color: var(--button-border-color-primary);
+
+ &:hover {
+ outline-color: var(--button-border-color-primary-hover);
+ }
+
+ &:hover:active {
+ outline-color: var(--button-border-color-primary-active);
+ }
+ }
}
-.tor-urlbar-button:focus-visible > * {
+.tor-urlbar-button > * {
+ flex: 0 0 auto;
+ margin-inline: 0;
/* Negate the margin that would be added on focus to ensure the button does
* not grow in height.
* Ideally, this should not change anything noticeable, otherwise the text
@@ -51,23 +90,3 @@
/* Hide whilst the user is typing in the url bar. */
display: none;
}
-
-/* Make the button look plain like the identity #urlbar-label-box. */
-.tor-urlbar-button.tor-urlbar-button-plain {
- background-color: var(--urlbar-box-bgcolor);
- color: var(--urlbar-box-text-color);
-}
-
-.tor-urlbar-button.tor-urlbar-button-plain:focus-visible {
- outline-color: var(--focus-outline-color);
-}
-
-.tor-urlbar-button.tor-urlbar-button-plain:hover {
- background-color: var(--urlbar-box-hover-bgcolor);
- color: var(--urlbar-box-hover-text-color);
-}
-
-.tor-urlbar-button.tor-urlbar-button-plain:hover:active {
- background-color: var(--urlbar-box-active-bgcolor);
- color: var(--urlbar-box-hover-text-color);
-}
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/9ee131…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/9ee131…
You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1
0
[Git][tpo/applications/tor-browser-build][main] 2 commits: Bug 41809: Update toolchains for Firefox 152
by boklm (@boklm) 05 Jun '26
by boklm (@boklm) 05 Jun '26
05 Jun '26
boklm pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits:
1c5946d8 by Nicolas Vigier at 2026-06-05T09:45:02+02:00
Bug 41809: Update toolchains for Firefox 152
- - - - -
649fc472 by Nicolas Vigier at 2026-06-05T09:45:02+02:00
Bug 41813: Disable build artifacts in generate_gradle_dependencies_list-geckoview
- - - - -
11 changed files:
- projects/android-sdk/build
- projects/android-sdk/config
- + projects/android-sdk/platform-37.0-package.xml
- projects/application-services/config
- projects/application-services/gradle-dependencies-list.txt
- projects/firefox/config
- projects/geckoview/config
- projects/geckoview/gradle-dependencies-list.txt
- projects/glean-parser/config
- projects/glean/config
- projects/gradle/config
Changes:
=====================================
projects/android-sdk/build
=====================================
@@ -27,6 +27,8 @@ unzip -qq $rootdir/[% c("input_files_by_name/platform-36.1") %] -d platforms
# Normally, it should not be needed. So, when upgrading, do not add its
# package.xml, unless you encounter the same bug.
mv $rootdir/platform-36.1-package.xml platforms/android-36.1/package.xml
+unzip -qq $rootdir/[% c("input_files_by_name/platform-37") %] -d platforms
+mv $rootdir/platform-37.0-package.xml platforms/android-37.0/package.xml
# Platform tools
unzip -qq $rootdir/[% c("input_files_by_name/platform_tools") %]
=====================================
projects/android-sdk/config
=====================================
@@ -1,7 +1,7 @@
# vim: filetype=yaml sw=2
# FIXME: Rework this whole mess (tor-browser-build#41677)
filename: '[% project %]-[% c("version") %]-[% c("var/build_id") %].tar.[% c("compress_tar") %]'
-version: 36.1.0
+version: 37.0.0
var:
setup: |
mkdir -p /var/tmp/dist
@@ -10,15 +10,15 @@ var:
[[ -n "${ANDROID_NDK_HOME:-}" ]] && ln -s "${ANDROID_NDK_HOME:-}" "$ANDROID_HOME/ndk/[% pc('android-ndk', 'version') %]"
export PATH=$PATH:$ANDROID_HOME/build-tools/[% c("version") %]
google_repo: https://dl.google.com/android/repository
- android_release_dir: android-16
+ android_release_dir: android-37.0
# We need the following two variables for get_build_tools, used by signing
# scripts.
- build_tools_version: 36.1
+ build_tools_version: 37
build_tools_filename: 'build-tools_r[% c("var/build_tools_version") %]_linux.zip'
- build_tools_sha256sum: a7b5889e4a79fcf3b0976bef40d401f4240fb1eed891d9d91169da1111e11d78
+ build_tools_sha256sum: 01af179347cbcd9c208b7f8171f7b21f6dd1d2f85bcd15e88caa51d5d7b86060
commandlinetools_version: 14742923
commandlinetools_version_string: 20.0
- platform_tools_version: 36.0.0
+ platform_tools_version: 37.0.0
input_files:
# Hashes can be compared with https://gitlab.com/fdroid/android-sdk-transparency-log/-/blob/master/checks…
- URL: '[% c("var/google_repo") %]/commandlinetools-linux-[% c("var/commandlinetools_version") %]_latest.zip'
@@ -27,6 +27,10 @@ input_files:
- URL: '[% c("var/google_repo") %]/[% c("var/build_tools_filename") %]'
name: build_tools
sha256sum: '[% c("var/build_tools_sha256sum") %]'
+ - URL: '[% c("var/google_repo") %]/platform-37.0_r01.zip'
+ name: platform-37
+ sha256sum: 19bdcf42de0cb0e9500a27da6833fc30cdd49a7ec690aa5cabaa0ef893af9ebe
+ - filename: platform-37.0-package.xml
- URL: '[% c("var/google_repo") %]/platform-36_r01.zip'
name: platform-36
sha256sum: a5273f7d68de0a6a58032b26c24965634bc14ed3839e70a3a9759369f3f6c02a
@@ -39,7 +43,7 @@ input_files:
# SDK version/build-tools version.
- URL: '[% c("var/google_repo") %]/platform-tools_r[% c("var/platform_tools_version") %]-linux.zip'
name: platform_tools
- sha256sum: 0ead642c943ffe79701fccca8f5f1c69c4ce4f43df2eefee553f6ccb27cbfbe8
+ sha256sum: 198ae156ab285fa555987219af237b31102fefe8b9d2bc274708a8d4f2865a07
steps:
# The get_build_tools step is used by tools/signing/android-signing
get_build_tools:
=====================================
projects/android-sdk/platform-37.0-package.xml
=====================================
@@ -0,0 +1,158 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<ns2:repository xmlns:ns2="http://schemas.android.com/repository/android/common/02" xmlns:ns3="http://schemas.android.com/repository/android/common/01" xmlns:ns4="http://schemas.android.com/repository/android/generic/01" xmlns:ns5="http://schemas.android.com/repository/android/generic/02" xmlns:ns6="http://schemas.android.com/sdk/android/repo/repository2/01" xmlns:ns7="http://schemas.android.com/sdk/android/repo/repository2/02" xmlns:ns8="http://schemas.android.com/sdk/android/repo/repository2/03" xmlns:ns9="http://schemas.android.com/sdk/android/repo/addon2/01" xmlns:ns10="http://schemas.android.com/sdk/android/repo/addon2/02" xmlns:ns11="http://schemas.android.com/sdk/android/repo/addon2/03" xmlns:ns12="http://schemas.android.com/sdk/android/repo/sys-img2/04" xmlns:ns13="http://schemas.android.com/sdk/android/repo/sys-img2/03" xmlns:ns14="http://schemas.android.com/sdk/android/repo/sys-img2/02" xmlns:ns15="http://schemas.android.com/sdk/android/repo/sys-img2/01">
+ <license id="android-sdk-license" type="text">Terms and Conditions
+
+This is the Android Software Development Kit License Agreement
+
+1. Introduction
+
+1.1 The Android Software Development Kit (referred to in the License Agreement as the "SDK" and specifically including the Android system files, packaged APIs, and Google APIs add-ons) is licensed to you subject to the terms of the License Agreement. The License Agreement forms a legally binding contract between you and Google in relation to your use of the SDK.
+
+1.2 "Android" means the Android software stack for devices, as made available under the Android Open Source Project, which is located at the following URL: http://source.android.com/, as updated from time to time.
+
+1.3 A "compatible implementation" means any Android device that (i) complies with the Android Compatibility Definition document, which can be found at the Android compatibility website (http://source.android.com/compatibility) and which may be updated from time to time; and (ii) successfully passes the Android Compatibility Test Suite (CTS).
+
+1.4 "Google" means Google Inc., a Delaware corporation with principal place of business at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States.
+
+
+2. Accepting the License Agreement
+
+2.1 In order to use the SDK, you must first agree to the License Agreement. You may not use the SDK if you do not accept the License Agreement.
+
+2.2 By clicking to accept, you hereby agree to the terms of the License Agreement.
+
+2.3 You may not use the SDK and may not accept the License Agreement if you are a person barred from receiving the SDK under the laws of the United States or other countries, including the country in which you are resident or from which you use the SDK.
+
+2.4 If you are agreeing to be bound by the License Agreement on behalf of your employer or other entity, you represent and warrant that you have full legal authority to bind your employer or such entity to the License Agreement. If you do not have the requisite authority, you may not accept the License Agreement or use the SDK on behalf of your employer or other entity.
+
+
+3. SDK License from Google
+
+3.1 Subject to the terms of the License Agreement, Google grants you a limited, worldwide, royalty-free, non-assignable, non-exclusive, and non-sublicensable license to use the SDK solely to develop applications for compatible implementations of Android.
+
+3.2 You may not use this SDK to develop applications for other platforms (including non-compatible implementations of Android) or to develop another SDK. You are of course free to develop applications for other platforms, including non-compatible implementations of Android, provided that this SDK is not used for that purpose.
+
+3.3 You agree that Google or third parties own all legal right, title and interest in and to the SDK, including any Intellectual Property Rights that subsist in the SDK. "Intellectual Property Rights" means any and all rights under patent law, copyright law, trade secret law, trademark law, and any and all other proprietary rights. Google reserves all rights not expressly granted to you.
+
+3.4 You may not use the SDK for any purpose not expressly permitted by the License Agreement. Except to the extent required by applicable third party licenses, you may not copy (except for backup purposes), modify, adapt, redistribute, decompile, reverse engineer, disassemble, or create derivative works of the SDK or any part of the SDK.
+
+3.5 Use, reproduction and distribution of components of the SDK licensed under an open source software license are governed solely by the terms of that open source software license and not the License Agreement.
+
+3.6 You agree that the form and nature of the SDK that Google provides may change without prior notice to you and that future versions of the SDK may be incompatible with applications developed on previous versions of the SDK. You agree that Google may stop (permanently or temporarily) providing the SDK (or any features within the SDK) to you or to users generally at Google's sole discretion, without prior notice to you.
+
+3.7 Nothing in the License Agreement gives you a right to use any of Google's trade names, trademarks, service marks, logos, domain names, or other distinctive brand features.
+
+3.8 You agree that you will not remove, obscure, or alter any proprietary rights notices (including copyright and trademark notices) that may be affixed to or contained within the SDK.
+
+
+4. Use of the SDK by You
+
+4.1 Google agrees that it obtains no right, title or interest from you (or your licensors) under the License Agreement in or to any software applications that you develop using the SDK, including any intellectual property rights that subsist in those applications.
+
+4.2 You agree to use the SDK and write applications only for purposes that are permitted by (a) the License Agreement and (b) any applicable law, regulation or generally accepted practices or guidelines in the relevant jurisdictions (including any laws regarding the export of data or software to and from the United States or other relevant countries).
+
+4.3 You agree that if you use the SDK to develop applications for general public users, you will protect the privacy and legal rights of those users. If the users provide you with user names, passwords, or other login information or personal information, you must make the users aware that the information will be available to your application, and you must provide legally adequate privacy notice and protection for those users. If your application stores personal or sensitive information provided by users, it must do so securely. If the user provides your application with Google Account information, your application may only use that information to access the user's Google Account when, and for the limited purposes for which, the user has given you permission to do so.
+
+4.4 You agree that you will not engage in any activity with the SDK, including the development or distribution of an application, that interferes with, disrupts, damages, or accesses in an unauthorized manner the servers, networks, or other properties or services of any third party including, but not limited to, Google or any mobile communications carrier.
+
+4.5 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any data, content, or resources that you create, transmit or display through Android and/or applications for Android, and for the consequences of your actions (including any loss or damage which Google may suffer) by doing so.
+
+4.6 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any breach of your obligations under the License Agreement, any applicable third party contract or Terms of Service, or any applicable law or regulation, and for the consequences (including any loss or damage which Google or any third party may suffer) of any such breach.
+
+5. Your Developer Credentials
+
+5.1 You agree that you are responsible for maintaining the confidentiality of any developer credentials that may be issued to you by Google or which you may choose yourself and that you will be solely responsible for all applications that are developed under your developer credentials.
+
+6. Privacy and Information
+
+6.1 In order to continually innovate and improve the SDK, Google may collect certain usage statistics from the software including but not limited to a unique identifier, associated IP address, version number of the software, and information on which tools and/or services in the SDK are being used and how they are being used. Before any of this information is collected, the SDK will notify you and seek your consent. If you withhold consent, the information will not be collected.
+
+6.2 The data collected is examined in the aggregate to improve the SDK and is maintained in accordance with Google's Privacy Policy.
+
+
+7. Third Party Applications
+
+7.1 If you use the SDK to run applications developed by a third party or that access data, content or resources provided by a third party, you agree that Google is not responsible for those applications, data, content, or resources. You understand that all data, content or resources which you may access through such third party applications are the sole responsibility of the person from which they originated and that Google is not liable for any loss or damage that you may experience as a result of the use or access of any of those third party applications, data, content, or resources.
+
+7.2 You should be aware the data, content, and resources presented to you through such a third party application may be protected by intellectual property rights which are owned by the providers (or by other persons or companies on their behalf). You may not modify, rent, lease, loan, sell, distribute or create derivative works based on these data, content, or resources (either in whole or in part) unless you have been specifically given permission to do so by the relevant owners.
+
+7.3 You acknowledge that your use of such third party applications, data, content, or resources may be subject to separate terms between you and the relevant third party. In that case, the License Agreement does not affect your legal relationship with these third parties.
+
+
+8. Using Android APIs
+
+8.1 Google Data APIs
+
+8.1.1 If you use any API to retrieve data from Google, you acknowledge that the data may be protected by intellectual property rights which are owned by Google or those parties that provide the data (or by other persons or companies on their behalf). Your use of any such API may be subject to additional Terms of Service. You may not modify, rent, lease, loan, sell, distribute or create derivative works based on this data (either in whole or in part) unless allowed by the relevant Terms of Service.
+
+8.1.2 If you use any API to retrieve a user's data from Google, you acknowledge and agree that you shall retrieve data only with the user's explicit consent and only when, and for the limited purposes for which, the user has given you permission to do so. If you use the Android Recognition Service API, documented at the following URL: https://developer.android.com/reference/android/speech/RecognitionService, as updated from time to time, you acknowledge that the use of the API is subject to the Data Processing Addendum for Products where Google is a Data Processor, which is located at the following URL: https://privacy.google.com/businesses/gdprprocessorterms/, as updated from time to time. By clicking to accept, you hereby agree to the terms of the Data Processing Addendum for Products where Google is a Data Processor.
+
+
+9. Terminating the License Agreement
+
+9.1 The License Agreement will continue to apply until terminated by either you or Google as set out below.
+
+9.2 If you want to terminate the License Agreement, you may do so by ceasing your use of the SDK and any relevant developer credentials.
+
+9.3 Google may at any time, terminate the License Agreement with you if: (A) you have breached any provision of the License Agreement; or (B) Google is required to do so by law; or (C) the partner with whom Google offered certain parts of SDK (such as APIs) to you has terminated its relationship with Google or ceased to offer certain parts of the SDK to you; or (D) Google decides to no longer provide the SDK or certain parts of the SDK to users in the country in which you are resident or from which you use the service, or the provision of the SDK or certain SDK services to you by Google is, in Google's sole discretion, no longer commercially viable.
+
+9.4 When the License Agreement comes to an end, all of the legal rights, obligations and liabilities that you and Google have benefited from, been subject to (or which have accrued over time whilst the License Agreement has been in force) or which are expressed to continue indefinitely, shall be unaffected by this cessation, and the provisions of paragraph 14.7 shall continue to apply to such rights, obligations and liabilities indefinitely.
+
+
+10. DISCLAIMER OF WARRANTIES
+
+10.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE SDK IS AT YOUR SOLE RISK AND THAT THE SDK IS PROVIDED "AS IS" AND "AS AVAILABLE" WITHOUT WARRANTY OF ANY KIND FROM GOOGLE.
+
+10.2 YOUR USE OF THE SDK AND ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE SDK IS AT YOUR OWN DISCRETION AND RISK AND YOU ARE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE OR LOSS OF DATA THAT RESULTS FROM SUCH USE.
+
+10.3 GOOGLE FURTHER EXPRESSLY DISCLAIMS ALL WARRANTIES AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
+
+
+11. LIMITATION OF LIABILITY
+
+11.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT GOOGLE, ITS SUBSIDIARIES AND AFFILIATES, AND ITS LICENSORS SHALL NOT BE LIABLE TO YOU UNDER ANY THEORY OF LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR EXEMPLARY DAMAGES THAT MAY BE INCURRED BY YOU, INCLUDING ANY LOSS OF DATA, WHETHER OR NOT GOOGLE OR ITS REPRESENTATIVES HAVE BEEN ADVISED OF OR SHOULD HAVE BEEN AWARE OF THE POSSIBILITY OF ANY SUCH LOSSES ARISING.
+
+
+12. Indemnification
+
+12.1 To the maximum extent permitted by law, you agree to defend, indemnify and hold harmless Google, its affiliates and their respective directors, officers, employees and agents from and against any and all claims, actions, suits or proceedings, as well as any and all losses, liabilities, damages, costs and expenses (including reasonable attorneys fees) arising out of or accruing from (a) your use of the SDK, (b) any application you develop on the SDK that infringes any copyright, trademark, trade secret, trade dress, patent or other intellectual property right of any person or defames any person or violates their rights of publicity or privacy, and (c) any non-compliance by you with the License Agreement.
+
+
+13. Changes to the License Agreement
+
+13.1 Google may make changes to the License Agreement as it distributes new versions of the SDK. When these changes are made, Google will make a new version of the License Agreement available on the website where the SDK is made available.
+
+
+14. General Legal Terms
+
+14.1 The License Agreement constitutes the whole legal agreement between you and Google and governs your use of the SDK (excluding any services which Google may provide to you under a separate written agreement), and completely replaces any prior agreements between you and Google in relation to the SDK.
+
+14.2 You agree that if Google does not exercise or enforce any legal right or remedy which is contained in the License Agreement (or which Google has the benefit of under any applicable law), this will not be taken to be a formal waiver of Google's rights and that those rights or remedies will still be available to Google.
+
+14.3 If any court of law, having the jurisdiction to decide on this matter, rules that any provision of the License Agreement is invalid, then that provision will be removed from the License Agreement without affecting the rest of the License Agreement. The remaining provisions of the License Agreement will continue to be valid and enforceable.
+
+14.4 You acknowledge and agree that each member of the group of companies of which Google is the parent shall be third party beneficiaries to the License Agreement and that such other companies shall be entitled to directly enforce, and rely upon, any provision of the License Agreement that confers a benefit on (or rights in favor of) them. Other than this, no other person or company shall be third party beneficiaries to the License Agreement.
+
+14.5 EXPORT RESTRICTIONS. THE SDK IS SUBJECT TO UNITED STATES EXPORT LAWS AND REGULATIONS. YOU MUST COMPLY WITH ALL DOMESTIC AND INTERNATIONAL EXPORT LAWS AND REGULATIONS THAT APPLY TO THE SDK. THESE LAWS INCLUDE RESTRICTIONS ON DESTINATIONS, END USERS AND END USE.
+
+14.6 The rights granted in the License Agreement may not be assigned or transferred by either you or Google without the prior written approval of the other party. Neither you nor Google shall be permitted to delegate their responsibilities or obligations under the License Agreement without the prior written approval of the other party.
+
+14.7 The License Agreement, and your relationship with Google under the License Agreement, shall be governed by the laws of the State of California without regard to its conflict of laws provisions. You and Google agree to submit to the exclusive jurisdiction of the courts located within the county of Santa Clara, California to resolve any legal matter arising from the License Agreement. Notwithstanding this, you agree that Google shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction.
+
+
+January 16, 2019</license>
+ <localPackage path="platforms;android-37.0" obsolete="false">
+ <type-details xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ns8:platformDetailsType">
+ <api-level>37.0</api-level>
+ <codename></codename>
+ <extension-level>22</extension-level>
+ <base-extension>true</base-extension>
+ <layoutlib api="15"/>
+ </type-details>
+ <revision>
+ <major>1</major>
+ </revision>
+ <display-name>Android SDK Platform 37.0</display-name>
+ <uses-license ref="android-sdk-license"/>
+ </localPackage>
+</ns2:repository>
=====================================
projects/application-services/config
=====================================
@@ -1,5 +1,5 @@
# vim: filetype=yaml sw=2
-version: '151.0'
+version: '152.0'
git_hash: 'v[% c("version") %]-TORBROWSER-build[% c("var/build_number") %]'
git_url: https://gitlab.torproject.org/tpo/applications/application-services.git
tag_gpg_id: 1
@@ -24,9 +24,9 @@ var:
gradle_version: 8.14.3
glean_parser: 19.0.0
# NSS version ans sha256 are in libs/build-all.sh.
- nss_version: '3.123'
- nspr_version: '4.38.2'
- nss_sha256sum: 4108c1467923b0dfbcc373da986792439a3c12cb1c294b646c31c55424717bfe
+ nss_version: '3.124'
+ nspr_version: '4.39'
+ nss_sha256sum: 362de77e31a16e64be500a22980448c7f08e98dd8ab85c29d0c5e41d4df68d1c
cargo_vendor_include_config: 1
application-services_versions_infos: '[% exec(c("basedir") _ "/tools/toolchain-updates/extract-application-services-versions-infos") %]'
@@ -90,7 +90,7 @@ steps:
project: application-services
pkg_type: cargo_vendor
norec:
- sha256sum: 8462d6b10cfc242fc1c39f8dd924eced3b16f9090cbb16131a4e62b3c0ccff63
+ sha256sum: b983d8dbde7f15e9249e04b36862a5a3cc17ab334294a00195ac5812c7ef5485
enable: '[% !c("var/generate_gradle_dependencies_list") %]'
- filename: gen-gradle-deps-file.py
enable: '[% c("var/generate_gradle_dependencies_list") %]'
=====================================
projects/application-services/gradle-dependencies-list.txt
=====================================
@@ -229,19 +229,19 @@ d429b9312dffa0503381d1ee1b18a999bd901e7456612b2fb48c6a5d5a2caf88 | https://dl.go
e2eed37782da4d8c799d4c4b737c35ad88d3912f5136cfdfe2c014ccd40b350c | https://dl.google.com/dl/android/maven2/com/android/zipflinger/8.13.2/zipfl…
d001eb0ccbbfc8cb9eaa193a358e63712974639775647be949ab232c2b29b407 | https://dl.google.com/dl/android/maven2/com/google/testing/platform/core-pr…
3bb45280df1dd1c96b9a01724a614566b7d60d33453fcd52c2c741f9999c3a4e | https://dl.google.com/dl/android/maven2/com/google/testing/platform/core-pr…
-0b016de76118b9ac383b0aa4fc95d43ca6370d323e93d8ec01d80cbb2b02cfa9 | https://maven.mozilla.org/maven2/org/mozilla/components/concept-fetch/149.0…
-aec3c98ba01b6313469bd68eed8c3e4ed9c721596d74be3586b99135048f12e5 | https://maven.mozilla.org/maven2/org/mozilla/components/concept-fetch/149.0…
-5e608cf91eb06c3ea5747df680306a5b8fa2ba87f3b9c13fdcdaa82924d32aa1 | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean-gradle-plugin/…
-48ec2a9362359c0d2c5a79ce05b2c8a60a20a263790e3d68ede872e061d0e8b2 | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean-gradle-plugin/…
-f571bd2b423274de69823a48c6b76d86545fa9e4bf28b3ddd142b511686b726d | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean-native/67.2.0/…
-669c8b262df15ed49d427bb48f658e00da6fbecd1d9b37041db05da6e0704baa | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean-native/67.2.0/…
-2492a59fd3ba6d4aba4e70646f0ce491d6f3b797e3e51887ec47e92a7d29942d | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean/67.2.0/glean-6…
-e1fc2cfdf634f4dfd6b262618420c67ac2665d7bca4d4ef29977376548ee29a7 | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean/67.2.0/glean-6…
+29aec065cc48347f2b17c21164440d135cdd581e0949af0a521699f92595abeb | https://maven.mozilla.org/maven2/org/mozilla/components/concept-fetch/150.0…
+3828eb79b006512c08689ae68666a1ab3ab471567772ea6325d4e185371e24fd | https://maven.mozilla.org/maven2/org/mozilla/components/concept-fetch/150.0…
+9882e51d742f3581536c6648d0692bfae7c44b36d7668b2d2603212f04b0cc20 | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean-gradle-plugin/…
+7d564ff743d54f951f13c55ed9b90187f9a5e745245002c2a0726d44fa84c36c | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean-gradle-plugin/…
+49f2cc6193308e5d44e72ff4f37ac20ffdf0c53b73d8ae3d508e32f61064e819 | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean-native/67.3.1/…
+d3c2a540fe8c48123065073b8e74e3c6ff6560163430c10289bd4d5d3990f04b | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean-native/67.3.1/…
+2492a59fd3ba6d4aba4e70646f0ce491d6f3b797e3e51887ec47e92a7d29942d | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean/67.3.1/glean-6…
+db97e3369d85d40d38a3602d2c8c46805025cfe9f0aaf0b444bc2dd0f9111112 | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean/67.3.1/glean-6…
6b4692f913a21b1fb603169ee78ba8f3e4ab2af9d762af9ca88b79126c1c0ad1 | https://plugins.gradle.org/m2/com/google/gradle/osdetector-gradle-plugin/1.…
8460c950127ca3598766161e38b4ff8d63b4d69fb8310a16e00b351350010c11 | https://plugins.gradle.org/m2/com/google/gradle/osdetector-gradle-plugin/1.…
-0dfeca0861962b7bae7df0199c9b939d51d8ed6b5876642512bdcd7e929cbdff | https://plugins.gradle.org/m2/com/google/protobuf/com.google.protobuf.gradl…
-9c0915441a71647b1ddfae79b0ab28e2de763ee5fde1c4a6dd22d58d9389e966 | https://plugins.gradle.org/m2/com/google/protobuf/protobuf-gradle-plugin/0.…
-6f484dc02c175fe23dcab6112176b5d8a36562af78050cfcc13be163172600a5 | https://plugins.gradle.org/m2/com/google/protobuf/protobuf-gradle-plugin/0.…
+b8ec91ceb1ea20c0540bba08f654d1b0e82a2cbe57f0fbf2c80f6a9dfd531263 | https://plugins.gradle.org/m2/com/google/protobuf/com.google.protobuf.gradl…
+42137dd8f5d9520801e9e54058b6bd65e4a33a233babb3f241cc48cf73870f27 | https://plugins.gradle.org/m2/com/google/protobuf/protobuf-gradle-plugin/0.…
+7976e51a9dfcd438c0a511967048f59f9c4b0a0af7e4b5f7b03579b89116cf5c | https://plugins.gradle.org/m2/com/google/protobuf/protobuf-gradle-plugin/0.…
d83e85991ac7591c9937020e550f42b22b85320cbb0812116c9a17ca91048f7c | https://plugins.gradle.org/m2/com/jetbrains/python/envs/com.jetbrains.pytho…
8d61c86cb01ecd6f13c5df452ebabbf2b10d1f5d0c108087951d1847870e095b | https://plugins.gradle.org/m2/de/undercouch/download/de.undercouch.download…
f86065ae2d0a611af43e38ef1c910ad0ec699f9ed76eb990f211a0f1e6b70590 | https://plugins.gradle.org/m2/gradle/plugin/com/jetbrains/python/gradle-pyt…
@@ -249,10 +249,10 @@ b7f00343ebdd21db9e9cb5ec189f9490429814d39b1c7371c997d4059e78dea5 | https://plugi
6b7aa8ea52466795239440c9881fa2875cacb6d36ecc8eeebb590354a610a067 | https://plugins.gradle.org/m2/io/gitlab/arturbosch/detekt/io.gitlab.arturbo…
f47aeef86821e52b2b18758978bd045f03d722292e32e747082122c6228952e0 | https://plugins.gradle.org/m2/kr/motd/maven/os-maven-plugin/1.7.1/os-maven-…
4b758004422b9633dd318f29e784f1d180bd8a5920cd50af1930861f6d6a5476 | https://plugins.gradle.org/m2/kr/motd/maven/os-maven-plugin/1.7.1/os-maven-…
-fb84eef558f1e4dc628b58009c290a254d5cd34c11cc46da9764c6e18d33cedb | https://plugins.gradle.org/m2/org/jetbrains/kotlin/kotlin-serialization/2.3…
-510e8dca6340d0e0717d3e4ffce32804dafefb31fefebb1309da91f13ba7bddf | https://plugins.gradle.org/m2/org/jetbrains/kotlin/kotlin-serialization/2.3…
-2a8e3e29d3bcbb8880ecc1c12cdc18d8d2404e7a79d804a3d440d6d440ce3d11 | https://plugins.gradle.org/m2/org/jetbrains/kotlin/kotlin-serialization/2.3…
-379037f25c2de78ca3038481e4037601d697c86b175accaca764a9812230f170 | https://plugins.gradle.org/m2/org/jetbrains/kotlin/plugin/serialization/org…
+0e123ee3dd7da94a698c0f92aa60f244449524acde62eeca4a36e2c6071b3345 | https://plugins.gradle.org/m2/org/jetbrains/kotlin/kotlin-serialization/2.3…
+661e393f3ea6721cf965c2031d46608bbd77639e4899d5751f5734e23f374542 | https://plugins.gradle.org/m2/org/jetbrains/kotlin/kotlin-serialization/2.3…
+4e1290f492b1444a1266d3b838a0b31d4a3a7153acd4a7cca3907064fe0c34a7 | https://plugins.gradle.org/m2/org/jetbrains/kotlin/kotlin-serialization/2.3…
+d1e12aeedc9fab44409b6c08b2a45384a4bb851fe4e90391efade14d347c48d7 | https://plugins.gradle.org/m2/org/jetbrains/kotlin/plugin/serialization/org…
e256ee50a14d28e59c9c69c090b3e7654c197e84111c94016dd5d55034ccc0ee | https://plugins.gradle.org/m2/org/mozilla/rust-android-gradle/plugin/0.9.6/…
5f0c98844d8c214409c6ef921ff4520cce91e5d3c590a066add3a14bad850d0c | https://plugins.gradle.org/m2/org/mozilla/rust-android-gradle/plugin/0.9.6/…
ee5cba205efbf7fa45f019ce92d31738a5be38d7a6579ab5fe2a6f8777346f6e | https://plugins.gradle.org/m2/org/mozilla/rust-android-gradle/plugin/0.9.6/…
@@ -478,56 +478,56 @@ ace2a10dc8e2d5fd34925ecac03e4988b2c0f851650c94b8cef49ba1bd111478 | https://repo.
965aeb2bedff369819bdde1bf7a0b3b89b8247dd69c88b86375d76163bb8c397 | https://repo.maven.apache.org/maven2/org/jetbrains/annotations/13.0/annotat…
7b0f19724082cbfcbc66e5abea2b9bc92cf08a1ea11e191933ed43801eb3cd05 | https://repo.maven.apache.org/maven2/org/jetbrains/annotations/23.0.0/annot…
c9490f655132328df2cfbcfdf743f53fc3916d6c1d10437175a6ca6e3a67771c | https://repo.maven.apache.org/maven2/org/jetbrains/annotations/23.0.0/annot…
-53685f5783b0490683898d755abae4d418b6e83ba06134858afddcb5945899e9 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/abi-tools-api/2.3…
-a886c9fd7f2b9669457fec021f19dcf15f0463e0db4bdad53ae18125366cc6f9 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/abi-tools-api/2.3…
-a4f10a3f0ea5ddd1f555a4f706e09ea7f552b3c8522bb1006361dd306e35e76a | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/fus-statistics-gr…
-6cd8d64b0e65377904f306f6a858dafd931c4135240f844c93d5294ee98fe839 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/fus-statistics-gr…
-4a0a454e8af6e503afe67830a18563b9b680deeebb1a1706a0d7b44bc50740a1 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/fus-statistics-gr…
-a6d27b3c83617652dd065606f98cf59cfbe263f8c20ebe4ebd5a6f2689eb0d4f | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-build-stat…
-9d0a8d7ff1723d5d72d3495d55573d8d3c6b7774d61d80579714f79c24265f8f | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-build-stat…
-22f1ab223854b949099f6b259cef541d5b58a3643df9a49c4577c63c416e843b | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-build-tool…
-1b5e0b2c36905dc2f55e0a4b7812ae63e3125defcf686d2c0f490f83b73d9d5e | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-build-tool…
-44c307b4edd4cac51f960a8134112d664c93076700cda5e866e94d9a4296340e | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-build-tool…
-ae90be25eb0476108d968ebe32a8ddf525e14088588fa05473db12815a0f1b74 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-build-tool…
-54eced630f28124ccfe2e464e6cacc281e528a8a50a89725721554c9693548fe | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-build-tool…
-e7378c6581ef5f0e2cb40e3a4cec51d2b963e625645a92b67ea09525af97c4c3 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-build-tool…
-9681bc2164a8bd9f6ddf4c085cf4a836b92d27506667d73bab9f6d855336c910 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-build-tool…
-82cc1abe5e63d3fe6757e797284f05db9afd7eadc3e83d1139c3a55b64d4b2d5 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-build-tool…
-976f989d0b5f5d80e8e8a8ad4b73da0bfc27fdd965b9fa38362b2be79ecc1337 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler-e…
-0c35aeee372f07514ebed37b9407b8e1181d1427755139e5cee7719ca05fe7e8 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler-e…
-c069f30a403be70c8152f8aa9f25eccba188eead54263ae02af14421437a2208 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler-r…
-8d84ea0edd60b38bcea562de5178152a2671a9a0053d670f931452b3db013228 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler-r…
-c71a7c1be8fbff04e0af45c9ee8cb7a61d8953bca6b8bf225a5719c725a90b44 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-daemon-cli…
-9e7c8b80724117f72aace65f6be48d836db8fc39753ad951f2bb90862d7e7080 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-daemon-cli…
-8870bab840b8087c96c4ddc06088b4aedf5131c408af3674306304f1f96af3f4 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-daemon-emb…
-61540e5b3a32c0b11962449665924c6cd7554ea9aee0855bd8e4f5b7f610a0ab | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-daemon-emb…
-e1662ed747322b63f61d4fadd99ab78104c45eaf09c11a789862415e81c18dc4 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plu…
-68ff827fc1350d93f0d673368c06479b62b7d5e5c30658a958cf93066831e8d9 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plu…
-c9bc17df69bf39907c597c1e19bec4b479c75aac75fbfd6321e3445b49712e88 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plu…
-d3850110ff5a8eb70fed2d578b45fb07ebc44af6a291ae4cf3c79430c65128ba | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plu…
-01d552213491c853d56f87eb74813038df9ee1d85e9086aa37bd0663b2496f88 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plu…
-e4289cbf9ff49407f041ddc6336e1b577a6ca4cf2be1d2a31338271c13eed3ed | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plu…
-f6f78739ba9fe2712e9f0c9e5bc4f5e93719ccfea95b47c2f49b250be176357e | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plu…
-952e73948e2a20d398c26b87a6bb70ccf66418fbaf1527c3515b188ea9d4bd60 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plu…
-6fb5d97300a5e559afd4d9ff9ac0356c4d966f7d694b662fae169fd87421531e | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plu…
-59138721518d82a343f7dc2f0912b70498d3eef3363c9ebac220acb0fc938ecc | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plu…
-46e16ee26594f480fecb92c96daae37530e835026b78e37ef3251e957f03f6fb | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plu…
-95552673b81b3578ad9b2f3aff1454b63ce806c6fd4ab7c6049231e8640ab471 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plu…
-11c323c2dd8a804e9f58e047c2c01864b2a01dc0d8132b363c0a4312215bc09b | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plu…
-f82bd7645d0c3efeb4f4f65520a3c65b3e8c302b083322037a0001b87b02e990 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plu…
-dd6b919197e132fe71ddac70f6fc5d8fae7f52777afd837b14de871b8c0a5400 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plu…
-be9377485412d00f01e78299cb30be4802591c2730342b6ebdafc0894f752743 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-klib-commo…
-21b15ba5bd62d21d536bb7a0c8cb6743571fc0f43092548a4235b26f2a1d220b | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-klib-commo…
-4319c2764795efbdff2b78ee95455157d7af0b9155698baa1ba52a6abe3abf2d | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-native-uti…
-2c0a7e0035620885d437e7f126274475ba58aa2242fb5dbbf43f91f20cafa708 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-native-uti…
+dc721c7faa844df7f5d6eb62021dc9eadfd1998e1e8df918341f16eb3c391aea | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/abi-tools-api/2.3…
+7395788baca82921694d2661f4bea6737d9e78545b3b56aba624100e0505d8c2 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/abi-tools-api/2.3…
+73379b384d9da66419b5f4d5c83de1a99dd7f195662bc45c39443859e63e18b2 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/fus-statistics-gr…
+8e47531734a6d6e8961b4e0fd1ae8679fbcbd124713dd2cfe7e9a12c47bc738e | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/fus-statistics-gr…
+058dcdd23680142c676a5ecbcc20c548f9ae0b20f00fcf9419b9cb00371173ba | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/fus-statistics-gr…
+132d6c802e45deba4c5eda1af9601c6695daf1347d5dcb38847f187e17ac3378 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-build-stat…
+76337de7640775dbbb6c08662bebe107551e0bb52cda71b5c5893c315bb3a55a | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-build-stat…
+b2e5cc2666c100079ed343618528eb820dcfa5095095e30f2dd19c60dff7e462 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-build-tool…
+71f8a5ff3e40e719104f5330e283320e19d858834ef92d12bfa0d066dbc371d7 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-build-tool…
+99632b777b8a85a7a3f8431def497e31f7604a1475bba3c011abe305f585d8d6 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-build-tool…
+800df065082ddcd8495d0bcd4fa105d2e5d80c9d7ceb851a47c0a244510479ab | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-build-tool…
+cff0a9b665851a325c2195857e2e1a5a747954c9437d00de0ba15519a4294c46 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-build-tool…
+67553bcb21e9c1167700ec3277ac7fab972e6b2b368f95bf6d467e0464dbda33 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-build-tool…
+2cd70396404a0e43c05aaf79a8b35ff3a8ff2e296aedf770f6e5923fbfacae3b | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-build-tool…
+d05f6323c17f961868956831f9d5afad311035b18c3f543ffd2f3c846693d952 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-build-tool…
+d3e70fb011675e77ef00f1a68918d3cd91eed26058977d1e3ea2a37a293233af | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler-e…
+9523c8feadcb17f42d04ffa97fe2a9c08e5db18f090f6db903dca5c36c7ae5c4 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler-e…
+6db7086229db89d07183a9b476e0992f86120dbc21f66092cd124c7ed6d74434 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler-r…
+1fa5485ee9cccc8e93399534b1c52a075fcd463d69a229c9caa601cc091dc288 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler-r…
+fa767c9b40d069f164c617a6e6bd302643c7ba8c0792e8ed9e412c18f84b50be | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-daemon-cli…
+d70aa131e10d9c40d44ffb3d88c85cac54a64a30542179f847f803ec71ae1bad | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-daemon-cli…
+222fc10a3c22e74d30369bf8a0ca6c4f9372eac7d4a0081e290c256fa4d30fb2 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-daemon-emb…
+f5c57776c5ec3504a416364164600b0cbe85ebea8f16ebef607eadaf0fd6bf43 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-daemon-emb…
+e24dfa810bb5d36f83bf320f25c23034b2d280cc7903e29014c4b7bd12485062 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plu…
+0a6e00b610572df19eeb4860b23ce1c943897d286a7def4b3e0de7aa08be280c | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plu…
+ad58d2638ee041f6ce4e73e9782ebf528e18cf9003b1099aa7045ec958e3c195 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plu…
+4c80e1c518e22ee84f4189ece13d76b302fbd0786b6926469cd19d2e0f7bc7e5 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plu…
+53c65b6fb2b81df3bbd76c1694aff721251131a45b58f10924ba4b6c1ae25437 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plu…
+012109d17e0cad203b6363850d467b86a0349fa7f404fc11306aab6c63a32232 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plu…
+74c9611702df8cb3a0a511817c1590feee73d2d2084131ee78b62084b4d88291 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plu…
+952e73948e2a20d398c26b87a6bb70ccf66418fbaf1527c3515b188ea9d4bd60 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plu…
+01c84a1a871de69c0702229920bd3d0dfcb46045e0dd830e51cf3619f7f37626 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plu…
+49ea4b7757e893762e75c2978fbdc0f24ba3521a94ee7113738f62854a030b91 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plu…
+b57face5dbd15c9d06ed17cd71c312a8241c9759550782ac628e8579bced53fe | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plu…
+e04d3a5623cf8dd01fe9c74b9183ee241850298ba8a1dcfd2746f9492df3a6b8 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plu…
+6a6e2fe71c9832d0f66be768e20228ce02525149ea92f2742b66125e397a58c9 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plu…
+5f20e8cdedc9695b88400b030b05641960e1012391776f7be1fe24ea044d12d2 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plu…
+7adf21d36e9376ad445089e191a7715c9ab1f9503a23124094641d84ee5fcb7d | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plu…
+7c11922f7c6c8a75f21746ef8fca002aee59765f76ef5dfff1bbd846d75a38e0 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-klib-commo…
+74d0b9ba2bb0b42a4c8d64c6a2a2730511ec62eb69036ae4ab19d7dab54b0baf | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-klib-commo…
+080e8b3ceeeb2efce51d02384f5e22ff0d8df1a9bba94ae9015e30ac21a17490 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-native-uti…
+b9125d725ef4fd78fc2f4a4b7351bf6a94bc1bb39e653f69faee28d85807f27d | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-native-uti…
3277ac102ae17aad10a55abec75ff5696c8d109790396434b496e75087854203 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/1.…
57905524274a00ae028aaccc27283f6bc5925a934a046c1cc5d06c8ee4d6d5a9 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/1.…
230d91c2e410e3cfca3a4dc73d255455f62ff52aac091a33397a6e30bde91bf7 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/2.…
deed831efcb663e4cf3d5121e5ae796f201e37b813d2c7d607b5f1f8a86fe52e | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/2.…
-6fcdb7da6e65cf8cc43e5aabab94bdcc48825e7933686f8a1bf694eb88f8e00e | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-script-run…
-66099676703a081fd9ac43139665883e5c145020b640759de0539d8916ff247f | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-script-run…
-178edb62cda3e255fc80e270656f2848b6e0752f7b4b4c27e4a88cc537bea674 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-serializat…
-6f655d402b2ccb1b45c758f7ffbcaa05d187ab25ea07eb8ddfcaa674e1505973 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-serializat…
+ec61bf1229c837fa9f4255f34ca69816138b73158e7ae9b8d964cf92ca6dfd2e | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-script-run…
+2cf5d1123d8a628bcc5ee74f5b07b08c55a87ad4e9c91e13db83bb5a2ff6aa2d | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-script-run…
+542a36fe5ae5c35b7bb4cc297100f3634d3b5f97c7b5f78ce443621830bbbef4 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-serializat…
+c40459f0625eb8ab7628971b42faa29eded4bc875c25efbba3092694b0ffbe91 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-serializat…
0d10bc0d42b8605f23629a3f31ea27c19cdbca9dcdf4f53f6d22cd6366836d18 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk…
95c2189c35ef7bfc48951c32ad70847b21f3809d26f5d0a76e23570879988c30 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk…
adc16648dbbcf35b0d10e7ec301c35d746d1c2fe460c606aba59f12b117cf9b0 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk…
@@ -535,26 +535,33 @@ adc16648dbbcf35b0d10e7ec301c35d746d1c2fe460c606aba59f12b117cf9b0 | https://repo.
65d12d85a3b865c160db9147851712a64b10dadd68b22eea22a95bf8a8670dca | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/2.2…
a5b98fdcd9db017d542e197225dcee18d658a56de1db2cc41e13196d6b1769a4 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/2.2…
8c3c821007c13411558739b9f3d5382eb81551db3895cffb89561e56c0f4dc16 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/2.2…
-0ae12504a5040ebaf37703908483420d1a5624dd1d93f357665f8c77c848a01e | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/2.3…
-f4eb344fc4d1e3a28ae16c086ec3e42f52373b466d4308182fb386e392c0efa3 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/2.3…
-c83c02d9a7e2e954730491c33c2f1dc03c27662e27b566ec2b44d2d018639b98 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/2.3…
-367142781299bc0f9120c1deec0e62934a1af9ea7f01aaa9c5a5354dc5d8d7d9 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-tooling-co…
-47e3aefd24b5be62d807b6cbcd79c55b83f94b55cfe18efdc6e33ce11bf190e4 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-tooling-co…
-0e76e7471e91c53ea68d2d24ef1f29fb592ac5fbb0d1d10faa916430eff3daca | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-util-io/2.…
-95c28a828fc1f1e59e65638247a64f766d81d8b59f6d8debef2d18a0cc321f89 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-util-io/2.…
-a8994e0bca6846dfb19f458c4cc15d7b13779ca1b0d9f34880b5ff2c2a2b73b3 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-util-klib-…
-8f10291071aefabbd8e66ff9af7743a23881d69c6aaf28e13616cc0e95bd17b7 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-util-klib-…
-9562b8d3b7a04beba2b14c05671e713859ea54bbc0a2107e65b2bcf273fa8448 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-util-klib/…
-5a584c3cc2ba3b41d1e5cd7e7a2083576c1b8c397a79bb8163676d8ef7b0ea17 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-util-klib/…
+6f64eac736db9434dd6925b4a518b9d1d17177652320c37916cf9ba3ce7d7d7a | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/2.3…
+7b4ea4b2242bb177a4b4abb63c3f3d857331d40d35865e36fcc3db666ec10174 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/2.3…
+3e0b48daa14dc73f8029d8d9e15ed32940377caf7b915510f88d33219b350186 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/2.3…
+367142781299bc0f9120c1deec0e62934a1af9ea7f01aaa9c5a5354dc5d8d7d9 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-tooling-co…
+6d4986b03cec6815b7b132ecb76ad6c0b71ccda7904b3a114cf39700e9cac8e4 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-tooling-co…
+b768405cb843bc300ece1a5e80323e70f11bde12f0d91506d0cc99011be2f2d7 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-util-io/2.…
+9f43f9d3b81eb7e24f87a1080e080bf91ec379d4a91251339bf419da855b07ca | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-util-io/2.…
+76a10a55ca44831ea06a992384d880805f2a932016f1e6c14ac7345163d26e24 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-util-klib-…
+75dfd566fd07a11171c4d89b1b67051475e96f052c2affcd814362a71f7bb451 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-util-klib-…
+de0a1a66ca0a1f95f85800adc0c7719c0846076cc4ecd7be48577b740bee6fbb | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-util-klib/…
+062ef48f6b81309c38b2a04447bcac1773b2586e8d3d6befe908be97946da35d | https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-util-klib/…
e713f1f874244115a07571065cffa0f24f5e78300e9720fea16de3af1d75fd41 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutin…
092fe38103eec62e94540ca0cd61039ef8f7d8e46694ec033be1f63f0ea2013d | https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutin…
b92d3672e7f9e8f4c4e2ab187c3e31fecc506496396f4a5f27ee1c957a42b319 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutin…
+c2cb206d27017c7d1bf5ff179787397543d13748dbabb0d7237e1585e0b29044 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutin…
+7b7d1dddf188817deaad738e92e11faa5abdf937c87120cdf036102566ad4be3 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutin…
+224567420d3e0ed5fef40f789fded45dfd51b162319e28d77d3c9a8dec4821b8 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutin…
faf0c6538e53ddc0499a63664d8e763c216580b2e18e722ccbdf1b431a6afe26 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutin…
+f65860bce58a2bfadf05fdc516d38333421f0e387fef87e24449c0394c80d254 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutin…
1239e9dbe1397cd5971342956b2511bc3ace7b641842e4372a088dcfa8b9ad55 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutin…
bea5511e9001f2c593ab5080df131b219ab5e2085cc5979ce583eacd4946fd78 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutin…
5ca175b38df331fd64155b35cd8cae1251fa9ee369709b36d42e0a288ccce3fd | https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutin…
e9e4a74b4dbfe0f5ebeed88d49f3546c3ec3089419b20e5250403135c2c64c53 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutin…
658f576b96c832e7382406adb197d64d8e2e97de10e96dfa3700decfa2a60def | https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutin…
+d1d75aa01dffbb4d1c520e67e4c4e7f5f6174718e7cb4632412503f2f0e604fa | https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutin…
+5b255653ad6b1f21e0c46108605f129e3aa56ed9414849cc9f5b436441517528 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutin…
+dd54b97aa3fab91fc24f5df2916c22be9429a339d2f45b7ff092332f6c19dc39 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutin…
9860906a1937490bf5f3b06d2f0e10ef451e65b95b269f22daf68a3d1f5065c5 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutin…
ff6a22da40040938751db0ae21177e76517dbf126a76796f5426727bf76c1228 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutin…
a5633abd53467ceb91622d81f2e982080877145e0b76e1b75788715434885d0b | https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutin…
@@ -563,6 +570,8 @@ b321a899e40d3ce345707aa2cfda9983ad0dcc69fea74a9b8bf906a16c1cf8a9 | https://repo.
19c4889941b3aa098bd57cc64f02f9adacc654d571a12a956de4b5bb148c6499 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutin…
8fe254177e711a7cd18a3c06d8242fce945f41c2cca13dc19b33ae42a5435016 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutin…
519da5400096f3462a4dae80783ad050413d4bc81ec7ae53fae76aef0ccbed4c | https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutin…
+1e19785d34728b7525d7a77ff32ead4547d51cc7a45d4ac44d4de608169b0c0d | https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutin…
+41b6e78c1b0d11bc99de795390df9e4ece64dc113f482d6e308f1b7a421c1d30 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutin…
ad534034a953b4e12cbeeb874c66adf8b1ca14df15fe0d2e6547aa34e86dfeca | https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutin…
770f2793d05e2b027b9c799938ec1d2d4ef141ce5819c780c32c3995cadb0a47 | https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutin…
3be221b6da86dcda51cac6c4b2404b89e95ab09cc8d06a05689be2ef36735dec | https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-serializ…
=====================================
projects/firefox/config
=====================================
@@ -18,13 +18,13 @@ container:
use_container: 1
var:
- firefox_platform_version: '151.0a1'
+ firefox_platform_version: '152.0a1'
firefox_version: '[% c("var/firefox_platform_version") %]'
browser_series: '16.0'
- browser_rebase: 1
+ browser_rebase: 2
browser_branch: '[% c("var/browser_series") %]-[% c("var/browser_rebase") %]'
- browser_build: 4
- upstream_firefox_commit: FIREFOX_NIGHTLY_151_END
+ browser_build: 1
+ upstream_firefox_commit: FIREFOX_NIGHTLY_152_END
copyright_year: '[% exec("git show -s --format=%ci " _ c("git_hash") _ "^{commit}", { exec_noco => 1 }).remove("-.*") %]'
nightly_updates_publish_dir: '[% c("var/nightly_updates_publish_dir_prefix") %]nightly-[% c("var/osname") %]'
gitlab_project: https://gitlab.torproject.org/tpo/applications/tor-browser
=====================================
projects/geckoview/config
=====================================
@@ -21,12 +21,12 @@ container:
build_apk: '[% !c("var/online_build") %]'
var:
- firefox_platform_version: '151.0a1'
+ firefox_platform_version: '152.0a1'
geckoview_version: '[% c("var/firefox_platform_version") %]'
browser_series: '16.0'
- browser_rebase: 1
+ browser_rebase: 2
browser_branch: '[% c("var/browser_series") %]-[% c("var/browser_rebase") %]'
- browser_build: 4
+ browser_build: 1
gitlab_project: https://gitlab.torproject.org/tpo/applications/tor-browser
git_commit: '[% exec("git rev-parse " _ c("git_hash") _ "^{commit}", { exec_noco => 1 }) %]'
deps:
@@ -38,7 +38,7 @@ var:
- python3-zstandard
- pkg-config
- openjdk-17-jdk-headless
- gradle_version: 9.4.1
+ gradle_version: 9.5.1
glean_parser: 19.0.0
# python/mozboot/mozboot/android.py
bundletool_version: 1.18.3
@@ -73,6 +73,7 @@ targets:
var:
online_build: 1
generate_gradle_dependencies_list: 1
+ dev_artifacts: 0
steps:
build_apk:
=====================================
projects/geckoview/gradle-dependencies-list.txt
=====================================
The diff for this file was not included because it is too large.
=====================================
projects/glean-parser/config
=====================================
@@ -10,7 +10,6 @@ container:
var:
glean_wheels_sha256sum:
- 18.2.0: 4f8343a462834f8e27960de0783e83b514ebda0673c55a5fb384826083e4a0c9
19.0.0: e57f9f7a73a70ae4a78d4ce3d3c0c11288fef730f0747c5c3c8a42815e0c4625
deps:
- python3
=====================================
projects/glean/config
=====================================
@@ -1,9 +1,9 @@
# vim: filetype=yaml sw=2
-git_hash: 'a793015bad500379ec5480e280ac2631178a2013' # v67.0.0
+git_hash: '7cdba011f2f2dced1ba0e74537fe163eca0f2c45' # v67.3.1
git_url: https://github.com/mozilla/glean.git
filename: '[% project %]-[% c("version") %]-[% c("var/build_id") %].tar.[% c("compress_tar") %]'
# Check for mozilla-glean in gradle/libs.versions.toml in the tor-browser repository
-version: 67.2.0
+version: 67.3.1
container:
use_container: 1
disable_network:
@@ -11,7 +11,7 @@ container:
var:
gradle_version: 8.14.3
- glean_parser: 18.2.0
+ glean_parser: 19.0.0
steps:
build:
@@ -44,7 +44,7 @@ steps:
project: glean
pkg_type: cargo_vendor
norec:
- sha256sum: b6abe4d6e73183b087eed060e6e3c6dc699910ce60293811250dbcf733cc00eb
+ sha256sum: 3be545d36a5993dc0b51a692160b8378d7881cada4d155f3d1cab735279c0e6a
- filename: gradle-dependencies-list.txt
name: gradle-dependencies-list
- filename: 'gradle-dependencies-[% c("var/gradle_dependencies_version") %]'
=====================================
projects/gradle/config
=====================================
@@ -12,7 +12,7 @@ var:
export PATH=$PATH:$GRADLE_HOME/bin
gradle_sha256sum:
8.14.3: bd71102213493060956ec229d946beee57158dbd89d0e62b91bca0fa2c5f3531
- 9.4.1: 2ab2958f2a1e51120c326cad6f385153bb11ee93b3c216c5fccebfdfbb7ec6cb
+ 9.5.1: bafc141b619ad6350fd975fc903156dd5c151998cc8b058e8c1044ab5f7b031f
input_files:
- project: container-image
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. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1
0
[Git][tpo/applications/tor-browser-build][main] Bug 41807: fix generation of clickable Bugzilla query URL
by morgan (@morgan) 04 Jun '26
by morgan (@morgan) 04 Jun '26
04 Jun '26
morgan pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits:
7b4eb0f2 by Morgan at 2026-06-04T18:34:02+00:00
Bug 41807: fix generation of clickable Bugzilla query URL
- - - - -
1 changed file:
- tools/browser/generate-bugzilla-triage-csv.py
Changes:
=====================================
tools/browser/generate-bugzilla-triage-csv.py
=====================================
@@ -20,9 +20,9 @@ GITLAB_LABELS = [
GITLAB_MILESTONE = "Browser 16.0"
-def download_bugs(url):
- url += "&" if "?" in url else "?"
- url += "include_fields=id,product,component,summary"
+def download_bugs(query):
+ url = f"https://bugzilla.mozilla.org/rest/bug?{query}&include_fields=id,product,com…"
+
r = requests.get(url)
r.raise_for_status()
# {"bugs": [ {...}, ... ]}
@@ -76,9 +76,9 @@ def extract_from_git(repo_path, ff_version, bugs):
# So, we expect this number to be quite low and that it will be
# possible to fetch all these bugs in a single pass.
if seen_ids:
- url = "https://bugzilla.mozilla.org/rest/bug?id="
- url += ",".join([str(i) for i in seen_ids])
- results.update(download_bugs(url))
+ query = "id="
+ query += ",".join([str(i) for i in seen_ids])
+ results.update(download_bugs(query))
bugs.update(results)
@@ -147,7 +147,7 @@ def generate_csv(bugs, audit_issue, query, output_path):
writer.writerow(["FALSE", create_link, component, bugzilla_link])
writer.writerow([])
- writer.writerow([make_hyperlink(query, "Bugzilla query")])
+ writer.writerow([make_hyperlink(f"https://bugzilla.mozilla.org/buglist.cgi?{query}", "Bugzilla query")])
def main():
@@ -191,7 +191,7 @@ def main():
sys.exit(1)
excluded_products = "Thunderbird,Calendar,Chat%20Core,MailNews%20Core"
- query = f"https://bugzilla.mozilla.org/rest/bug?f1=product&n1=1&o1=anyexact&v1={exclu…"
+ query = f"f1=product&n1=1&o1=anyexact&v1={excluded_products}&f2=target_milestone&o2=substring&v2={args.ff_version}&limit=0"
bugs = download_bugs(query)
extract_from_git(args.repo_path, args.ff_version, bugs)
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/7…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/7…
You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1
0
[Git][tpo/applications/tor-browser-build][maint-15.0] Bug 41802: Remove the tor daemon requirement for signing
by ma1 (@ma1) 04 Jun '26
by ma1 (@ma1) 04 Jun '26
04 Jun '26
ma1 pushed to branch maint-15.0 at The Tor Project / Applications / tor-browser-build
Commits:
0f2771f3 by hackademix at 2026-06-04T17:46:52+02:00
Bug 41802: Remove the tor daemon requirement for signing
- - - - -
5 changed files:
- .gitlab/issue_templates/Release Prep - Mullvad Browser Alpha.md
- .gitlab/issue_templates/Release Prep - Mullvad Browser Stable.md
- .gitlab/issue_templates/Release Prep - Tor Browser Alpha.md
- .gitlab/issue_templates/Release Prep - Tor Browser Stable.md
- tools/signing/authenticode-timestamping.sh
Changes:
=====================================
.gitlab/issue_templates/Release Prep - Mullvad Browser Alpha.md
=====================================
@@ -146,7 +146,6 @@ Mullvad Browser Alpha (and Nightly) are on the `main` branch
- `appstoreconnect_api_key_path`: path to json file containing appstoreconnect api key infos
- [ ] `set-config.update-responses`
- `update_responses_repository_dir`: directory where you cloned `git@gitlab.torproject.org:tpo/applications/mullvad-browser-update-responses.git`
-- [ ] On `${STAGING_SERVER}` in a separate `screen` session, ensure tor daemon is running with SOCKS5 proxy on the default port 9050
- [ ] On `${STAGING_SERVER}` in a separate `screen` session, run do-all-signing script:
- Run:
```bash
=====================================
.gitlab/issue_templates/Release Prep - Mullvad Browser Stable.md
=====================================
@@ -145,11 +145,6 @@ Mullvad Browser Stable is on the `maint-${MULLVAD_BROWSER_MAJOR}.${MULLVAD_BROWS
- `appstoreconnect_api_key_path`: path to json file containing appstoreconnect api key infos
- [ ] `set-config.update-responses`
- `update_responses_repository_dir`: directory where you cloned `git@gitlab.torproject.org:tpo/applications/mullvad-browser-update-responses.git`
- - [ ] `tor-browser-build/tools/signing/set-config.tbb-version`
- - `tbb_version`: mullvad browser version string, same as `var/torbrowser_version` in `rbm.conf` (examples: `11.5a12`, `11.0.13`)
- - `tbb_version_build`: the tor-browser-build build number (if `var/torbrowser_build` in `rbm.conf` is `buildN` then this value is `N`)
- - `tbb_version_type`: either `alpha` for alpha releases or `release` for stable releases
-- [ ] On `${STAGING_SERVER}` in a separate `screen` session, ensure tor daemon is running with SOCKS5 proxy on the default port 9050
- [ ] On `${STAGING_SERVER}` in a separate `screen` session, run do-all-signing script:
- Run:
```bash
=====================================
.gitlab/issue_templates/Release Prep - Tor Browser Alpha.md
=====================================
@@ -203,7 +203,6 @@ Tor Browser Alpha (and Nightly) are on the `main` branch
- `appstoreconnect_api_key_path`: path to json file containing appstoreconnect api key infos
- [ ] `set-config.update-responses`
- `update_responses_repository_dir`: directory where you cloned `git@gitlab.torproject.org:tpo/applications/tor-browser-update-responses.git`
-- [ ] On `${STAGING_SERVER}` in a separate `screen` session, ensure tor daemon is running with SOCKS5 proxy on the default port 9050
- [ ] On `${STAGING_SERVER}` in a separate `screen` session, run do-all-signing script:
- Run:
```bash
=====================================
.gitlab/issue_templates/Release Prep - Tor Browser Stable.md
=====================================
@@ -224,11 +224,6 @@ Tor Browser Stable is on the `maint-${TOR_BROWSER_MAJOR}.${TOR_BROWSER_MINOR}` b
- `appstoreconnect_api_key_path`: path to json file containing appstoreconnect api key infos
- [ ] `set-config.update-responses`
- `update_responses_repository_dir`: directory where you cloned `git@gitlab.torproject.org:tpo/applications/tor-browser-update-responses.git`
- - [ ] `tor-browser-build/tools/signing/set-config.tbb-version`
- - `tbb_version`: tor browser version string, same as `var/torbrowser_version` in `rbm.conf` (examples: `11.5a12`, `11.0.13`)
- - `tbb_version_build`: the tor-browser-build build number (if `var/torbrowser_build` in `rbm.conf` is `buildN` then this value is `N`)
- - `tbb_version_type`: either `alpha` for alpha releases or `release` for stable releases
-- [ ] On `${STAGING_SERVER}` in a separate `screen` session, ensure tor daemon is running with SOCKS5 proxy on the default port 9050
- [ ] On `${STAGING_SERVER}` in a separate `screen` session, run do-all-signing script:
- Run:
```bash
=====================================
tools/signing/authenticode-timestamping.sh
=====================================
@@ -57,7 +57,6 @@ for i in `find . -name "*.exe" -print`
do
osslsigncode add \
-t http://timestamp.digicert.com \
- -p socks://127.0.0.1:9050 \
$i $i-timestamped
COUNT=$((COUNT + 1))
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/0…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/0…
You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1
0
[Git][tpo/applications/mullvad-browser][mullvad-browser-152.0a1-16.0-2] fixup! BB 40925: Implemented the Security Level component
by Pier Angelo Vendrame (@pierov) 04 Jun '26
by Pier Angelo Vendrame (@pierov) 04 Jun '26
04 Jun '26
Pier Angelo Vendrame pushed to branch mullvad-browser-152.0a1-16.0-2 at The Tor Project / Applications / Mullvad Browser
Commits:
15f72d35 by Pier Angelo Vendrame at 2026-06-04T12:46:14+02:00
fixup! BB 40925: Implemented the Security Level component
BB 45037: Fix a potential runtime error in search service.
Upstream code has been updated after our initial patch, but that code
path is hard to trigger, if not impossible, so we never actually found
the bug until checking that code for other reasons.
- - - - -
1 changed file:
- toolkit/components/search/SearchService.sys.mjs
Changes:
=====================================
toolkit/components/search/SearchService.sys.mjs
=====================================
@@ -3806,9 +3806,9 @@ export const SearchService = new (class SearchService {
case TOPIC_JSENABLED_CHANGED:
lazy.logConsole.debug("JavaScript toggled");
- this._maybeReloadEngines(
- Ci.nsISearchService.CHANGE_REASON_CONFIG
- ).catch(console.error);
+ this.#maybeReloadEngines(this.CHANGE_REASON.CONFIG).catch(
+ console.error
+ );
break;
}
}
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/15f…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/15f…
You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1
0
[Git][tpo/applications/tor-browser][tor-browser-152.0a1-16.0-2] fixup! BB 40925: Implemented the Security Level component
by Pier Angelo Vendrame (@pierov) 04 Jun '26
by Pier Angelo Vendrame (@pierov) 04 Jun '26
04 Jun '26
Pier Angelo Vendrame pushed to branch tor-browser-152.0a1-16.0-2 at The Tor Project / Applications / Tor Browser
Commits:
9ee131d9 by Pier Angelo Vendrame at 2026-06-04T11:10:54+02:00
fixup! BB 40925: Implemented the Security Level component
BB 45037: Fix a potential runtime error in search service.
Upstream code has been updated after our initial patch, but that code
path is hard to trigger, if not impossible, so we never actually found
the bug until checking that code for other reasons.
- - - - -
1 changed file:
- toolkit/components/search/SearchService.sys.mjs
Changes:
=====================================
toolkit/components/search/SearchService.sys.mjs
=====================================
@@ -3796,9 +3796,9 @@ export const SearchService = new (class SearchService {
case TOPIC_JSENABLED_CHANGED:
lazy.logConsole.debug("JavaScript toggled");
- this._maybeReloadEngines(
- Ci.nsISearchService.CHANGE_REASON_CONFIG
- ).catch(console.error);
+ this.#maybeReloadEngines(this.CHANGE_REASON.CONFIG).catch(
+ console.error
+ );
break;
}
}
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/9ee131d…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/9ee131d…
You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1
0
[Git][tpo/applications/tor-browser-build][main] Bug 41802: Remove the tor daemon requirement for signing
by ma1 (@ma1) 04 Jun '26
by ma1 (@ma1) 04 Jun '26
04 Jun '26
ma1 pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits:
7d331b11 by hackademix at 2026-06-04T09:29:11+02:00
Bug 41802: Remove the tor daemon requirement for signing
- - - - -
5 changed files:
- .gitlab/issue_templates/040 Release Prep - Tor Browser Alpha.md
- .gitlab/issue_templates/041 Release Prep - Tor Browser Stable.md
- .gitlab/issue_templates/050 Release Prep - Mullvad Browser Alpha.md
- .gitlab/issue_templates/051 Release Prep - Mullvad Browser Stable.md
- tools/signing/authenticode-timestamping.sh
Changes:
=====================================
.gitlab/issue_templates/040 Release Prep - Tor Browser Alpha.md
=====================================
@@ -204,7 +204,6 @@ Tor Browser Alpha (and Nightly) are on the `main` branch
- `appstoreconnect_api_key_path`: path to json file containing appstoreconnect api key infos
- [ ] `set-config.update-responses`
- `update_responses_repository_dir`: directory where you cloned `git@gitlab.torproject.org:tpo/applications/tor-browser-update-responses.git`
-- [ ] On `${STAGING_SERVER}` in a separate `screen` session, ensure tor daemon is running with SOCKS5 proxy on the default port 9050
- [ ] On `${STAGING_SERVER}` in a separate `screen` session, run do-all-signing script:
- Run:
```bash
=====================================
.gitlab/issue_templates/041 Release Prep - Tor Browser Stable.md
=====================================
@@ -220,7 +220,6 @@ Tor Browser Stable is on the `maint-${TOR_BROWSER_MAJOR}.${TOR_BROWSER_MINOR}` b
- `appstoreconnect_api_key_path`: path to json file containing appstoreconnect api key infos
- [ ] `set-config.update-responses`
- `update_responses_repository_dir`: directory where you cloned `git@gitlab.torproject.org:tpo/applications/tor-browser-update-responses.git`
-- [ ] On `${STAGING_SERVER}` in a separate `screen` session, ensure tor daemon is running with SOCKS5 proxy on the default port 9050
- [ ] On `${STAGING_SERVER}` in a separate `screen` session, run do-all-signing script:
- Run:
```bash
=====================================
.gitlab/issue_templates/050 Release Prep - Mullvad Browser Alpha.md
=====================================
@@ -146,7 +146,6 @@ Mullvad Browser Alpha (and Nightly) are on the `main` branch
- `appstoreconnect_api_key_path`: path to json file containing appstoreconnect api key infos
- [ ] `set-config.update-responses`
- `update_responses_repository_dir`: directory where you cloned `git@gitlab.torproject.org:tpo/applications/mullvad-browser-update-responses.git`
-- [ ] On `${STAGING_SERVER}` in a separate `screen` session, ensure tor daemon is running with SOCKS5 proxy on the default port 9050
- [ ] On `${STAGING_SERVER}` in a separate `screen` session, run do-all-signing script:
- Run:
```bash
=====================================
.gitlab/issue_templates/051 Release Prep - Mullvad Browser Stable.md
=====================================
@@ -145,7 +145,6 @@ Mullvad Browser Stable is on the `maint-${MULLVAD_BROWSER_MAJOR}.${MULLVAD_BROWS
- `appstoreconnect_api_key_path`: path to json file containing appstoreconnect api key infos
- [ ] `set-config.update-responses`
- `update_responses_repository_dir`: directory where you cloned `git@gitlab.torproject.org:tpo/applications/mullvad-browser-update-responses.git`
-- [ ] On `${STAGING_SERVER}` in a separate `screen` session, ensure tor daemon is running with SOCKS5 proxy on the default port 9050
- [ ] On `${STAGING_SERVER}` in a separate `screen` session, run do-all-signing script:
- Run:
```bash
=====================================
tools/signing/authenticode-timestamping.sh
=====================================
@@ -57,7 +57,6 @@ for i in `find . -name "*.exe" -print`
do
osslsigncode add \
-t http://timestamp.digicert.com \
- -p socks://127.0.0.1:9050 \
$i $i-timestamped
COUNT=$((COUNT + 1))
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/7…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/7…
You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1
0
[Git][tpo/applications/tor-browser-update-responses][main] 6 commits: alpha: new version, 16.0a7 (linux-aarch64)
by ma1 (@ma1) 03 Jun '26
by ma1 (@ma1) 03 Jun '26
03 Jun '26
ma1 pushed to branch main at The Tor Project / Applications / Tor Browser update responses
Commits:
b4d2ae56 by hackademix at 2026-06-03T23:51:38+02:00
alpha: new version, 16.0a7 (linux-aarch64)
- - - - -
7a0d4fce by hackademix at 2026-06-03T23:51:39+02:00
alpha: new version, 16.0a7 (linux-x86_64)
- - - - -
a324d037 by hackademix at 2026-06-03T23:51:39+02:00
alpha: new version, 16.0a7 (macos)
- - - - -
1010ada6 by hackademix at 2026-06-03T23:51:39+02:00
alpha: new version, 16.0a7 (windows-i686)
- - - - -
0f0b8cbf by hackademix at 2026-06-03T23:51:39+02:00
alpha: new version, 16.0a7 (windows-x86_64)
- - - - -
57611d63 by hackademix at 2026-06-03T23:51:39+02:00
alpha: new version, 16.0a7
- - - - -
34 changed files:
- update_3/alpha/download-android-aarch64.json
- update_3/alpha/download-android-armv7.json
- update_3/alpha/download-android-x86_64.json
- update_3/alpha/download-linux-aarch64.json
- update_3/alpha/download-linux-x86_64.json
- update_3/alpha/download-macos.json
- update_3/alpha/download-windows-i686.json
- update_3/alpha/download-windows-x86_64.json
- update_3/alpha/downloads.json
- update_3/alpha/linux-aarch64/.htaccess
- update_3/alpha/linux-aarch64/update-16.0a3-16.0a6-linux-aarch64.xml → update_3/alpha/linux-aarch64/update-16.0a4-16.0a7-linux-aarch64.xml
- update_3/alpha/linux-aarch64/update-16.0a4-16.0a6-linux-aarch64.xml → update_3/alpha/linux-aarch64/update-16.0a5-16.0a7-linux-aarch64.xml
- update_3/alpha/linux-aarch64/update-16.0a5-16.0a6-linux-aarch64.xml → update_3/alpha/linux-aarch64/update-16.0a6-16.0a7-linux-aarch64.xml
- update_3/alpha/linux-aarch64/update-16.0a6-linux-aarch64.xml → update_3/alpha/linux-aarch64/update-16.0a7-linux-aarch64.xml
- update_3/alpha/linux-x86_64/.htaccess
- update_3/alpha/linux-x86_64/update-16.0a3-16.0a6-linux-x86_64.xml → update_3/alpha/linux-x86_64/update-16.0a4-16.0a7-linux-x86_64.xml
- update_3/alpha/linux-x86_64/update-16.0a4-16.0a6-linux-x86_64.xml → update_3/alpha/linux-x86_64/update-16.0a5-16.0a7-linux-x86_64.xml
- update_3/alpha/linux-x86_64/update-16.0a5-16.0a6-linux-x86_64.xml → update_3/alpha/linux-x86_64/update-16.0a6-16.0a7-linux-x86_64.xml
- update_3/alpha/linux-x86_64/update-16.0a6-linux-x86_64.xml → update_3/alpha/linux-x86_64/update-16.0a7-linux-x86_64.xml
- update_3/alpha/macos/.htaccess
- update_3/alpha/macos/update-16.0a3-16.0a6-macos.xml → update_3/alpha/macos/update-16.0a4-16.0a7-macos.xml
- update_3/alpha/macos/update-16.0a4-16.0a6-macos.xml → update_3/alpha/macos/update-16.0a5-16.0a7-macos.xml
- update_3/alpha/macos/update-16.0a5-16.0a6-macos.xml → update_3/alpha/macos/update-16.0a6-16.0a7-macos.xml
- update_3/alpha/macos/update-16.0a6-macos.xml → update_3/alpha/macos/update-16.0a7-macos.xml
- update_3/alpha/windows-i686/.htaccess
- update_3/alpha/windows-i686/update-16.0a3-16.0a6-windows-i686.xml → update_3/alpha/windows-i686/update-16.0a4-16.0a7-windows-i686.xml
- update_3/alpha/windows-i686/update-16.0a4-16.0a6-windows-i686.xml → update_3/alpha/windows-i686/update-16.0a5-16.0a7-windows-i686.xml
- update_3/alpha/windows-i686/update-16.0a5-16.0a6-windows-i686.xml → update_3/alpha/windows-i686/update-16.0a6-16.0a7-windows-i686.xml
- update_3/alpha/windows-i686/update-16.0a6-windows-i686.xml → update_3/alpha/windows-i686/update-16.0a7-windows-i686.xml
- update_3/alpha/windows-x86_64/.htaccess
- update_3/alpha/windows-x86_64/update-16.0a3-16.0a6-windows-x86_64.xml → update_3/alpha/windows-x86_64/update-16.0a4-16.0a7-windows-x86_64.xml
- update_3/alpha/windows-x86_64/update-16.0a4-16.0a6-windows-x86_64.xml → update_3/alpha/windows-x86_64/update-16.0a5-16.0a7-windows-x86_64.xml
- update_3/alpha/windows-x86_64/update-16.0a5-16.0a6-windows-x86_64.xml → update_3/alpha/windows-x86_64/update-16.0a6-16.0a7-windows-x86_64.xml
- update_3/alpha/windows-x86_64/update-16.0a6-windows-x86_64.xml → update_3/alpha/windows-x86_64/update-16.0a7-windows-x86_64.xml
The diff was not included because it is too large.
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses…
You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1
0
[Git][tpo/applications/tor-browser][tor-browser-152.0a1-16.0-2] 13 commits: TB 44806: Implement the tor integration in Rust.
by Pier Angelo Vendrame (@pierov) 03 Jun '26
by Pier Angelo Vendrame (@pierov) 03 Jun '26
03 Jun '26
Pier Angelo Vendrame pushed to branch tor-browser-152.0a1-16.0-2 at The Tor Project / Applications / Tor Browser
Commits:
6c379595 by Elena at 2026-06-03T21:49:11+02:00
TB 44806: Implement the tor integration in Rust.
- - - - -
59260037 by Elena at 2026-06-03T21:49:12+02:00
fixup! TB 44806: Implement the tor integration in Rust.
TB 44924: Create a control port client in Rust.
Created a basic Tor Service in Rust.
- - - - -
cf73b34c by Elena at 2026-06-03T21:49:12+02:00
fixup! TB 44806: Implement the tor integration in Rust.
TB 44924: Create a control port client in Rust.
Added the tor_provider crate.
For technical limitations, Rust tests cannot be run when linking to
xpcom and other Firefox's crates.
So, we will implement most of the code in this new crate, and use the
tor_service crate only for the integration.
- - - - -
06c8f013 by Elena at 2026-06-03T21:49:13+02:00
fixup! TB 44806: Implement the tor integration in Rust.
TB 44924: Create a control port client in Rust.
Implemented a reply parser+dispatcher.
- - - - -
6c3d0eaf by Elena at 2026-06-03T21:49:13+02:00
fixup! TB 44806: Implement the tor integration in Rust.
TB 44924: Create a control port client in Rust.
Implemented a basic control port.
- - - - -
e55c903e by Elena at 2026-06-03T21:49:14+02:00
fixup! TB 44806: Implement the tor integration in Rust.
TB 44924: Create a control port client in Rust.
Started an XPCOM control socket.
- - - - -
ff1ed8ec by Elena at 2026-06-03T21:49:14+02:00
fixup! TB 44806: Implement the tor integration in Rust.
TB 44924: Create a control port client in Rust.
Implemented a first chunk of control socket methods.
- - - - -
00506dc5 by Elena at 2026-06-03T21:49:14+02:00
fixup! TB 44806: Implement the tor integration in Rust.
TB 44924: Create a control port client in Rust.
Implemented the socket wait methods.
- - - - -
72e84e61 by Elena at 2026-06-03T21:49:15+02:00
fixup! TB 44806: Implement the tor integration in Rust.
TB 44924: Create a control port client in Rust.
Implemented the command writer.
- - - - -
13d90317 by Elena at 2026-06-03T21:49:15+02:00
fixup! TB 44806: Implement the tor integration in Rust.
TB 44924: Create a control port client in Rust.
Implemented the message pump.
- - - - -
f1c8a360 by Elena at 2026-06-03T21:49:16+02:00
fixup! TB 44806: Implement the tor integration in Rust.
TB 44924: Create a control port client in Rust.
Create an ITorControlPort XPCOM type.
- - - - -
327e8d36 by Elena at 2026-06-03T21:49:16+02:00
fixup! TB 44806: Implement the tor integration in Rust.
TB 44924: Create a control port client in Rust.
Wired the JS control port to the Rust IO.
- - - - -
61123a5c by Elena at 2026-06-03T21:58:12+02:00
fixup! TB 44806: Implement the tor integration in Rust.
TB 44924: Create a control port client in Rust.
Started some xpcshell tests.
- - - - -
37 changed files:
- Cargo.lock
- toolkit/components/moz.build
- + toolkit/components/tor-integration/ITorService.idl
- + toolkit/components/tor-integration/TorService.h
- + toolkit/components/tor-integration/components.conf
- + toolkit/components/tor-integration/moz.build
- + toolkit/components/tor-integration/test/xpcshell/head.js
- + toolkit/components/tor-integration/test/xpcshell/test_control_port.js
- + toolkit/components/tor-integration/test/xpcshell/xpcshell.toml
- + toolkit/components/tor-integration/tor_provider/Cargo.toml
- + toolkit/components/tor-integration/tor_provider/src/ctor/control_port/command_writer.rs
- + toolkit/components/tor-integration/tor_provider/src/ctor/control_port/control_port.rs
- + toolkit/components/tor-integration/tor_provider/src/ctor/control_port/control_socket.rs
- + toolkit/components/tor-integration/tor_provider/src/ctor/control_port/error.rs
- + toolkit/components/tor-integration/tor_provider/src/ctor/control_port/message_pump.rs
- + toolkit/components/tor-integration/tor_provider/src/ctor/control_port/mod.rs
- + toolkit/components/tor-integration/tor_provider/src/ctor/mod.rs
- + toolkit/components/tor-integration/tor_provider/src/ctor/reply_parser/dispatcher.rs
- + toolkit/components/tor-integration/tor_provider/src/ctor/reply_parser/error.rs
- + toolkit/components/tor-integration/tor_provider/src/ctor/reply_parser/factory.rs
- + toolkit/components/tor-integration/tor_provider/src/ctor/reply_parser/line.rs
- + toolkit/components/tor-integration/tor_provider/src/ctor/reply_parser/mod.rs
- + toolkit/components/tor-integration/tor_provider/src/ctor/reply_parser/reply.rs
- + toolkit/components/tor-integration/tor_provider/src/ctor/reply_parser/replybuf.rs
- + toolkit/components/tor-integration/tor_provider/src/ctor/reply_parser/test_utils.rs
- + toolkit/components/tor-integration/tor_provider/src/lib.rs
- + toolkit/components/tor-integration/tor_service/Cargo.toml
- + toolkit/components/tor-integration/tor_service/src/control_port.rs
- + toolkit/components/tor-integration/tor_service/src/control_socket.rs
- + toolkit/components/tor-integration/tor_service/src/lib.rs
- + toolkit/components/tor-integration/tor_service/src/service.rs
- toolkit/components/tor-launcher/TorControlPort.sys.mjs
- toolkit/library/rust/gkrust-features.mozbuild
- toolkit/library/rust/shared/Cargo.toml
- toolkit/library/rust/shared/lib.rs
- toolkit/moz.configure
- tools/lint/eslint/eslint-plugin-mozilla/lib/services.json
The diff was not included because it is too large.
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/37c33e…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/37c33e…
You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1
0
[Git][tpo/applications/tor-browser][tor-browser-152.0a1-16.0-2] fixup! Add CI for Tor Browser
by brizental (@brizental) 03 Jun '26
by brizental (@brizental) 03 Jun '26
03 Jun '26
brizental pushed to branch tor-browser-152.0a1-16.0-2 at The Tor Project / Applications / Tor Browser
Commits:
37c33e23 by Beatriz Rizental at 2026-06-03T14:58:26-03:00
fixup! Add CI for Tor Browser
Bug 454036: Increase permissions in tor-browser folder to allow building
- - - - -
1 changed file:
- .gitlab/ci/containers/base/Containerfile
Changes:
=====================================
.gitlab/ci/containers/base/Containerfile
=====================================
@@ -18,8 +18,12 @@ RUN apt-get update && apt-get install -y \
RUN git clone --single-branch --depth 1 https://gitlab.torproject.org/tpo/applications/tor-browser.git
# Bootstrap will download and install all dependencies required for building / linting / etc.
+#
+# Note: mozcheck is usually built at lint time and not fetched at bootstrap time.
+# We need to do it manually so it's available come lint time.
RUN cd tor-browser && \
yes | MOZBUILD_STATE_PATH=/var/tmp/mozbuild ./mach bootstrap --application-choice "$APPLICATION_CHOICE" && \
+ ./mach artifact toolchain --from-build toolchain-linux64-mozcheck && mv mozcheck /var/tmp/mozbuild && \
cd ..
RUN rm -rf tor-browser && \
@@ -40,6 +44,7 @@ WORKDIR /home/gitlab-runner
# Install Rust for the gitlab-runner user.
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
ENV PATH="/var/tmp/mozbuild/clang/bin:/home/gitlab-runner/.cargo/bin:$PATH"
+ENV MOZ_FETCHES_DIR="/var/tmp/mozbuild"
RUN echo "$APPLICATION_CHOICE" | grep -qi android && \
rustup target add armv7-linux-androideabi \
aarch64-linux-android \
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/37c33e2…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/37c33e2…
You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1
0