tbb-commits
Threads by month
- ----- 2026 -----
- 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 2026
- 1 participants
- 99 discussions
[Git][tpo/applications/mullvad-browser][mullvad-browser-146.0a1-16.0-2] fixup! BB 42305: Add script to combine translation files across versions.
by henry (@henry) 15 Jan '26
by henry (@henry) 15 Jan '26
15 Jan '26
henry pushed to branch mullvad-browser-146.0a1-16.0-2 at The Tor Project / Applications / Mullvad Browser
Commits:
33bb7080 by henry at 2026-01-15T13:47:13+00:00
fixup! BB 42305: Add script to combine translation files across versions.
TB 44498: Change the expected browser version gap between stable and
alpha from 0.5 to 1.0.
(cherry picked from commit 0f10cc1e6af605090cbd0ba4dbc0615c6f51e286)
Co-authored-by: Henry Wilkes <henry(a)torproject.org>
- - - - -
1 changed file:
- tools/base_browser/l10n/combine-translation-versions.py
Changes:
=====================================
tools/base_browser/l10n/combine-translation-versions.py
=====================================
@@ -103,10 +103,11 @@ class BrowserBranch:
self.name = branch_name
self.prefix = version_match.group("prefix")
- self.browser_version = version_match.group("browser")
+ browser_version_str = version_match.group("browser")
+ self.browser_version = float(browser_version_str)
# Convert tor-browser to "Tor Browser", and similar.
browser_name = self.prefix.replace("-", " ").title()
- self.browser_version_name = f"{browser_name} {self.browser_version}"
+ self.browser_version_name = f"{browser_name} {browser_version_str}"
self._is_head = is_head
self._ref = "HEAD" if is_head else f"origin/{branch_name}"
@@ -114,7 +115,7 @@ class BrowserBranch:
firefox_nums = [int(n) for n in version_match.group("firefox").split(".")]
if len(firefox_nums) == 2:
firefox_nums.append(0)
- browser_nums = [int(n) for n in self.browser_version.split(".")]
+ browser_nums = [int(n) for n in browser_version_str.split(".")]
branch_number = int(version_match.group("number"))
# Prioritise the firefox ESR version, then the browser version then the
# branch number.
@@ -127,25 +128,8 @@ class BrowserBranch:
branch_number,
)
- # Minor version for browser is only ever "0" or "5", so we can convert
- # the version to an integer.
- self._browser_int_version = int(2 * float(self.browser_version))
-
self._file_paths: list[str] | None = None
- def release_below(self, other: "BrowserBranch", num: int) -> bool:
- """Determine whether another branch is within range of a previous
- browser release.
-
- The browser versions are expected to increment by "0.5", and a previous
- release branch's version is expected to be `num * 0.5` behind the
- current one.
-
- :param other: The branch to compare.
- :param num: The number of "0.5" releases behind to test with.
- """
- return other._browser_int_version == self._browser_int_version - num
-
def __lt__(self, other: "BrowserBranch") -> bool:
return self._ordered < other._ordered
@@ -259,16 +243,14 @@ def get_stable_branch(
# Stable can be one release version behind.
# NOTE: In principle, when switching between versions there may be a
# window of time where the development branch has not yet progressed
- # to the next "0.5" release, so has the same browser version as the
+ # to the next ".0" release, so has the same browser version as the
# stable branch. So we also allow for matching browser versions.
# NOTE:
# 1. The "Will be unused in" message will not make sense, but we do
# not expect string differences in this scenario.
# 2. We do not expect this scenario to last for long.
- if not (
- compare_version.release_below(branch, 1)
- or compare_version.release_below(branch, 0)
- ):
+ release_diff = compare_version.browser_version - branch.browser_version
+ if release_diff < 0.0 or release_diff > 1.0:
continue
stable_branches.append(branch)
elif is_legacy:
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/33b…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/33b…
You're receiving this email because of your account on gitlab.torproject.org.
1
0
[Git][tpo/applications/tor-browser][base-browser-147.0a1-16.0-2] fixup! BB 42305: Add script to combine translation files across versions.
by henry (@henry) 15 Jan '26
by henry (@henry) 15 Jan '26
15 Jan '26
henry pushed to branch base-browser-147.0a1-16.0-2 at The Tor Project / Applications / Tor Browser
Commits:
7a1c5d8e by henry at 2026-01-15T13:44:46+00:00
fixup! BB 42305: Add script to combine translation files across versions.
TB 44498: Change the expected browser version gap between stable and
alpha from 0.5 to 1.0.
(cherry picked from commit 0f10cc1e6af605090cbd0ba4dbc0615c6f51e286)
Co-authored-by: Henry Wilkes <henry(a)torproject.org>
- - - - -
1 changed file:
- tools/base_browser/l10n/combine-translation-versions.py
Changes:
=====================================
tools/base_browser/l10n/combine-translation-versions.py
=====================================
@@ -103,10 +103,11 @@ class BrowserBranch:
self.name = branch_name
self.prefix = version_match.group("prefix")
- self.browser_version = version_match.group("browser")
+ browser_version_str = version_match.group("browser")
+ self.browser_version = float(browser_version_str)
# Convert tor-browser to "Tor Browser", and similar.
browser_name = self.prefix.replace("-", " ").title()
- self.browser_version_name = f"{browser_name} {self.browser_version}"
+ self.browser_version_name = f"{browser_name} {browser_version_str}"
self._is_head = is_head
self._ref = "HEAD" if is_head else f"origin/{branch_name}"
@@ -114,7 +115,7 @@ class BrowserBranch:
firefox_nums = [int(n) for n in version_match.group("firefox").split(".")]
if len(firefox_nums) == 2:
firefox_nums.append(0)
- browser_nums = [int(n) for n in self.browser_version.split(".")]
+ browser_nums = [int(n) for n in browser_version_str.split(".")]
branch_number = int(version_match.group("number"))
# Prioritise the firefox ESR version, then the browser version then the
# branch number.
@@ -127,25 +128,8 @@ class BrowserBranch:
branch_number,
)
- # Minor version for browser is only ever "0" or "5", so we can convert
- # the version to an integer.
- self._browser_int_version = int(2 * float(self.browser_version))
-
self._file_paths: list[str] | None = None
- def release_below(self, other: "BrowserBranch", num: int) -> bool:
- """Determine whether another branch is within range of a previous
- browser release.
-
- The browser versions are expected to increment by "0.5", and a previous
- release branch's version is expected to be `num * 0.5` behind the
- current one.
-
- :param other: The branch to compare.
- :param num: The number of "0.5" releases behind to test with.
- """
- return other._browser_int_version == self._browser_int_version - num
-
def __lt__(self, other: "BrowserBranch") -> bool:
return self._ordered < other._ordered
@@ -259,16 +243,14 @@ def get_stable_branch(
# Stable can be one release version behind.
# NOTE: In principle, when switching between versions there may be a
# window of time where the development branch has not yet progressed
- # to the next "0.5" release, so has the same browser version as the
+ # to the next ".0" release, so has the same browser version as the
# stable branch. So we also allow for matching browser versions.
# NOTE:
# 1. The "Will be unused in" message will not make sense, but we do
# not expect string differences in this scenario.
# 2. We do not expect this scenario to last for long.
- if not (
- compare_version.release_below(branch, 1)
- or compare_version.release_below(branch, 0)
- ):
+ release_diff = compare_version.browser_version - branch.browser_version
+ if release_diff < 0.0 or release_diff > 1.0:
continue
stable_branches.append(branch)
elif is_legacy:
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/7a1c5d8…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/7a1c5d8…
You're receiving this email because of your account on gitlab.torproject.org.
1
0
[Git][tpo/applications/tor-browser][tor-browser-147.0a1-16.0-2] fixup! BB 42305: Add script to combine translation files across versions.
by henry (@henry) 15 Jan '26
by henry (@henry) 15 Jan '26
15 Jan '26
henry pushed to branch tor-browser-147.0a1-16.0-2 at The Tor Project / Applications / Tor Browser
Commits:
0f10cc1e by Henry Wilkes at 2026-01-15T13:43:12+00:00
fixup! BB 42305: Add script to combine translation files across versions.
TB 44498: Change the expected browser version gap between stable and
alpha from 0.5 to 1.0.
- - - - -
1 changed file:
- tools/base_browser/l10n/combine-translation-versions.py
Changes:
=====================================
tools/base_browser/l10n/combine-translation-versions.py
=====================================
@@ -103,10 +103,11 @@ class BrowserBranch:
self.name = branch_name
self.prefix = version_match.group("prefix")
- self.browser_version = version_match.group("browser")
+ browser_version_str = version_match.group("browser")
+ self.browser_version = float(browser_version_str)
# Convert tor-browser to "Tor Browser", and similar.
browser_name = self.prefix.replace("-", " ").title()
- self.browser_version_name = f"{browser_name} {self.browser_version}"
+ self.browser_version_name = f"{browser_name} {browser_version_str}"
self._is_head = is_head
self._ref = "HEAD" if is_head else f"origin/{branch_name}"
@@ -114,7 +115,7 @@ class BrowserBranch:
firefox_nums = [int(n) for n in version_match.group("firefox").split(".")]
if len(firefox_nums) == 2:
firefox_nums.append(0)
- browser_nums = [int(n) for n in self.browser_version.split(".")]
+ browser_nums = [int(n) for n in browser_version_str.split(".")]
branch_number = int(version_match.group("number"))
# Prioritise the firefox ESR version, then the browser version then the
# branch number.
@@ -127,25 +128,8 @@ class BrowserBranch:
branch_number,
)
- # Minor version for browser is only ever "0" or "5", so we can convert
- # the version to an integer.
- self._browser_int_version = int(2 * float(self.browser_version))
-
self._file_paths: list[str] | None = None
- def release_below(self, other: "BrowserBranch", num: int) -> bool:
- """Determine whether another branch is within range of a previous
- browser release.
-
- The browser versions are expected to increment by "0.5", and a previous
- release branch's version is expected to be `num * 0.5` behind the
- current one.
-
- :param other: The branch to compare.
- :param num: The number of "0.5" releases behind to test with.
- """
- return other._browser_int_version == self._browser_int_version - num
-
def __lt__(self, other: "BrowserBranch") -> bool:
return self._ordered < other._ordered
@@ -259,16 +243,14 @@ def get_stable_branch(
# Stable can be one release version behind.
# NOTE: In principle, when switching between versions there may be a
# window of time where the development branch has not yet progressed
- # to the next "0.5" release, so has the same browser version as the
+ # to the next ".0" release, so has the same browser version as the
# stable branch. So we also allow for matching browser versions.
# NOTE:
# 1. The "Will be unused in" message will not make sense, but we do
# not expect string differences in this scenario.
# 2. We do not expect this scenario to last for long.
- if not (
- compare_version.release_below(branch, 1)
- or compare_version.release_below(branch, 0)
- ):
+ release_diff = compare_version.browser_version - branch.browser_version
+ if release_diff < 0.0 or release_diff > 1.0:
continue
stable_branches.append(branch)
elif is_legacy:
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/0f10cc1…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/0f10cc1…
You're receiving this email because of your account on gitlab.torproject.org.
1
0
[Git][tpo/applications/mullvad-browser][mullvad-browser-146.0a1-16.0-2] fixup! BB 32308: Use direct browser sizing for letterboxing.
by henry (@henry) 15 Jan '26
by henry (@henry) 15 Jan '26
15 Jan '26
henry pushed to branch mullvad-browser-146.0a1-16.0-2 at The Tor Project / Applications / Mullvad Browser
Commits:
74af24ce by henry at 2026-01-15T11:26:23+00:00
fixup! BB 32308: Use direct browser sizing for letterboxing.
TB 44289: Handle the case where --toolbar-field-color is set to
"inherit".
Also, better handle "currentColor" values to not rely on the computed
color, which may vary with the UI state.
Also, replace "/*" comments with "//".
(cherry picked from commit 961b3271e9af455b91bb43e8ea18701ff6a5577f)
Co-authored-by: Henry Wilkes <henry(a)torproject.org>
- - - - -
1 changed file:
- toolkit/components/resistfingerprinting/RFPHelper.sys.mjs
Changes:
=====================================
toolkit/components/resistfingerprinting/RFPHelper.sys.mjs
=====================================
@@ -920,20 +920,49 @@ class _RFPHelper {
* @param {CSSStyleDeclaration} style - The computed style for the element we
* want to grab the color from.
* @param {string} property - The name of the property we want.
+ * @param {object} [options] - Optional details.
+ * @param {string} [options.fallbackProperty] - A fallback to use instead if
+ * the property doesn't have a computed value.
+ * @param {string} [options.currentColorProperty] - The name of a property to
+ * use as the currentColor.
*
* @returns {InspectorRGBATuple} - The RGBA color. The "r", "g", "b" fields
* are relative to the 0-255 color range. The "a" field is in the 0-1 range.
*/
- _convertToRGBA(win, style, property) {
+ _convertToRGBA(win, style, property, options) {
let cssColor = style.getPropertyValue(property);
if (!cssColor) {
+ if (options?.fallbackProperty) {
+ lazy.logConsole.debug(
+ "Using fallback property for RGBA.",
+ property,
+ options.fallbackProperty
+ );
+ return this._convertToRGBA(win, style, options.fallbackProperty);
+ }
lazy.logConsole.error(`Missing color "${property}"`);
return { r: 0, g: 0, b: 0, a: 0 };
}
const currentColorRegex =
/(^|[^a-zA-Z0-9_-])currentColor($|[^a-zA-Z0-9_-])/g;
if (currentColorRegex.test(cssColor)) {
- const currentColor = style.color;
+ let currentColor;
+ if (options?.currentColorProperty) {
+ const currRGBA = this._convertToRGBA(
+ win,
+ style,
+ options.currentColorProperty
+ );
+ currentColor = `rgba(${currRGBA.r}, ${currRGBA.g}, ${currRGBA.b}, ${currRGBA.a})`;
+ } else {
+ lazy.logConsole.warning(
+ "Missing a specification for the currentColor, using computed color."
+ );
+ // Use the current "color" value. NOTE: this may not be exactly what we
+ // want since it's current value may be effected by :hover, :active,
+ // :focus, etc. But we want this to be a stable colour for the theme.
+ currentColor = style.color;
+ }
cssColor = cssColor.replace(currentColorRegex, (_, pre, post) => {
return pre + currentColor + post;
});
@@ -944,7 +973,7 @@ class _RFPHelper {
cssColor
);
}
- /* Can drop the document argument after bugzilla bug 1973684 (142). */
+ // Can drop the document argument after bugzilla bug 1973684 (142).
const colorRGBA = win.InspectorUtils.colorToRGBA(cssColor, win.document);
if (!colorRGBA) {
lazy.logConsole.error(
@@ -985,12 +1014,13 @@ class _RFPHelper {
* @param {Window} win - The window to calculate the color for.
* @param {CSSStyleDeclaration} style - The computed style for the #nav-bar
* element.
+ * @param {boolean} verticalTabs - Whether vertical tabs are enabled.
*
* @returns {InspectorRGBATuple} - The calculated color, which will be opaque.
*/
- _calculateUrlbarContainerColor(win, style) {
+ _calculateUrlbarContainerColor(win, style, verticalTabs) {
let colorRGBA;
- if (!Services.prefs.getBoolPref(kPrefVerticalTabs)) {
+ if (!verticalTabs) {
lazy.logConsole.debug("Toolbar background used.");
colorRGBA = this._convertToRGBA(win, style, "--toolbar-bgcolor");
if (colorRGBA.a === 1) {
@@ -1069,12 +1099,19 @@ class _RFPHelper {
if (letterboxingEnabled) {
// Want the effective colour of various elements without any alpha values
// so they can be used consistently.
+
+ const verticalTabs = Services.prefs.getBoolPref(kPrefVerticalTabs);
+ const chromeTextColorProperty = verticalTabs
+ ? "--toolbox-textcolor"
+ : "--toolbar-color";
+
const navbarStyle = win.getComputedStyle(
win.document.getElementById("nav-bar")
);
const containerRGBA = this._calculateUrlbarContainerColor(
win,
- navbarStyle
+ navbarStyle,
+ verticalTabs
);
urlbarBackgroundRGBA = this._composeRGBA(
this._convertToRGBA(
@@ -1084,17 +1121,28 @@ class _RFPHelper {
),
containerRGBA
);
+ // NOTE: In the default theme (no "lwtheme" attribute) with
+ // browser.theme.native-theme set to false, --toolbar-field-color can be
+ // set to "inherit", which means it will have a blank computed value. We
+ // fallback to --toolbar-color or --toolbox-textcolor in this case.
+ // Similarly, for windows OS, it can be set to "currentColor".
urlbarTextRGBA = this._composeRGBA(
- this._convertToRGBA(win, navbarStyle, "--toolbar-field-color"),
+ this._convertToRGBA(win, navbarStyle, "--toolbar-field-color", {
+ fallbackProperty: chromeTextColorProperty,
+ currentColorProperty: chromeTextColorProperty,
+ }),
urlbarBackgroundRGBA
);
- /* Separator between the urlbar container #nav-bar and the tabbox. */
+ // Separator between the urlbar container #nav-bar and the tabbox.
+ // For the default theme, this can be set to --border-color-card, which
+ // can use "currentColor".
const tabboxStyle = win.getComputedStyle(win.gBrowser.tabbox);
contentSeparatorRGBA = this._composeRGBA(
this._convertToRGBA(
win,
tabboxStyle,
- "--chrome-content-separator-color"
+ "--chrome-content-separator-color",
+ { currentColorProperty: chromeTextColorProperty }
),
containerRGBA
);
@@ -1114,8 +1162,8 @@ class _RFPHelper {
contrastRatio
);
urlbarBackgroundDark = bgColor.relativeLuminance < 0.5;
- /* Very low contrast ratio. For reference the default light theme has
- * a contrast ratio of ~1.1. */
+ // Very low contrast ratio. For reference the default light theme has
+ // a contrast ratio of ~1.1.
lowBackgroundOutlineContrast = contrastRatio < 1.05;
}
for (const { name, colorRGBA } of [
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/74a…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/74a…
You're receiving this email because of your account on gitlab.torproject.org.
1
0
[Git][tpo/applications/tor-browser][base-browser-147.0a1-16.0-2] fixup! BB 32308: Use direct browser sizing for letterboxing.
by henry (@henry) 15 Jan '26
by henry (@henry) 15 Jan '26
15 Jan '26
henry pushed to branch base-browser-147.0a1-16.0-2 at The Tor Project / Applications / Tor Browser
Commits:
e2b78f26 by henry at 2026-01-15T11:20:06+00:00
fixup! BB 32308: Use direct browser sizing for letterboxing.
TB 44289: Handle the case where --toolbar-field-color is set to
"inherit".
Also, better handle "currentColor" values to not rely on the computed
color, which may vary with the UI state.
Also, replace "/*" comments with "//".
(cherry picked from commit 961b3271e9af455b91bb43e8ea18701ff6a5577f)
Co-authored-by: Henry Wilkes <henry(a)torproject.org>
- - - - -
1 changed file:
- toolkit/components/resistfingerprinting/RFPHelper.sys.mjs
Changes:
=====================================
toolkit/components/resistfingerprinting/RFPHelper.sys.mjs
=====================================
@@ -920,20 +920,49 @@ class _RFPHelper {
* @param {CSSStyleDeclaration} style - The computed style for the element we
* want to grab the color from.
* @param {string} property - The name of the property we want.
+ * @param {object} [options] - Optional details.
+ * @param {string} [options.fallbackProperty] - A fallback to use instead if
+ * the property doesn't have a computed value.
+ * @param {string} [options.currentColorProperty] - The name of a property to
+ * use as the currentColor.
*
* @returns {InspectorRGBATuple} - The RGBA color. The "r", "g", "b" fields
* are relative to the 0-255 color range. The "a" field is in the 0-1 range.
*/
- _convertToRGBA(win, style, property) {
+ _convertToRGBA(win, style, property, options) {
let cssColor = style.getPropertyValue(property);
if (!cssColor) {
+ if (options?.fallbackProperty) {
+ lazy.logConsole.debug(
+ "Using fallback property for RGBA.",
+ property,
+ options.fallbackProperty
+ );
+ return this._convertToRGBA(win, style, options.fallbackProperty);
+ }
lazy.logConsole.error(`Missing color "${property}"`);
return { r: 0, g: 0, b: 0, a: 0 };
}
const currentColorRegex =
/(^|[^a-zA-Z0-9_-])currentColor($|[^a-zA-Z0-9_-])/g;
if (currentColorRegex.test(cssColor)) {
- const currentColor = style.color;
+ let currentColor;
+ if (options?.currentColorProperty) {
+ const currRGBA = this._convertToRGBA(
+ win,
+ style,
+ options.currentColorProperty
+ );
+ currentColor = `rgba(${currRGBA.r}, ${currRGBA.g}, ${currRGBA.b}, ${currRGBA.a})`;
+ } else {
+ lazy.logConsole.warning(
+ "Missing a specification for the currentColor, using computed color."
+ );
+ // Use the current "color" value. NOTE: this may not be exactly what we
+ // want since it's current value may be effected by :hover, :active,
+ // :focus, etc. But we want this to be a stable colour for the theme.
+ currentColor = style.color;
+ }
cssColor = cssColor.replace(currentColorRegex, (_, pre, post) => {
return pre + currentColor + post;
});
@@ -944,7 +973,7 @@ class _RFPHelper {
cssColor
);
}
- /* Can drop the document argument after bugzilla bug 1973684 (142). */
+ // Can drop the document argument after bugzilla bug 1973684 (142).
const colorRGBA = win.InspectorUtils.colorToRGBA(cssColor, win.document);
if (!colorRGBA) {
lazy.logConsole.error(
@@ -985,12 +1014,13 @@ class _RFPHelper {
* @param {Window} win - The window to calculate the color for.
* @param {CSSStyleDeclaration} style - The computed style for the #nav-bar
* element.
+ * @param {boolean} verticalTabs - Whether vertical tabs are enabled.
*
* @returns {InspectorRGBATuple} - The calculated color, which will be opaque.
*/
- _calculateUrlbarContainerColor(win, style) {
+ _calculateUrlbarContainerColor(win, style, verticalTabs) {
let colorRGBA;
- if (!Services.prefs.getBoolPref(kPrefVerticalTabs)) {
+ if (!verticalTabs) {
lazy.logConsole.debug("Toolbar background used.");
colorRGBA = this._convertToRGBA(win, style, "--toolbar-bgcolor");
if (colorRGBA.a === 1) {
@@ -1069,12 +1099,19 @@ class _RFPHelper {
if (letterboxingEnabled) {
// Want the effective colour of various elements without any alpha values
// so they can be used consistently.
+
+ const verticalTabs = Services.prefs.getBoolPref(kPrefVerticalTabs);
+ const chromeTextColorProperty = verticalTabs
+ ? "--toolbox-textcolor"
+ : "--toolbar-color";
+
const navbarStyle = win.getComputedStyle(
win.document.getElementById("nav-bar")
);
const containerRGBA = this._calculateUrlbarContainerColor(
win,
- navbarStyle
+ navbarStyle,
+ verticalTabs
);
urlbarBackgroundRGBA = this._composeRGBA(
this._convertToRGBA(
@@ -1084,17 +1121,28 @@ class _RFPHelper {
),
containerRGBA
);
+ // NOTE: In the default theme (no "lwtheme" attribute) with
+ // browser.theme.native-theme set to false, --toolbar-field-color can be
+ // set to "inherit", which means it will have a blank computed value. We
+ // fallback to --toolbar-color or --toolbox-textcolor in this case.
+ // Similarly, for windows OS, it can be set to "currentColor".
urlbarTextRGBA = this._composeRGBA(
- this._convertToRGBA(win, navbarStyle, "--toolbar-field-color"),
+ this._convertToRGBA(win, navbarStyle, "--toolbar-field-color", {
+ fallbackProperty: chromeTextColorProperty,
+ currentColorProperty: chromeTextColorProperty,
+ }),
urlbarBackgroundRGBA
);
- /* Separator between the urlbar container #nav-bar and the tabbox. */
+ // Separator between the urlbar container #nav-bar and the tabbox.
+ // For the default theme, this can be set to --border-color-card, which
+ // can use "currentColor".
const tabboxStyle = win.getComputedStyle(win.gBrowser.tabbox);
contentSeparatorRGBA = this._composeRGBA(
this._convertToRGBA(
win,
tabboxStyle,
- "--chrome-content-separator-color"
+ "--chrome-content-separator-color",
+ { currentColorProperty: chromeTextColorProperty }
),
containerRGBA
);
@@ -1114,8 +1162,8 @@ class _RFPHelper {
contrastRatio
);
urlbarBackgroundDark = bgColor.relativeLuminance < 0.5;
- /* Very low contrast ratio. For reference the default light theme has
- * a contrast ratio of ~1.1. */
+ // Very low contrast ratio. For reference the default light theme has
+ // a contrast ratio of ~1.1.
lowBackgroundOutlineContrast = contrastRatio < 1.05;
}
for (const { name, colorRGBA } of [
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/e2b78f2…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/e2b78f2…
You're receiving this email because of your account on gitlab.torproject.org.
1
0
[Git][tpo/applications/tor-browser][tor-browser-147.0a1-16.0-2] fixup! BB 32308: Use direct browser sizing for letterboxing.
by henry (@henry) 15 Jan '26
by henry (@henry) 15 Jan '26
15 Jan '26
henry pushed to branch tor-browser-147.0a1-16.0-2 at The Tor Project / Applications / Tor Browser
Commits:
961b3271 by Henry Wilkes at 2026-01-15T10:33:25+00:00
fixup! BB 32308: Use direct browser sizing for letterboxing.
TB 44289: Handle the case where --toolbar-field-color is set to
"inherit".
Also, better handle "currentColor" values to not rely on the computed
color, which may vary with the UI state.
Also, replace "/*" comments with "//".
- - - - -
1 changed file:
- toolkit/components/resistfingerprinting/RFPHelper.sys.mjs
Changes:
=====================================
toolkit/components/resistfingerprinting/RFPHelper.sys.mjs
=====================================
@@ -920,20 +920,49 @@ class _RFPHelper {
* @param {CSSStyleDeclaration} style - The computed style for the element we
* want to grab the color from.
* @param {string} property - The name of the property we want.
+ * @param {object} [options] - Optional details.
+ * @param {string} [options.fallbackProperty] - A fallback to use instead if
+ * the property doesn't have a computed value.
+ * @param {string} [options.currentColorProperty] - The name of a property to
+ * use as the currentColor.
*
* @returns {InspectorRGBATuple} - The RGBA color. The "r", "g", "b" fields
* are relative to the 0-255 color range. The "a" field is in the 0-1 range.
*/
- _convertToRGBA(win, style, property) {
+ _convertToRGBA(win, style, property, options) {
let cssColor = style.getPropertyValue(property);
if (!cssColor) {
+ if (options?.fallbackProperty) {
+ lazy.logConsole.debug(
+ "Using fallback property for RGBA.",
+ property,
+ options.fallbackProperty
+ );
+ return this._convertToRGBA(win, style, options.fallbackProperty);
+ }
lazy.logConsole.error(`Missing color "${property}"`);
return { r: 0, g: 0, b: 0, a: 0 };
}
const currentColorRegex =
/(^|[^a-zA-Z0-9_-])currentColor($|[^a-zA-Z0-9_-])/g;
if (currentColorRegex.test(cssColor)) {
- const currentColor = style.color;
+ let currentColor;
+ if (options?.currentColorProperty) {
+ const currRGBA = this._convertToRGBA(
+ win,
+ style,
+ options.currentColorProperty
+ );
+ currentColor = `rgba(${currRGBA.r}, ${currRGBA.g}, ${currRGBA.b}, ${currRGBA.a})`;
+ } else {
+ lazy.logConsole.warning(
+ "Missing a specification for the currentColor, using computed color."
+ );
+ // Use the current "color" value. NOTE: this may not be exactly what we
+ // want since it's current value may be effected by :hover, :active,
+ // :focus, etc. But we want this to be a stable colour for the theme.
+ currentColor = style.color;
+ }
cssColor = cssColor.replace(currentColorRegex, (_, pre, post) => {
return pre + currentColor + post;
});
@@ -944,7 +973,7 @@ class _RFPHelper {
cssColor
);
}
- /* Can drop the document argument after bugzilla bug 1973684 (142). */
+ // Can drop the document argument after bugzilla bug 1973684 (142).
const colorRGBA = win.InspectorUtils.colorToRGBA(cssColor, win.document);
if (!colorRGBA) {
lazy.logConsole.error(
@@ -985,12 +1014,13 @@ class _RFPHelper {
* @param {Window} win - The window to calculate the color for.
* @param {CSSStyleDeclaration} style - The computed style for the #nav-bar
* element.
+ * @param {boolean} verticalTabs - Whether vertical tabs are enabled.
*
* @returns {InspectorRGBATuple} - The calculated color, which will be opaque.
*/
- _calculateUrlbarContainerColor(win, style) {
+ _calculateUrlbarContainerColor(win, style, verticalTabs) {
let colorRGBA;
- if (!Services.prefs.getBoolPref(kPrefVerticalTabs)) {
+ if (!verticalTabs) {
lazy.logConsole.debug("Toolbar background used.");
colorRGBA = this._convertToRGBA(win, style, "--toolbar-bgcolor");
if (colorRGBA.a === 1) {
@@ -1069,12 +1099,19 @@ class _RFPHelper {
if (letterboxingEnabled) {
// Want the effective colour of various elements without any alpha values
// so they can be used consistently.
+
+ const verticalTabs = Services.prefs.getBoolPref(kPrefVerticalTabs);
+ const chromeTextColorProperty = verticalTabs
+ ? "--toolbox-textcolor"
+ : "--toolbar-color";
+
const navbarStyle = win.getComputedStyle(
win.document.getElementById("nav-bar")
);
const containerRGBA = this._calculateUrlbarContainerColor(
win,
- navbarStyle
+ navbarStyle,
+ verticalTabs
);
urlbarBackgroundRGBA = this._composeRGBA(
this._convertToRGBA(
@@ -1084,17 +1121,28 @@ class _RFPHelper {
),
containerRGBA
);
+ // NOTE: In the default theme (no "lwtheme" attribute) with
+ // browser.theme.native-theme set to false, --toolbar-field-color can be
+ // set to "inherit", which means it will have a blank computed value. We
+ // fallback to --toolbar-color or --toolbox-textcolor in this case.
+ // Similarly, for windows OS, it can be set to "currentColor".
urlbarTextRGBA = this._composeRGBA(
- this._convertToRGBA(win, navbarStyle, "--toolbar-field-color"),
+ this._convertToRGBA(win, navbarStyle, "--toolbar-field-color", {
+ fallbackProperty: chromeTextColorProperty,
+ currentColorProperty: chromeTextColorProperty,
+ }),
urlbarBackgroundRGBA
);
- /* Separator between the urlbar container #nav-bar and the tabbox. */
+ // Separator between the urlbar container #nav-bar and the tabbox.
+ // For the default theme, this can be set to --border-color-card, which
+ // can use "currentColor".
const tabboxStyle = win.getComputedStyle(win.gBrowser.tabbox);
contentSeparatorRGBA = this._composeRGBA(
this._convertToRGBA(
win,
tabboxStyle,
- "--chrome-content-separator-color"
+ "--chrome-content-separator-color",
+ { currentColorProperty: chromeTextColorProperty }
),
containerRGBA
);
@@ -1114,8 +1162,8 @@ class _RFPHelper {
contrastRatio
);
urlbarBackgroundDark = bgColor.relativeLuminance < 0.5;
- /* Very low contrast ratio. For reference the default light theme has
- * a contrast ratio of ~1.1. */
+ // Very low contrast ratio. For reference the default light theme has
+ // a contrast ratio of ~1.1.
lowBackgroundOutlineContrast = contrastRatio < 1.05;
}
for (const { name, colorRGBA } of [
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/961b327…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/961b327…
You're receiving this email because of your account on gitlab.torproject.org.
1
0
[Git][tpo/applications/tor-browser][tor-browser-147.0a1-16.0-2] fixup! BB 41803: Add some developer tools for working on tor-browser.
by henry (@henry) 14 Jan '26
by henry (@henry) 14 Jan '26
14 Jan '26
henry pushed to branch tor-browser-147.0a1-16.0-2 at The Tor Project / Applications / Tor Browser
Commits:
c344d0b6 by Henry Wilkes at 2026-01-14T17:14:26+00:00
fixup! BB 41803: Add some developer tools for working on tor-browser.
TB 44452: Improve the range-diff and diff-diff commands.
- - - - -
1 changed file:
- tools/base_browser/tb-dev
Changes:
=====================================
tools/base_browser/tb-dev
=====================================
@@ -1409,63 +1409,102 @@ def move_to_default(args: argparse.Namespace) -> None:
git_run(["cherry-pick", f"{current_basis}..{old_branch_name}"], check=False)
+def convert_ref_to_range(ref: str) -> str:
+ """
+ Convert a reference given by the user into a reference range, defaulting to
+ the last firefox reference.
+
+ :param ref: The reference to convert to a range, if it isn't one already.
+ :returns: The reference range.
+ """
+ if ".." in ref:
+ return ref
+ firefox_commit = get_firefox_ref(ref).commit
+ return f"{firefox_commit}..{ref}"
+
+
def show_range_diff(args: argparse.Namespace) -> None:
"""
- Show the range diff between two branches, from their firefox bases.
+ Show the range diff. If a single reference is given as one of the arguments,
+ its last "FIREFOX_" tag is used as the range start.
"""
- firefox_commit_1 = get_firefox_ref(args.branch1).commit
- firefox_commit_2 = get_firefox_ref(args.branch2).commit
+ range1 = convert_ref_to_range(args.ref1)
+ range2 = convert_ref_to_range(args.ref2)
git_run(
- [
- "range-diff",
- f"{firefox_commit_1}..{args.branch1}",
- f"{firefox_commit_2}..{args.branch2}",
- ],
- check=False,
+ ["range-diff", *args.gitargs, range1, range2, "--", *args.path], check=False
)
def show_diff_diff(args: argparse.Namespace) -> None:
"""
- Show the diff between the diffs of two branches, relative to their firefox
- bases.
+ Show the diff between the diffs of two ranges. If a single reference is
+ given as one of the arguments, its last "FIREFOX_" tag is used as the range
+ start.
"""
try:
diff_tool = next(git_lines(["config", "--get", "diff.tool"]))
except StopIteration:
raise TbDevException("No diff.tool configured for git")
+ drop_context = not args.keep_context
+
# Filter out parts of the diff we expect to be different.
index_regex = re.compile(r"index [0-9a-f]{12}\.\.[0-9a-f]{12}")
- lines_regex = re.compile(r"@@ -[0-9]+,[0-9]+ \+[0-9]+,[0-9]+ @@(?P<rest>.*)")
+ context_regex = re.compile(r"@@ -[0-9]+(:?,[0-9]+)? \+[0-9]+(:?,[0-9]+)? @@")
- def save_diff(branch: str) -> str:
- firefox_commit = get_firefox_ref(branch).commit
+ # Limit a line length. E.g. "meld" has a line length limit.
+ LINE_LIMIT = 1024
+
+ def save_diff(ref_range: str) -> str:
file_desc, file_name = tempfile.mkstemp(
- text=True, prefix=f'{branch.split("/")[-1]}-'
+ text=True, prefix=f'{ref_range.replace("/", "_")}'
)
# Register deleting the file at exit.
atexit.register(os.remove, file_name)
diff_process = subprocess.Popen(
- [GIT_PATH, "diff", f"{firefox_commit}..{branch}"],
+ # --unified=1 will reduce the context to just directly neighbouring
+ # lines.
+ [
+ GIT_PATH,
+ "diff",
+ "--binary",
+ "--unified=1",
+ *args.gitargs,
+ ref_range,
+ "--",
+ *args.path,
+ ],
stdout=subprocess.PIPE,
text=True,
+ encoding="utf-8",
+ errors="replace",
)
with os.fdopen(file_desc, "w") as file:
assert diff_process.stdout is not None
for line in diff_process.stdout:
- if index_regex.match(line):
- # Fake data that will match.
- file.write("index ????????????..????????????\n")
- continue
- lines_match = lines_regex.match(line)
- if lines_match:
- # Fake data that will match.
- file.write("@@ ?,? ?,? @@" + lines_match.group("rest"))
- continue
- file.write(line)
+ if drop_context:
+ if index_regex.match(line):
+ # Fake data that will match.
+ file.write("index ????????????..????????????\n")
+ continue
+ if context_regex.match(line):
+ # Fake data that will match.
+ file.write("@@ ?,? ?,? @@\n")
+ continue
+
+ remaining_line = line
+ while True:
+ if len(remaining_line) - 1 > LINE_LIMIT:
+ # NOTE: we use `len() - 1` to not count the trailing
+ # '\n', which we assume all lines in the diff have.
+ # Long line, split with a newline character.
+ file.write(remaining_line[:LINE_LIMIT] + "\n")
+ remaining_line = remaining_line[:LINE_LIMIT]
+ else:
+ file.write(remaining_line)
+ break
status = diff_process.wait()
if status != 0:
@@ -1473,8 +1512,10 @@ def show_diff_diff(args: argparse.Namespace) -> None:
return file_name
- file_1 = save_diff(args.branch1)
- file_2 = save_diff(args.branch2)
+ range1 = convert_ref_to_range(args.ref1)
+ range2 = convert_ref_to_range(args.ref2)
+ file_1 = save_diff(range1)
+ file_2 = save_diff(range2)
subprocess.run([diff_tool, file_1, file_2], check=False)
@@ -1483,6 +1524,28 @@ def show_diff_diff(args: argparse.Namespace) -> None:
# * -------------------- *
+def ref_complete(prefix: str, **_kwargs: Any) -> list[str]:
+ """
+ Complete the argument with a reference name.
+ """
+ if not within_browser_root():
+ return []
+ try:
+ matching = []
+ for symbolic_ref in ("HEAD",):
+ if symbolic_ref.startswith(prefix):
+ matching.append(symbolic_ref)
+ for ref_type in ("head", "remote", "tag"):
+ for ref in get_refs(ref_type, ""):
+ if ref.name.startswith(prefix):
+ matching.append(ref.name)
+ if ref.full_name.startswith(prefix):
+ matching.append(ref.full_name)
+ return matching
+ except Exception:
+ return []
+
+
def branch_complete(prefix: str, **_kwargs: Any) -> list[str]:
"""
Complete the argument with a branch name.
@@ -1490,12 +1553,9 @@ def branch_complete(prefix: str, **_kwargs: Any) -> list[str]:
if not within_browser_root():
return []
try:
- branches = [ref.name for ref in get_refs("head", "")]
- branches.extend(ref.name for ref in get_refs("remote", ""))
- branches.append("HEAD")
+ return [ref.name for ref in get_refs("head", "") if ref.name.startswith(prefix)]
except Exception:
return []
- return [br for br in branches if br.startswith(prefix)]
parser = argparse.ArgumentParser()
@@ -1506,6 +1566,8 @@ class ArgConfig(TypedDict):
help: str
metavar: NotRequired[str]
nargs: NotRequired[str]
+ action: NotRequired[str]
+ default: NotRequired[Any]
completer: NotRequired[Callable[[str], list[str]]]
@@ -1573,33 +1635,59 @@ all_commands: dict[str, CommandConfig] = {
},
},
},
- "branch-range-diff": {
+ "range-diff": {
"func": show_range_diff,
"args": {
- "branch1": {
- "help": "the first branch to compare",
- "metavar": "<branch-1>",
- "completer": branch_complete,
+ "ref1": {
+ "help": "the first range to compare",
+ "metavar": "<ref-1>",
+ "completer": ref_complete,
},
- "branch2": {
- "help": "the second branch to compare",
- "metavar": "<branch-2>",
- "completer": branch_complete,
+ "ref2": {
+ "help": "the second range to compare",
+ "metavar": "<ref-2>",
+ "completer": ref_complete,
+ },
+ "--path": {
+ "help": "path filter to pass to git range-diff. Can be given multiple times",
+ "metavar": "<path>",
+ "action": "append",
+ "default": [],
+ },
+ "gitargs": {
+ "help": "additional argument to pass to git range-diff",
+ "metavar": "-- git-range-diff-arg",
+ "nargs": "*",
},
},
},
- "branch-diff-diff": {
+ "diff-diff": {
"func": show_diff_diff,
"args": {
- "branch1": {
+ "--keep-context": {
+ "help": "keep the git context lines as they are, otherwise they are trivialised to reduce differences. You may want to use this if your diff tool, like meld, can filter out these lines from the diff without erasing them",
+ "action": "store_true",
+ },
+ "ref1": {
"help": "the first branch to compare",
- "metavar": "<branch-1>",
- "completer": branch_complete,
+ "metavar": "<ref-1>",
+ "completer": ref_complete,
},
- "branch2": {
+ "ref2": {
"help": "the second branch to compare",
- "metavar": "<branch-2>",
- "completer": branch_complete,
+ "metavar": "<ref-2>",
+ "completer": ref_complete,
+ },
+ "--path": {
+ "help": "path filter to pass to git diff. Can be given multiple times",
+ "metavar": "<path>",
+ "action": "append",
+ "default": [],
+ },
+ "gitargs": {
+ "help": "additional argument to pass to git diff",
+ "metavar": "-- git-diff-arg",
+ "nargs": "*",
},
},
},
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/c344d0b…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/c344d0b…
You're receiving this email because of your account on gitlab.torproject.org.
1
0
[Git][tpo/applications/tor-browser-build][main] 2 commits: Bug 41676: Make Rust build its LLVM.
by Pier Angelo Vendrame (@pierov) 14 Jan '26
by Pier Angelo Vendrame (@pierov) 14 Jan '26
14 Jan '26
Pier Angelo Vendrame pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits:
00c4eb76 by Pier Angelo Vendrame at 2026-01-14T19:19:30+01:00
Bug 41676: Make Rust build its LLVM.
rust.lld is not compatible with a provided LLVM, so let Rust build its
own, which is the default behavior.
- - - - -
e4aacc4b by Pier Angelo Vendrame at 2026-01-14T19:19:32+01:00
Bug 41676: Update toolchains for Firefox 147.
- - - - -
18 changed files:
- projects/android-toolchain/README.md
- projects/android-toolchain/build
- projects/android-toolchain/config
- + projects/android-toolchain/platform-36.1-package.xml
- projects/application-services/config
- projects/application-services/gradle-dependencies-list.txt
- projects/browser/config
- projects/cbindgen/config
- projects/firefox/config
- projects/geckoview/config
- projects/geckoview/gradle-dependencies-list.txt
- projects/geckoview/list_toolchain_updates_checks
- projects/glean/config
- projects/llvm-project/config
- projects/nasm/config
- projects/rust/build
- projects/rust/config
- projects/uniffi-rs/config
Changes:
=====================================
projects/android-toolchain/README.md
=====================================
@@ -12,5 +12,22 @@ projects need different versions (e.g., GeckoView and Application Services).
# Known issues
+## `failed to find target with hash string android-XY.1`
+
+When adding `platform-36.1`, we encountered some build errors, and even
+`sdkmanager` did not recognize it.
+
+Our hypothesis is that some parts of the code expect an integer for the API
+level, and `36.1` broke that assumption.
+
+When you install parts of the SDK with `sdkmanager`, it adds a `package.xml`
+file that is missing from the zip we download.
+However, when this file is available, it is used as the authoritative reference.
+Therefore, if you encounter a similar problem, you can install that package with
+`sdkmanager`, then version the `package.xml` it creates and inject it in this
+project.
+
+## Refactor needed
+
Not all the included versions might be needed to build our projects.
-So, this project could use a cleanup.
+So, this project could use a cleanup (tor-browser-build#41677).
=====================================
projects/android-toolchain/build
=====================================
@@ -22,9 +22,18 @@ mkdir build-tools
unzip -qq $rootdir/[% c("input_files_by_name/build_tools") %] -d build-tools
mv build-tools/[% c("var/android_release_dir") %] build-tools/[% c("version") %]
-# Platform
+# Platforms
mkdir platforms
-unzip -qq $rootdir/[% c("input_files_by_name/platform") %] -d platforms
+unzip -qq $rootdir/[% c("input_files_by_name/platform-36") %] -d platforms
+unzip -qq $rootdir/[% c("input_files_by_name/platform-36.1") %] -d platforms
+# This platform version is not detected without this file for some reason.
+# Even `sdkmanager --list` fails without it.
+# My hypothesis is that some tools expect the API level to be an integer.
+# After installing this platform package with sdkmanager, we found this was the
+# only file we were missing, and adding it fixes the build errors.
+# 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
# Platform tools
unzip -qq $rootdir/[% c("input_files_by_name/platform_tools") %]
=====================================
projects/android-toolchain/config
=====================================
@@ -1,7 +1,7 @@
# vim: filetype=yaml sw=2
-# FIXME: Rework this whole mess
+# FIXME: Rework this whole mess (tor-browser-build#41677)
filename: '[% project %]-[% c("version") %]-[% c("var/build_id") %].tar.[% c("compress_tar") %]'
-version: 36.0.0
+version: 36.1.0
var:
setup: |
mkdir -p /var/tmp/dist
@@ -29,18 +29,17 @@ var:
export PATH=$PATH:$GRADLE_HOME/bin
[% END -%]
google_repo: https://dl.google.com/android/repository
- android_api_level: 36
android_release_dir: android-16
- android_platform_revision: '01'
android_ndk_release_name: '29'
android_ndk_revision: 29.0.14206865
# We need the following two variables for get_build_tools, used by signing
# scripts.
- build_tools_version: 36
+ build_tools_version: 36.1
build_tools_filename: 'build-tools_r[% c("var/build_tools_version") %]_linux.zip'
- build_tools_sha512sum: 277c08c2dcced3c1cc46ce0349e18adc6d6d4b8739868eab5d469f9fb4e9c6b79aa9d2a6592cfc5db0ccb8690fcc75a44db4b18b03dcf349efd0eb54025ef5ca
+ build_tools_sha256sum: a7b5889e4a79fcf3b0976bef40d401f4240fb1eed891d9d91169da1111e11d78
commandlinetools_version: 13114758
commandlinetools_version_string: 19.0
+ platform_tools_version: 36.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'
@@ -51,14 +50,18 @@ input_files:
sha256sum: 4abbbcdc842f3d4879206e9695d52709603e52dd68d3c1fff04b3b5e7a308ecf
- URL: '[% c("var/google_repo") %]/[% c("var/build_tools_filename") %]'
name: build_tools
- sha512sum: '[% c("var/build_tools_sha512sum") %]'
- - URL: '[% c("var/google_repo") %]/platform-[% c("var/android_api_level") %]_r[% c("var/android_platform_revision") %].zip'
- name: platform
+ sha256sum: '[% c("var/build_tools_sha256sum") %]'
+ - URL: '[% c("var/google_repo") %]/platform-36_r01.zip'
+ name: platform-36
sha256sum: a5273f7d68de0a6a58032b26c24965634bc14ed3839e70a3a9759369f3f6c02a
+ - URL: '[% c("var/google_repo") %]/platform-36.1_r01.zip'
+ name: platform-36.1
+ sha256sum: 265e9aa7d8db6abe7ad1696085d5d62784b341084c625de46db530970b1e806d
+ - filename: platform-36.1-package.xml
# ./mach bootstrap is fetching the latest version, so it does not seem to
# matter which particular version we are using. Pin to the one fitting best to
# SDK version/build-tools version.
- - URL: '[% c("var/google_repo") %]/platform-tools_r[% c("version") %]-linux.zip'
+ - URL: '[% c("var/google_repo") %]/platform-tools_r[% c("var/platform_tools_version") %]-linux.zip'
name: platform_tools
sha256sum: 0ead642c943ffe79701fccca8f5f1c69c4ce4f43df2eefee553f6ccb27cbfbe8
steps:
@@ -74,4 +77,4 @@ steps:
input_files:
- URL: '[% c("var/google_repo") %]/[% c("var/build_tools_filename") %]'
name: build_tools
- sha512sum: '[% c("var/build_tools_sha512sum") %]'
+ sha256sum: '[% c("var/build_tools_sha256sum") %]'
=====================================
projects/android-toolchain/platform-36.1-package.xml
=====================================
@@ -0,0 +1,141 @@
+<?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/addon2/01" xmlns:ns7="http://schemas.android.com/sdk/android/repo/addon2/02" xmlns:ns8="http://schemas.android.com/sdk/android/repo/addon2/03" xmlns:ns9="http://schemas.android.com/sdk/android/repo/repository2/01" xmlns:ns10="http://schemas.android.com/sdk/android/repo/repository2/02" xmlns:ns11="http://schemas.android.com/sdk/android/repo/repository2/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-36.1" obsolete="false"><type-details xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ns11:platformDetailsType"><api-level>36.1</api-level><extension-level>20</extension-level><base-extension>true</base-extension><layoutlib api="15"/></type-details><revision><major>1</major></revision><display-name>Android SDK Platform 36.1</display-name><uses-license ref="android-sdk-license"/></localPackage></ns2:repository>
\ No newline at end of file
=====================================
projects/application-services/config
=====================================
@@ -1,5 +1,5 @@
# vim: filetype=yaml sw=2
-version: 146.0
+version: '147.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
@@ -21,9 +21,9 @@ container:
var:
build_number: 1
# This should be updated when the list of gradle dependencies is changed.
- gradle_dependencies_version: 146.0-1
+ gradle_dependencies_version: 147.0-1
gradle_version: 8.14.3
- nss_version: '3.117'
+ nss_version: '3.118.1'
nspr_version: '4.37'
cargo_vendor_include_config: 1
# Uncomment this to run an online build to grab an updated
@@ -77,7 +77,7 @@ steps:
# NSS version ans sha256 are in libs/build-all.sh.
- URL: 'https://ftp.mozilla.org/pub/security/nss/releases/NSS_[% c("var/nss_version") | replace("\\.", "_") %]_RTM/src/nss-[% c("var/nss_version") %]-with-nspr-[% c("var/nspr_version") %].tar.gz'
name: nss
- sha256sum: cda19ca82e3f4839b0cb72fc633545a83b3f73dd3385a24a176860c461773a70
+ sha256sum: 9e1f7da9f4e5e3bdfd73f7dc2c618d6125a12354aadaeedbb35af3699bc03e15
- filename: 'gradle-dependencies-[% c("var/gradle_dependencies_version") %]'
name: gradle-dependencies
exec: '[% INCLUDE "fetch-gradle-dependencies" %]'
@@ -90,7 +90,7 @@ steps:
project: application-services
pkg_type: cargo_vendor
norec:
- sha256sum: 8a93a189985ad28c334970dc5ab386c81d4a415f3777c2941248f836f4af44fd
+ sha256sum: 09fe9b4aa7ead24c61f962f33182f5193d26c9568d9c299a753c9750539028da
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
=====================================
@@ -39,10 +39,10 @@ d4f2ed1176fa8c5612b80f74c952a8799142a9ed36022a1a238fde5b140580d9 | https://dl.go
e1bd22bbcf5cee3a992dedb7d2d3c3b31c9f761c01e56d00ea443c8aaa981182 | https://dl.google.com/dl/android/maven2/androidx/core/core/1.17.0/core-1.17…
6006fde98c6fa98a9180b940bb44971aa5c9243e39f947ad6caddf386fc9cfea | https://dl.google.com/dl/android/maven2/androidx/core/core/1.17.0/core-1.17…
8b63b18ff4e3474ef1e9428ed022d7994e9e69adfcdaee7e59c7e52dc3cf75b0 | https://dl.google.com/dl/android/maven2/androidx/core/core/1.17.0/core-1.17…
-66cab82639dac0f6c2433464c093b074d608c4bb887ec38a9b8bc4ac98126732 | https://dl.google.com/dl/android/maven2/androidx/databinding/databinding-co…
-0bc18f912af02b790efa39ac56edb0e5bfc89eafe0997680a5acd65c98a7194e | https://dl.google.com/dl/android/maven2/androidx/databinding/databinding-co…
-8e90060d411d20419f9ef5ce69893cfc4a323f61134030789c0bb2db1a3df47c | https://dl.google.com/dl/android/maven2/androidx/databinding/databinding-co…
-2450b2b68a8e6d6f7aad00a856545b3cdfac484a6b1f0af62168404c32326d34 | https://dl.google.com/dl/android/maven2/androidx/databinding/databinding-co…
+66cab82639dac0f6c2433464c093b074d608c4bb887ec38a9b8bc4ac98126732 | https://dl.google.com/dl/android/maven2/androidx/databinding/databinding-co…
+f769ba3e8b52d6e24f00ef9da4c0a4cbd3bd665b24321167c19388012a02e5c4 | https://dl.google.com/dl/android/maven2/androidx/databinding/databinding-co…
+b24d86eb25e78c88834fba1fa3bc87f4e48b534cf74ba929cfcc37713f42ae6c | https://dl.google.com/dl/android/maven2/androidx/databinding/databinding-co…
+04c958da3cdd87c6892028ddcce9058f76b6a45d87e12488b93b7b9999ba1f2f | https://dl.google.com/dl/android/maven2/androidx/databinding/databinding-co…
33193135a64fe21fa2c35eec6688f1a76e512606c0fc83dc1b689e37add7732a | https://dl.google.com/dl/android/maven2/androidx/interpolator/interpolator/…
0ddc07cc39699f48ecd9ec894b5830c0f09e22e82959294edf37217224c88b7b | https://dl.google.com/dl/android/maven2/androidx/interpolator/interpolator/…
37d89b2101f074ac6c260917dabb185607645ee200aa3018c7c5bde70edcf184 | https://dl.google.com/dl/android/maven2/androidx/lifecycle/lifecycle-common…
@@ -108,120 +108,120 @@ f34bec4eb58871d31002901377108aaa1ebfe77fa6d882b8b86200b158e26ea1 | https://dl.go
6c72e877bfed9fa8382b13856af9bf2086b886210f4c6ed5810880831bc85bc7 | https://dl.google.com/dl/android/maven2/androidx/work/work-runtime/2.10.5/w…
d1890945b0aae9684bd2704614613b9ad1dd0c65b765ef036a1b1e99ba762953 | https://dl.google.com/dl/android/maven2/androidx/work/work-runtime/2.10.5/w…
1fe53371dc58672a2d0b1b4c9a48b847203c214478f90ff3fd9110906f467c72 | https://dl.google.com/dl/android/maven2/androidx/work/work-runtime/2.10.5/w…
-794113709dab21b06c262b3795e73cb708fbacae61715f34361e1af6237a1870 | https://dl.google.com/dl/android/maven2/com/android/databinding/baseLibrary…
-3d92df9f731666a5651783380ed32e035cbf29330aaabcc78ab5ae63351103fa | https://dl.google.com/dl/android/maven2/com/android/databinding/baseLibrary…
-c1dca2c683634ee1a294298f9c7179578af6a86e080bdc40f961915bc5c8142f | https://dl.google.com/dl/android/maven2/com/android/signflinger/8.13.0/sign…
-3a4ad750243b56a875f9573b7fca78d9471594e140b5da58d7795cc865f4f2b9 | https://dl.google.com/dl/android/maven2/com/android/signflinger/8.13.0/sign…
-cca97ac29a1329bd310a3e832b6e57f46227e501aa529c00a63df217c5d7df41 | https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library…
-af239423d3ced93e2ff3c3e43b57aea36bfc87973321926cd8ca2a2159eb6646 | https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library…
-b2ded20a897fba9649efeb18ba2fc062ee39e500d4eb712045cb0e34b43b5efb | https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library…
-60ef0ecc139049efde203e0f16393ba24e8850dff6a7005b38dae9633549d183 | https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library…
-75435816f202b7a3c84d9caf312a895625a244991f8fc52d0446239e3ae29a9c | https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library…
-b46f327e2b0d7dfef21acac495538c52ec3a53fa1b1644fa697be5e7c895bc76 | https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library…
-1b66514bf29152422ee8a19b98e0200d92eb0a3d28048eb4857564e9a1c7b85b | https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library…
-40f550681f67d183ae74904deb5b012c38c74165e899d0a332ad7da43a9ce3c0 | https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library…
-3b4bb9620c17d19e5bd91ac1988080553573b4c3b739fdd92416f42f2daf3e78 | https://dl.google.com/dl/android/maven2/com/android/tools/annotations/31.13…
-230b7d13660d688ff69bfecb5cafc09575a61c4e06d1ea5925e8a3fcad88de5b | https://dl.google.com/dl/android/maven2/com/android/tools/annotations/31.13…
-6acec63c16c58667f7bb2ab31bc1e84465b113a8347b03fb8955b7eabee1eb69 | https://dl.google.com/dl/android/maven2/com/android/tools/build/aapt2-proto…
-70be18f06040e93b7996be05ae8446062ba26aa411d85e73c9dcd71e5e6edf04 | https://dl.google.com/dl/android/maven2/com/android/tools/build/aapt2-proto…
-dbd11e3c11f4f47ab208ad94de2a5bf09d3fbb4b0a84fdcf59cd02141d558f1c | https://dl.google.com/dl/android/maven2/com/android/tools/build/aapt2-proto…
-c1aebd96a144313da65de675cc1f59041b41a52e844228d311bb580ed830b0d9 | https://dl.google.com/dl/android/maven2/com/android/tools/build/aapt2/8.13.…
-ad80277efc576ec7f0a71afe4d1d7b2b7dd7a7d486a3f709a2c5987ae9205854 | https://dl.google.com/dl/android/maven2/com/android/tools/build/aapt2/8.13.…
-f5e93ada4a2902a5d818168b4072d081f7cfa042ea6d00656da42173bca7fe7f | https://dl.google.com/dl/android/maven2/com/android/tools/build/aaptcompile…
-32c313ed01a6e006ee3eac717c17c1e5d218a9df2567528d34b17a5a6742de09 | https://dl.google.com/dl/android/maven2/com/android/tools/build/aaptcompile…
-a3b77986f214acde1efdd1fefea939bb51cef547a444e0c03da69cf5dcb456c2 | https://dl.google.com/dl/android/maven2/com/android/tools/build/aaptcompile…
-c070ed1394629d74641aa0906f60b2ffa1ee77e6366a1f93437f59717b1aeb89 | https://dl.google.com/dl/android/maven2/com/android/tools/build/apksig/8.13…
-b39b6c4169fc42bb7d3a74e045de8203509fa377693b33b7e754e1f07c759869 | https://dl.google.com/dl/android/maven2/com/android/tools/build/apksig/8.13…
-29091c9457252f997ddfeafb33dd65a373ad45840128f945832d8eafd9118561 | https://dl.google.com/dl/android/maven2/com/android/tools/build/apkzlib/8.1…
-a7b86c76d359efee2c7eb295aad0a1c6322192ba64dd0db719e6f4dbeb7e7530 | https://dl.google.com/dl/android/maven2/com/android/tools/build/apkzlib/8.1…
-1a19049980056b7b1321e2c1e0cff6e9f31362bdd833ea7b3f25ea87afb77f50 | https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-mod…
-17ce93ca75630240705eb8334e1e79ef6f63c6c6e7acd5d0a01a5aa16bddffe2 | https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-mod…
-555f48b9a9d0994a80cb5c94590a7da36acb9c5526e76f093a207490a2149255 | https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-mod…
-ab7341dea24e46b229c78b066b3766d965aa92d75c2deb7d55cdbdace3f19d1e | https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-tes…
-43ec9b81ed259b500697ecde242ada206d048892d1650f0487d731fce32bcde6 | https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-tes…
-675435b6732f4c57b09dc0efe1c4045b9de36055553605afc9ad3af668bf8b32 | https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-tes…
-464aea9ccbf200ded6597d2848254d95229e9782779ea67f972588340812a4a9 | https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/8.1…
-0fdb20c12f6592d808da6d0075ed34520f61c71936868b4bde39278bb1b7b59d | https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/8.1…
-9f24359de3865896adb453928853572f52bfc664f3692df2a487e79f0d5c8a13 | https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/8.1…
+794113709dab21b06c262b3795e73cb708fbacae61715f34361e1af6237a1870 | https://dl.google.com/dl/android/maven2/com/android/databinding/baseLibrary…
+1b947451e3dfbb25f7b185066067126f388a589938516583faa2a5179ec4f946 | https://dl.google.com/dl/android/maven2/com/android/databinding/baseLibrary…
+c1dca2c683634ee1a294298f9c7179578af6a86e080bdc40f961915bc5c8142f | https://dl.google.com/dl/android/maven2/com/android/signflinger/8.13.1/sign…
+10d7a0a594111cafe363f11a7925c529fe5f405a40e3d5bb0b1e75490c769bbd | https://dl.google.com/dl/android/maven2/com/android/signflinger/8.13.1/sign…
+cca97ac29a1329bd310a3e832b6e57f46227e501aa529c00a63df217c5d7df41 | https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library…
+66b4fca7afc8abe17043054bb31d39887187d65b8e00540fbcea9010eac6a4f1 | https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library…
+b2ded20a897fba9649efeb18ba2fc062ee39e500d4eb712045cb0e34b43b5efb | https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library…
+90a8f1c280470f89ddb9c853afc46232e6997498ab3b80979f37a91a7fa0f46a | https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library…
+75435816f202b7a3c84d9caf312a895625a244991f8fc52d0446239e3ae29a9c | https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library…
+c6ff578ac65e30633173b8edb8cf15fbe28abb563b4633598f72d821b0df7a7b | https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library…
+1b66514bf29152422ee8a19b98e0200d92eb0a3d28048eb4857564e9a1c7b85b | https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library…
+ab98daac8e519406038ae4944adac34247f34b8360f4de20627f3a1bc967befd | https://dl.google.com/dl/android/maven2/com/android/tools/analytics-library…
+3b4bb9620c17d19e5bd91ac1988080553573b4c3b739fdd92416f42f2daf3e78 | https://dl.google.com/dl/android/maven2/com/android/tools/annotations/31.13…
+7ceb0270e7ecc8cbf1081fdccf4cbafc06264467f834696f7e6c04a615562c5f | https://dl.google.com/dl/android/maven2/com/android/tools/annotations/31.13…
+58d0bc0324d2ab6478c332f134caee9a0d0a8fa3707f59b8fffcd7efa1400671 | https://dl.google.com/dl/android/maven2/com/android/tools/build/aapt2-proto…
+0b25bd782669081714d83cb3a79c0d3dbc0066019c7a4865a2c9a3306a82f91e | https://dl.google.com/dl/android/maven2/com/android/tools/build/aapt2-proto…
+20ba849293d24b1799b4da170cf38860adc44f01d72608d072773337d7d90304 | https://dl.google.com/dl/android/maven2/com/android/tools/build/aapt2-proto…
+8dd344f49fd5eb9a6187884ec8881c09d35aa865ba41389c37e2dbdde6ee3262 | https://dl.google.com/dl/android/maven2/com/android/tools/build/aapt2/8.13.…
+3cd8e62665906faf475d4d97886c484e29bf748fc3808ace7bb31115097c93ae | https://dl.google.com/dl/android/maven2/com/android/tools/build/aapt2/8.13.…
+ddd512e14cc27a380ba1ce8474eb232cd98f91fbce6c9a5dd305e98ce6bd1bf0 | https://dl.google.com/dl/android/maven2/com/android/tools/build/aaptcompile…
+c71490996687f337723686042c027e781419c04466af6239b3f271112ff84321 | https://dl.google.com/dl/android/maven2/com/android/tools/build/aaptcompile…
+08e3d5f349f61b97ea193ee4db1a7af0f756f5ef3429665cd5cccffc6ca1ec57 | https://dl.google.com/dl/android/maven2/com/android/tools/build/aaptcompile…
+c070ed1394629d74641aa0906f60b2ffa1ee77e6366a1f93437f59717b1aeb89 | https://dl.google.com/dl/android/maven2/com/android/tools/build/apksig/8.13…
+c7333d67543f78651482b9283ea8ea0855cb5c3da6fa539366e78f0cd1d34420 | https://dl.google.com/dl/android/maven2/com/android/tools/build/apksig/8.13…
+29091c9457252f997ddfeafb33dd65a373ad45840128f945832d8eafd9118561 | https://dl.google.com/dl/android/maven2/com/android/tools/build/apkzlib/8.1…
+9e14bd0d9663abeef8fe812c1259aa876215fe3ae8c4651be1a46ea0cf358395 | https://dl.google.com/dl/android/maven2/com/android/tools/build/apkzlib/8.1…
+0252ee3ec5f95efeca163d2c84eb694d671304bc34baa2b17a61935d4d97d7ee | https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-mod…
+c735833fc72fb0a25c8c6c32f1ad2c74fd4e865074f2524cc62d705553e4c3a7 | https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-mod…
+f911362b265e77b5c22981bdae78d03ce5007926889d2ca0c006df78e1acdefb | https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-mod…
+c3a7fd8569a544287faf6684e126bd80b5987025160304a2e1d7612b8b13b9a8 | https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-tes…
+93d2e03be15245a100978bca3b1d555969199451ca88aa242123628f72cb928e | https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-tes…
+171d42545ff8691a71e272c9c2aba9e163c3c2c802847b0c22f11225f4ce8e95 | https://dl.google.com/dl/android/maven2/com/android/tools/build/builder-tes…
+8f139ffd353fbd57f7f532ba420afc4bc50e1e09c750ff914702abb4a47eb505 | https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/8.1…
+9d1d1db351210aea23d4b22e1de5ec890301cba27807d392651274dba32e4066 | https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/8.1…
+91968427b19e394e74505c54c3bfbef1dd5874b4da716ebffff9d9b8d7afb83e | https://dl.google.com/dl/android/maven2/com/android/tools/build/builder/8.1…
a73341a7945abcb0e6b8971c7b1b2801bd765006447ca0d2437a4260d572ceac | https://dl.google.com/dl/android/maven2/com/android/tools/build/bundletool/…
5c4df7b2e31f17f20e4b8dbd62a2b7865a09a49a1fd2931a359fd394ecb9b5a5 | https://dl.google.com/dl/android/maven2/com/android/tools/build/bundletool/…
-3fec7962a3109f0a6b0b6e27c89ffcee75c88096263f1910d475f2e3b515757e | https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-api/…
-5cffd4c58b703981d8e32488f854552baf8c8eb71e5e2bfbc734a1f374bdc842 | https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-api/…
-4bab029e73f2a0e8a038af850886b72d0fa5c6819781d80241a66f4a51be4c5a | https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-api/…
-b3a1dcbd5f5ee9ccd7a26a9f87e07134e66eb226634c26eef89e2d3bab81c121 | https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-comm…
-ebc75c5d4d9617b00b29a6b4de9d0b2a6c1f8cdf81f3e65daa02aac1de0a6909 | https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-comm…
-ef6e93f3eda284f6db6d2228bad7cf09d1907969d6bdf5255c7b763584fdb7a4 | https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-comm…
-0bb43c883d33719252e942b2a0a711e480a254237cfdf313e5343aa8ad2d2a5d | https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-sett…
-3fc735534221f27aaae9ae418e1b40aed7906a2d97fbb427be0f0db03decfd97 | https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-sett…
-c2fbd8b6ef110534f50649f8b330c6d4e97960d8d5b72b7e68908c056d2a5e71 | https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-sett…
-d0195874497b4ac3eaeb3a8525bf794d3a5b63a9a01084ca9ac330fb63060d01 | https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/8.13…
-1ffebc2634d322d5ff1646fb54aa9cdaaa00ab5eb3900a193fa561b23e031a77 | https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/8.13…
-ee4182f4b5cb6544f36d23db5d159674ca9ea3db05a8e474295afcfc6cf510da | https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/8.13…
+2d4ff6772e4b912a6f49eda65a5fb8c84c7f2d4f5d52605d926ffeb92bce451f | https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-api/…
+7590a334c02c7e9fa33f9d3074573835a51621c83399edd270900bdf0c822dd9 | https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-api/…
+aa4bd442d89d846124429a7891d981382dc73783d8ca666deeabb03a092758ef | https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-api/…
+ea68987edcb89c05d98e66e2ea4b4e173b5583259cc3df03f820e17a57fbc66a | https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-comm…
+0e45b1a530177a06f5afce9e4bccf9263396bb272db4f05f60a1665d160e8f1d | https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-comm…
+9c1520835e090b217e76f8253e43a891c3fb649d2ddcdd3f73763fef2e7ee052 | https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-comm…
+b5c3d12fa67cd5be46af19483f060e1ce06afb91c64606102b5d0845fb566ab5 | https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-sett…
+0d382614e05140a3e95abba505937de35e3164a881a729e6130a03199ba29e0f | https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-sett…
+9ab396864129835a12538dd8c9857cd40ea6e534baf94491d8d4778d17514518 | https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle-sett…
+70ac2052cf9dc79fdc4822b8bd83ca2fdb9719d4d9a8321a9cae237bdf5c20fc | https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/8.13…
+43f368bb8c3b68f4147e8a76c55ec0632274f864ffa6449c6d378d5958b842b0 | https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/8.13…
+b5edb1cc19d23e1e900f4b06602baecb70320ddad50afebc57c1504c3f2248a3 | https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/8.13…
26abb4a13927d9062169c504c9e94fe80e9ae3a4f7b5ab8875ab007536a91f5e | https://dl.google.com/dl/android/maven2/com/android/tools/build/jetifier/je…
f0917589a42d276163f10040ab5842e91883dcbdb1d48bfd1f1fcaa72c1ca7b7 | https://dl.google.com/dl/android/maven2/com/android/tools/build/jetifier/je…
5c9d42e6b7e35d4d8d02e0a322cf26693b3ec3642b107c8f0be5a721d45a0c6d | https://dl.google.com/dl/android/maven2/com/android/tools/build/jetifier/je…
c5067a7b928237a1271a5e9cb5710e9f80b4973293945bc51e3a4c864ea4bfed | https://dl.google.com/dl/android/maven2/com/android/tools/build/jetifier/je…
36c25576b19993df360170528cc62b7246c37776d6158154a67cdf8fc2d58e13 | https://dl.google.com/dl/android/maven2/com/android/tools/build/jetifier/je…
33b17f396989404a49174748569bc8edf4e39a62a42a35ce93dca5c0e4ba0842 | https://dl.google.com/dl/android/maven2/com/android/tools/build/jetifier/je…
-3e937088e5cfcc6793d9f2971b164c9cadce10afc2938cd858ea9545a62186d5 | https://dl.google.com/dl/android/maven2/com/android/tools/build/manifest-me…
-f125083b7d344f5ef2480ee0c74a2c8db1687b0cfbb9da9ce664264afefaf879 | https://dl.google.com/dl/android/maven2/com/android/tools/build/manifest-me…
-259a57bc8a777d417a258b8ddff084ff9218990e6f7c0e6ea52646b55b7b4e98 | https://dl.google.com/dl/android/maven2/com/android/tools/build/manifest-me…
-b4b6f4ba94843c86e1365f294d9085b5f4f14f63fccd0f0e10da7fdbfa4c3d04 | https://dl.google.com/dl/android/maven2/com/android/tools/common/31.13.0/co…
-47842136c2ed1476a80f143f698e3934351502f4863ab4738a797d28e4b0490b | https://dl.google.com/dl/android/maven2/com/android/tools/common/31.13.0/co…
-839957f961100713ea0eed628a8684cc39aa479631c36249793e6df7e0cd63d8 | https://dl.google.com/dl/android/maven2/com/android/tools/ddms/ddmlib/31.13…
-f68d19d3c1de32a0e8fa254de2cf9ec9bf43e681541358d55d12b36b5b115f8d | https://dl.google.com/dl/android/maven2/com/android/tools/ddms/ddmlib/31.13…
-e3cf3fdc947788dee8d5baa76cb72a66571174bc4741edf0e3bab97a7ca90e1b | https://dl.google.com/dl/android/maven2/com/android/tools/dvlib/31.13.0/dvl…
-f56a1f7e2c196fff0226f2afd2bf4aa61d1c5bb7f0f2b27be61f3071997a898e | https://dl.google.com/dl/android/maven2/com/android/tools/dvlib/31.13.0/dvl…
-9a6faa6061d0f3d54a64decb61944c1b2c6927f8d325cd298c82c2a8d867ee68 | https://dl.google.com/dl/android/maven2/com/android/tools/external/com-inte…
-61b004516581715323b4bbb7d74d45ef25bdd55184e875856fd72ece913814a9 | https://dl.google.com/dl/android/maven2/com/android/tools/external/com-inte…
-552dfaffe295d08504870816c27fc09007e1231fb9b14c1ff9bbf861f9b35990 | https://dl.google.com/dl/android/maven2/com/android/tools/external/com-inte…
-73e1d5e2129a2c663e98fa0354578ed4dbc4e5ab29d832e4f843ef109e9cae53 | https://dl.google.com/dl/android/maven2/com/android/tools/external/com-inte…
-78f18ac2b2509fb6cb19058e8fc9585c361b97990dd7d5db0c2a94744dfb0a96 | https://dl.google.com/dl/android/maven2/com/android/tools/external/org-jetb…
-f26af59cb7f1555151017a15eda199efa05fa57e05cf0e58ec4315abdf2ee5e0 | https://dl.google.com/dl/android/maven2/com/android/tools/external/org-jetb…
-d06bc650247632a4a4e6596b87312019f45e900267c5476c47a5bfa6e3fd3132 | https://dl.google.com/dl/android/maven2/com/android/tools/layoutlib/layoutl…
-898fd13752b13d6390cb0983c7bd23f1c8a2c50b7591e0abad14681d09eaffc3 | https://dl.google.com/dl/android/maven2/com/android/tools/layoutlib/layoutl…
-8f770657dba33f305e583c62953a4f174c75a7b1cd2da7d31134be36a96ae2ac | https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-api/31.…
-635fc52c570c12c4b2b764826fdc34c36eff7abc26e0097a7c805054404a6d5b | https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-api/31.…
-3b64f395ae17fcea104882b00a4acdc7dc691f5daca5dff2bdde89fa052bb199 | https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-checks/…
-0c534723f0f1e9dd3ebd05c52c9daf47016d1b936620bf827ac7c7fbd886af9e | https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-checks/…
-a42b6a41c436d90ca31a13d67afba1157b157efc892a7496f67432bf8a831cbd | https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-gradle/…
-c25772c66557c8d97f3afe95add43a50f0e1aa4befe5c6ca7e22b05d1325b2c5 | https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-gradle/…
-9ee55d8fd002736ed95ee97fb05f4df7ae01f4f976f738fbf37ecab795e59319 | https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-model/3…
-4bb6e67b868b72c25b1614b61d750982e0414cd6716172be3155ad2aa7d6fb80 | https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-model/3…
-4a3ba3babfd79e6fc67bcef647fb4ecfeaf59b481b108f7c2eba4d1c5c6dea8e | https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-typedef…
-f97d2b218a1bfa78c8b53c827884efabae3adf8e129791cf7dff2ff4b346f3d9 | https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-typedef…
-7f875a980ee23916439d368d073cfbc2ee4e4d99ffe1b3e13da794fef347f29a | https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint/31.13.0…
-7f5ebb35c5d6487c1d753605314fd8c89e83342b098e36946e07d5aa4ba7fc61 | https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint/31.13.0…
-c6fc15a5c203064cfd2c8a176fdeac72ae0a2d743ec47a2e66a0238d8d870b6b | https://dl.google.com/dl/android/maven2/com/android/tools/play-sdk-proto/31…
-75e12e795c657b487fd15d3282e1ee4e7133f491b7efffb143975c8be618fa90 | https://dl.google.com/dl/android/maven2/com/android/tools/play-sdk-proto/31…
-e9509b30d088e899948f8cb0d73293c1efd2e1f121fccbbe25d533b648b93fa1 | https://dl.google.com/dl/android/maven2/com/android/tools/repository/31.13.…
-b94058e842c1b654c01dd27cf22ff88173faf3a2388eeab4407f282c62c7bb2f | https://dl.google.com/dl/android/maven2/com/android/tools/repository/31.13.…
-8cfdf99d6f17689e7dd3bcf1834d734f6dd1c64d8c43904632c65d5469565934 | https://dl.google.com/dl/android/maven2/com/android/tools/sdk-common/31.13.…
-7eaa2b537986f6c8876917eed8fc17f64b6f6704e4e27b8d4732f5f29365abb0 | https://dl.google.com/dl/android/maven2/com/android/tools/sdk-common/31.13.…
-def9b0e7f44e54add385cac1715483724f827f166511ebc0c10319742aa80865 | https://dl.google.com/dl/android/maven2/com/android/tools/sdklib/31.13.0/sd…
-d4883e61311ace1029c4fa0eb9f29c98cdfcfab4273cd9a070430369000068f9 | https://dl.google.com/dl/android/maven2/com/android/tools/sdklib/31.13.0/sd…
-047aecdd66e106137f77a52c442f1b83db7d6e8496899800251f206c7f39de65 | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-devic…
-a90567cc8f6a68af29dce7bcb6458b61486e10d246d784c221df35a87b133f93 | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-devic…
-3e7b098f6e3ecae31b6f7909c343b4ec09aa18d8a89f41bf92077ba4b056f453 | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-devic…
-bc4d233e67353d0afed7e88ca8c437e0c6b8f748b7b04456db5002124eaddd16 | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-devic…
-6ba7e6ac2208d74c1bb5f1d1464abafc6a45d8710b20455a2dc02adf8726bc83 | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-…
-89b7605d0ecd9d15559a56d037af631f40b24a296b18e2cda9140d188771b588 | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-…
-4f2b610542e91a35a396b04368a784036e42b8787021460550b9a3495bb8245b | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-…
-7d8f83513acde16ff5aff48c09d17c87a4bfec9fd9d59b0d188866a0f68699c5 | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-…
-fa86719a3dc5de465f7e0c023184414c27f8fd53a34fd557289c0bf6df340244 | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-…
-fd88cbcc00ad48ad200731b0654449148bf72bece66e912be3631bdd9db29c9b | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-…
-a4f34aae0f9ffa026dbf7151436dd7ae53becb72622b40f2c479cac8943d9319 | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-…
-51497d3920aa7a7eee7312602853b74771d57f44d6fc0c3f18af0f6868618e00 | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-…
-c1f6ebbacdad559b6efe4eaa29561552b33156395f069cd9703fda09c462dea6 | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-…
-2e203c6ade1aa5d87086cb208c2d6b39193d78d81ff80c9a1e17c592b9f651ea | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-…
-d429b9312dffa0503381d1ee1b18a999bd901e7456612b2fb48c6a5d5a2caf88 | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-…
-41d9b13dd7b1eefd8960bab44b5fd088deef16e78d56be8b95575cf14563ae09 | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-…
-07060069c35e469d7c343abc15f1d6362bc1356b81bf462539db88a53ed653f1 | https://dl.google.com/dl/android/maven2/com/android/zipflinger/8.13.0/zipfl…
-636a966221aa1ab989fa938f06ec4ccddbb8edff419a67251b9359917f0ba252 | https://dl.google.com/dl/android/maven2/com/android/zipflinger/8.13.0/zipfl…
+5c034df6ca2ff5df7304838a46768ca0feaf794f6816059c040db0cd8dd4f008 | https://dl.google.com/dl/android/maven2/com/android/tools/build/manifest-me…
+8871cdec52a86567a8c6e38767450961e2c3b6bc4e35c32fd5e0add3125c512c | https://dl.google.com/dl/android/maven2/com/android/tools/build/manifest-me…
+cbda2f999d5288341e5e6e381e6e007660775562d2ff9d8a2722ce55af991d3a | https://dl.google.com/dl/android/maven2/com/android/tools/build/manifest-me…
+f4699f6ba9a6f374b89967fd345988698d734e2d89c8216c80b33390a898dcd7 | https://dl.google.com/dl/android/maven2/com/android/tools/common/31.13.1/co…
+40a12da5b52e6962a96f4533290c11e719fe267fb79abbde748db135be719637 | https://dl.google.com/dl/android/maven2/com/android/tools/common/31.13.1/co…
+839957f961100713ea0eed628a8684cc39aa479631c36249793e6df7e0cd63d8 | https://dl.google.com/dl/android/maven2/com/android/tools/ddms/ddmlib/31.13…
+d383bb88d940259e31e62f6f354fd82bc2d8ee2db92365b4b56cb08bac22edde | https://dl.google.com/dl/android/maven2/com/android/tools/ddms/ddmlib/31.13…
+e3cf3fdc947788dee8d5baa76cb72a66571174bc4741edf0e3bab97a7ca90e1b | https://dl.google.com/dl/android/maven2/com/android/tools/dvlib/31.13.1/dvl…
+7afce018468b320d9f5febf1ba0fc19d45cea776d6f990a277321b7016898a23 | https://dl.google.com/dl/android/maven2/com/android/tools/dvlib/31.13.1/dvl…
+9a6faa6061d0f3d54a64decb61944c1b2c6927f8d325cd298c82c2a8d867ee68 | https://dl.google.com/dl/android/maven2/com/android/tools/external/com-inte…
+ec7500daa8a6abee1478d3df76d28e955db5077e9b85eaeac4dfbeaf40b62062 | https://dl.google.com/dl/android/maven2/com/android/tools/external/com-inte…
+552dfaffe295d08504870816c27fc09007e1231fb9b14c1ff9bbf861f9b35990 | https://dl.google.com/dl/android/maven2/com/android/tools/external/com-inte…
+28e32153c2c08e9e09f755b67a563c13363006f4f31a12d4e51faa7548508f96 | https://dl.google.com/dl/android/maven2/com/android/tools/external/com-inte…
+78f18ac2b2509fb6cb19058e8fc9585c361b97990dd7d5db0c2a94744dfb0a96 | https://dl.google.com/dl/android/maven2/com/android/tools/external/org-jetb…
+47b8b92e3b89766cce5e880ef800dc730f81346459817fa627fecdb14ef86916 | https://dl.google.com/dl/android/maven2/com/android/tools/external/org-jetb…
+d06bc650247632a4a4e6596b87312019f45e900267c5476c47a5bfa6e3fd3132 | https://dl.google.com/dl/android/maven2/com/android/tools/layoutlib/layoutl…
+04d70fe1b97acd9fccac9cfa9888c17981c03eb98282a7f77e3113d0737d3423 | https://dl.google.com/dl/android/maven2/com/android/tools/layoutlib/layoutl…
+8f770657dba33f305e583c62953a4f174c75a7b1cd2da7d31134be36a96ae2ac | https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-api/31.…
+5795a98ea5a2784726e24103a9f2f381b894436a015d37d17a60539314981c4a | https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-api/31.…
+3b64f395ae17fcea104882b00a4acdc7dc691f5daca5dff2bdde89fa052bb199 | https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-checks/…
+86e0cfedf5710d5a59e96459e7ee877ac89c6ccf44300e9d5259809c03cdbbc0 | https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-checks/…
+a42b6a41c436d90ca31a13d67afba1157b157efc892a7496f67432bf8a831cbd | https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-gradle/…
+33757698daae8f69b5d10210c252f523d9c668982f69bb3257f694f7b1321688 | https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-gradle/…
+9ee55d8fd002736ed95ee97fb05f4df7ae01f4f976f738fbf37ecab795e59319 | https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-model/3…
+097f06377108211ebc7fa355b26325a2b2333a62a0ffba62b12dea7f24f5c862 | https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-model/3…
+4a3ba3babfd79e6fc67bcef647fb4ecfeaf59b481b108f7c2eba4d1c5c6dea8e | https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-typedef…
+7d17b7786fabf88d5639aaaf51079c7af226846bc1cd26ce2c1b331dd7feea61 | https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint-typedef…
+7f875a980ee23916439d368d073cfbc2ee4e4d99ffe1b3e13da794fef347f29a | https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint/31.13.1…
+9fe538213e370f93de6cbe92b9db545f0ba9714181bd361e0ddc813ec0bd67e8 | https://dl.google.com/dl/android/maven2/com/android/tools/lint/lint/31.13.1…
+c6fc15a5c203064cfd2c8a176fdeac72ae0a2d743ec47a2e66a0238d8d870b6b | https://dl.google.com/dl/android/maven2/com/android/tools/play-sdk-proto/31…
+5597f1be7556fc79171210a8f373bc48e4a662e319411acddff17b1dcb1249b5 | https://dl.google.com/dl/android/maven2/com/android/tools/play-sdk-proto/31…
+e9509b30d088e899948f8cb0d73293c1efd2e1f121fccbbe25d533b648b93fa1 | https://dl.google.com/dl/android/maven2/com/android/tools/repository/31.13.…
+70dad9420b81a2f7ae344e79997d5a75c1ba8d8003e4504b4dcd93b7cc2f7316 | https://dl.google.com/dl/android/maven2/com/android/tools/repository/31.13.…
+8cfdf99d6f17689e7dd3bcf1834d734f6dd1c64d8c43904632c65d5469565934 | https://dl.google.com/dl/android/maven2/com/android/tools/sdk-common/31.13.…
+7fd4b76619f6d073290aa684caf3226559b5c9292b88c20332ce4f79c8f1a321 | https://dl.google.com/dl/android/maven2/com/android/tools/sdk-common/31.13.…
+def9b0e7f44e54add385cac1715483724f827f166511ebc0c10319742aa80865 | https://dl.google.com/dl/android/maven2/com/android/tools/sdklib/31.13.1/sd…
+5328aea2e8ecee6884a92831af514f46aeb81d3401ab521146f9dd629d97b5ef | https://dl.google.com/dl/android/maven2/com/android/tools/sdklib/31.13.1/sd…
+047aecdd66e106137f77a52c442f1b83db7d6e8496899800251f206c7f39de65 | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-devic…
+2711dc148f68afae21ff18b1b58c34749a79141de3264390ad8c0de3395db647 | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-devic…
+3e7b098f6e3ecae31b6f7909c343b4ec09aa18d8a89f41bf92077ba4b056f453 | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-devic…
+2113f24a999a7b58fb526cf5ad44d8d4d57fef6af6051c8a148a8f1f72800531 | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-devic…
+6ba7e6ac2208d74c1bb5f1d1464abafc6a45d8710b20455a2dc02adf8726bc83 | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-…
+58b2ac3d3c5f8c1497060fa79fa410b634d390b8b0b8371d0af139e58ada2432 | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-…
+4f2b610542e91a35a396b04368a784036e42b8787021460550b9a3495bb8245b | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-…
+d684f8c01829b4de183dbcba63ed23388bbe968261ad6c8770fa0ec37f2cb9ee | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-…
+fa86719a3dc5de465f7e0c023184414c27f8fd53a34fd557289c0bf6df340244 | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-…
+c0c197d630d79876d06b8d4a5b0f4ca15ce8ee34a43c7d860beff25ca1a16702 | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-…
+a4f34aae0f9ffa026dbf7151436dd7ae53becb72622b40f2c479cac8943d9319 | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-…
+4bfc36edb3031c4981e26f2bfa2706c81805738ed405aa71e9daafd7e535eb5e | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-…
+c1f6ebbacdad559b6efe4eaa29561552b33156395f069cd9703fda09c462dea6 | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-…
+9616a39e2e9d86be736945c8d9451f920fcc1db506e3777b4539737d88ddf23b | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-…
+d429b9312dffa0503381d1ee1b18a999bd901e7456612b2fb48c6a5d5a2caf88 | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-…
+72f20bfdf7981806b6848facd173be3b01bf4dd9c72d10a5be40252c2c3f9f1c | https://dl.google.com/dl/android/maven2/com/android/tools/utp/android-test-…
+07060069c35e469d7c343abc15f1d6362bc1356b81bf462539db88a53ed653f1 | https://dl.google.com/dl/android/maven2/com/android/zipflinger/8.13.1/zipfl…
+ad177b4a4cf61a38cdbefa6131141648959ec883ae232085638416680f939d1d | https://dl.google.com/dl/android/maven2/com/android/zipflinger/8.13.1/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…
-bb3045e31a47cfe245945c8c7fb1dc952a427546d3777d5f6662cf239ccd2add | https://maven.mozilla.org/maven2/org/mozilla/components/concept-fetch/144.0…
-eadf183f38eb6b90dcd274b69c0d86b3a0f646d795b53dc6fc4ced8f8375ae17 | https://maven.mozilla.org/maven2/org/mozilla/components/concept-fetch/144.0…
+ed6de7620647ac6ea650d7b0ec8723238c5376a42906a4e48d3e45fbad2794c9 | https://maven.mozilla.org/maven2/org/mozilla/components/concept-fetch/145.0…
+aefa5f400ab1c32557bbdb552defd9af0802a12a6073377c454b32d01d5a414a | https://maven.mozilla.org/maven2/org/mozilla/components/concept-fetch/145.0…
f70c4a99453b935ee3ab78f281e420039bfa8ef37dbcd031ae8e52e5440650c2 | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean-gradle-plugin/…
155985bc0da3772894de7a984f9884ffe900aec7adc193025323ecd6929ae443 | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean-gradle-plugin/…
5ec17d3f3144d2a86e617e758cdc4cbd967c968e81472eb9dcb1eec930c2054d | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean-native/66.1.0/…
@@ -316,17 +316,17 @@ c71555751e57e0ef912870e8ac9625ae782502a6a5b9c19ccf83b2a97d8b26bd | https://repo.
c4828e28d7c0a930af9387510b3bada7daa5c04d7c25a75c7b8b081f1c257ddd | https://repo.maven.apache.org/maven2/com/google/jimfs/jimfs/1.1/jimfs-1.1.j…
efa86e5cd922f17b472fdfcae57234d8d4ac3e148b6250737dfce454af7a7a44 | https://repo.maven.apache.org/maven2/com/google/jimfs/jimfs/1.1/jimfs-1.1.p…
080e2984173238b50e064c226afffbb1b0233520295c790a7fd3d6ae4593f063 | https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-bom/3.25.…
-9993196808053c2739f850a94875332fcc91bd439ccfcd4ae306a85fc9f72128 | https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-bom/4.33.…
+e119e0d615bf4348bb9cb576338d6f2d9f8bf8a92ac43231f0b47c976d9fd5f9 | https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-bom/4.33.…
dacc58b2c3d2fa8d4bddc1acb881e78d6cf7c137dd78bc1d67f6aca732436a8d | https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java-util…
a09d190eaa6a79616bc5f4b5404e94b0cab559803a98c8a090c4099962f41f92 | https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java-util…
8540247fad9e06baefa8fb45eb313802d019f485f14300e0f9d6b556ed88e753 | https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.25…
e752032157a7a39be9be3786684075452a46cd586b2865abd33e707568a4c8af | https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.25…
-6d89abb847901a6aed933be8e5fb7692dc051d2c544d0508c46d2dd2e63b207d | https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-javalite/…
-63721ea52dd95e1987d8af5e66f60f74519d7cbd4ab767231513c00ad2f3caae | https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-javalite/…
+a1a1cccbcfa861e988b7ccde58dbe95204156906dd6cd42786b9c8f74d5fe34e | https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-javalite/…
+06a6e214d1f9336dc3f0418c5576bb771fb36ac8ea89e85fbeeae81162d0fa17 | https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-javalite/…
64cc0e3ad6e85f5aec8f9dcf9341d1379e9525364ff53e23e16d8d5824673ef7 | https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-parent/3.…
-07667dd8defa44852599d2babae6fb3402252a182660fb8d90f55721fddf65de | https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-parent/4.…
-855eca120edab40ed611f2b3a5da25a654d22fa4c757de128c7e1dfb70c4d4e7 | https://repo.maven.apache.org/maven2/com/google/protobuf/protoc/4.33.0/prot…
-590258c4f0cf9704a354bd2e01d7303dd9a9672bbcc379e9c40e3d73f67b99cb | https://repo.maven.apache.org/maven2/com/google/protobuf/protoc/4.33.0/prot…
+801d731c020b51ca2f3caca68f31011a27aebf2fe97d16cde5e05fd06b2b35e0 | https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-parent/4.…
+20f95fb179a32e5a721cc2b647a3cb43cd56b748dd1dd01b8cfbf88b4dd08a7a | https://repo.maven.apache.org/maven2/com/google/protobuf/protoc/4.33.1/prot…
+697b44b7543be3e4dc0a6cee315693ec177d8ee9edb9cbd5508ae4f7d6add010 | https://repo.maven.apache.org/maven2/com/google/protobuf/protoc/4.33.1/prot…
757bfe906193b8b651e79dc26cd67d6b55d0770a2cdfb0381591504f779d4a76 | https://repo.maven.apache.org/maven2/com/googlecode/juniversalchardet/juniv…
7846399b35c7cd642a9b3a000c3e2d62d04eb37a4547b6933cc8b18bcc2f086b | https://repo.maven.apache.org/maven2/com/googlecode/juniversalchardet/juniv…
20ef4b82e43ff7c652281a21313cf3b941092467add3fa73509c26f6969efdab | https://repo.maven.apache.org/maven2/com/squareup/javapoet/1.10.0/javapoet-…
=====================================
projects/browser/config
=====================================
@@ -106,7 +106,7 @@ input_files:
- filename: Bundle-Data
enable: '[% ! c("var/android") %]'
- filename: dmg-root
- enable: '[% ! c("var/android") %]'
+ enable: '[% c("var/macos") %]'
- URL: https://dist.torproject.org/torbrowser/noscript/noscript-13.5.1.90101984.xpi
name: noscript
sha256sum: 4731db06df1e433f843cd0d3d449241c9f143ff9d5bbf787c8162bfa63c8ab6c
=====================================
projects/cbindgen/config
=====================================
@@ -16,4 +16,4 @@ steps:
project: cbindgen
pkg_type: cargo_vendor
norec:
- sha256sum: 359841c6485839e92d9c8c719496b0c9c50685609204a9810e736d56d4855f16
+ sha256sum: 3c39d456d74b53ffe044fd624d2c72c7bcbf2c5ff3de54d39f8ca89ce539cdb1
=====================================
projects/firefox/config
=====================================
@@ -17,10 +17,10 @@ container:
use_container: 1
var:
- firefox_platform_version: '146.0a1'
+ firefox_platform_version: '147.0a1'
firefox_version: '[% c("var/firefox_platform_version") %]'
browser_series: '16.0'
- browser_rebase: 2
+ browser_rebase: 1
browser_branch: '[% c("var/browser_series") %]-[% c("var/browser_rebase") %]'
browser_build: 2
copyright_year: '[% exec("git show -s --format=%ci " _ c("git_hash") _ "^{commit}", { exec_noco => 1 }).remove("-.*") %]'
@@ -59,8 +59,8 @@ var:
l10n-changesets: '[% exec("git --no-pager show " _ c("git_hash") _ ":browser/locales/l10n-changesets.json", { exec_noco => 1 }) %]'
- windows_rs_version: '0.58.0'
- windows_rs_sha256sum: dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6
+ windows_rs_version: '0.62.2'
+ windows_rs_sha256sum: 527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580
steps:
src-tarballs:
@@ -90,7 +90,7 @@ steps:
version: '[% c("abbrev") %]'
list_toolchain_updates:
- git_hash: FIREFOX_NIGHTLY_146_END
+ git_hash: FIREFOX_NIGHTLY_147_END
tag_gpg_id: 0
input_files: []
container:
=====================================
projects/geckoview/config
=====================================
@@ -19,10 +19,10 @@ container:
build_apk: 1
var:
- firefox_platform_version: '146.0a1'
+ firefox_platform_version: '147.0a1'
geckoview_version: '[% c("var/firefox_platform_version") %]'
browser_series: '16.0'
- browser_rebase: 2
+ browser_rebase: 1
browser_branch: '[% c("var/browser_series") %]-[% c("var/browser_rebase") %]'
browser_build: 2
gitlab_project: https://gitlab.torproject.org/tpo/applications/tor-browser
@@ -38,7 +38,7 @@ var:
- openjdk-17-jdk-headless
# this should be updated when the list of gradle dependencies is changed
# see doc/how-to-create-gradle-dependencies-list.txt
- gradle_dependencies_version: 146-1
+ gradle_dependencies_version: 147-1
gradle_version: 8.14.3
glean_parser: 14.0.1
# python/mozboot/mozboot/android.py
@@ -143,7 +143,7 @@ steps:
enable: '[% c("var/generate_gradle_dependencies_list") %]'
list_toolchain_updates:
- git_hash: FIREFOX_NIGHTLY_146_END
+ git_hash: FIREFOX_NIGHTLY_147_END
tag_gpg_id: 0
input_files: []
container:
=====================================
projects/geckoview/gradle-dependencies-list.txt
=====================================
The diff for this file was not included because it is too large.
=====================================
projects/geckoview/list_toolchain_updates_checks
=====================================
@@ -16,12 +16,12 @@ check_update_needed ndk_release_name "$needed" "$current"
# build_tools
read -d '' p << 'EOF' || true
-if (m/build_tools_version\\s*=\\s*"([^"]+)"/) {
+if (m/build-tools;(.+)$/) {
print $1;
exit;
}
EOF
-needed=$(cat build/moz.configure/android-sdk.configure | perl -ne "$p")
+needed=$(cat python/mozboot/mozboot/android-packages.txt | perl -ne "$p")
current='[% pc("android-toolchain", "version") %]'
check_update_needed build_tools "$needed" "$current"
=====================================
projects/glean/config
=====================================
@@ -1,9 +1,9 @@
# vim: filetype=yaml sw=2
-git_hash: '137221b113282e3300e1c9eae874891eb1c2ebc2' # v66.1.1
+git_hash: '19729353fa93916067c155b9e293c00836a6948a' # v66.1.2
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: 66.1.1
+version: 66.1.2
container:
use_container: 1
disable_network:
@@ -46,7 +46,7 @@ steps:
project: glean
pkg_type: cargo_vendor
norec:
- sha256sum: 14942534989f8bb3124653167a729534a93fb61e7c5b3d71389f8c3833e2ca93
+ sha256sum: 417e8e09a7fbe3205827dfa518bfc4a7a08f1869e6d4fd9edf5d8f3f1f48061a
- filename: 'gradle-dependencies-[% c("var/gradle_dependencies_version") %]'
name: gradle-dependencies
exec: '[% INCLUDE "fetch-gradle-dependencies" %]'
=====================================
projects/llvm-project/config
=====================================
@@ -1,10 +1,10 @@
# vim: filetype=yaml sw=2
-version: "[% c('var/llvm_major') %].1.7"
-git_hash: cd708029e0b2869e80abe31ddb175f7c35361f90
+version: "[% c('var/llvm_major') %].1.8"
+git_hash: 87f0227cb60147a26a1eeb4fb06e3b505e9c7261
git_url: https://github.com/llvm/llvm-project
filename: '[% project %]-[% c("version") %]-[% c("var/build_id") %].tar.[% c("compress_tar") %]'
var:
- llvm_major: 19
+ llvm_major: '20'
input_files:
=====================================
projects/nasm/config
=====================================
@@ -1,5 +1,5 @@
# vim: filetype=yaml sw=2
-version: 2.16.03
+version: '3.01'
filename: '[% project %]-[% c("version") %]-[% c("var/build_id") %].tar.[% c("compress_tar") %]'
container:
use_container: 1
@@ -10,4 +10,5 @@ input_files:
name: '[% c("var/compiler") %]'
enable: '[% c("var/linux") %]'
- URL: 'https://www.nasm.us/pub/nasm/releasebuilds/[% c("version") %]/nasm-[% c("version") %].tar.xz'
- sha256sum: 1412a1c760bbd05db026b6c0d1657affd6631cd0a63cddb6f73cc6d4aa616148
+ name: nasm
+ sha256sum: b7324cbe86e767b65f26f467ed8b12ad80e124e3ccb89076855c98e43a9eddd4
=====================================
projects/rust/build
=====================================
@@ -13,7 +13,6 @@ export PATH="$distdir-rust-prebuilt/bin:$PATH"
[% pc(c('var/compiler'), 'var/setup', { compiler_tarfile => c('input_files_by_name/' _ c('var/compiler')) }) %]
[% IF c("var/linux") || c("var/android") -%]
- # See the config file for more details on why we do that also on Windows
tar -C /var/tmp/dist -xf $rootdir/[% c('input_files_by_name/clang') %]
export PATH=/var/tmp/dist/clang/bin:$PATH
[% END -%]
@@ -83,8 +82,10 @@ mkdir build
cd build
# We use
+#
# `--enable-local-rust` to avoid downloading the required compiler during build
# time
+#
# `--enable-vendor` to avoid downloading crates during build time and just use
# the ones which are shipped with the source
#
@@ -95,8 +96,6 @@ cd build
# `--sysconfdir=etc` to avoid install failures as |make install| wants to write
# to /etc otherwise
#
-# `--llvm-root=$llvm_root` to avoid building LLVM again while building Rust
-#
# `--target`: x86-64 Linux and WASM are always enabled. Additional targets are
# enabled on the configuration file.
#
@@ -121,7 +120,6 @@ cd build
--enable-extended \
--release-channel=stable \
--sysconfdir=etc \
- --llvm-root=[% c('var/llvm_root') %] \
--set rust.jemalloc \
--target=x86_64-unknown-linux-gnu,wasm32-unknown-unknown,[% c("var/target") %] \
--set target.x86_64-unknown-linux-gnu.linker=clang \
@@ -146,6 +144,6 @@ cd /var/tmp/dist
[% END -%]
[% c('tar', {
- tar_src => [ project ],
- tar_args => '-caf ' _ dest_dir _ '/' _ c('filename'),
- }) %]
+ tar_src => [ project ],
+ tar_args => '-caf ' _ dest_dir _ '/' _ c('filename'),
+ }) %]
=====================================
projects/rust/config
=====================================
@@ -1,12 +1,11 @@
# vim: filetype=yaml sw=2
filename: '[% project %]-[% c("version") %]-[% c("var/filename_targets") %]-[% c("var/build_id") %].tar.[% c("compress_tar") %]'
-version: '1.86.0'
+version: '1.90.0'
container:
use_container: 1
var:
filename_targets: "[% c('var/platform') %]"
- llvm_root: "/var/tmp/dist/clang"
targets:
android:
@@ -23,7 +22,6 @@ targets:
var:
target: '[% c("var/build_target") %]'
target_flags: --set=target.[% c("var/build_target") %].cc=[% c("var/build_target") %]-clang
- llvm_root: "/var/tmp/dist/macosx-toolchain/clang"
filename_targets: "[% c('var/osname') %]"
arch_deps:
- pkg-config
@@ -32,7 +30,6 @@ targets:
var:
target: x86_64-pc-windows-gnullvm,i686-pc-windows-gnullvm
target_flags: --set target.x86_64-pc-windows-gnullvm.linker=x86_64-w64-mingw32-clang --set target.i686-pc-windows-gnullvm.linker=i686-w64-mingw32-clang
- llvm_root: "/var/tmp/dist/mingw-w64-clang"
arch_deps:
- pkg-config
=====================================
projects/uniffi-rs/config
=====================================
@@ -17,4 +17,4 @@ steps:
project: uniffi-rs
pkg_type: cargo_vendor
norec:
- sha256sum: 13aa6d7c6efb3701cb40dfd110e35bcba70a388f6e18fd921229e5f22b06f8ce
+ sha256sum: d1b7305eedcb91215fe6726f35a8c40ae5119ca74196834be9737bbe34384ed9
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/compare/…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/compare/…
You're receiving this email because of your account on gitlab.torproject.org.
1
0
[Git][tpo/applications/mullvad-browser] Pushed new branch mullvad-browser-147.0a1-16.0-1
by henry (@henry) 14 Jan '26
by henry (@henry) 14 Jan '26
14 Jan '26
henry pushed new branch mullvad-browser-147.0a1-16.0-1 at The Tor Project / Applications / Mullvad Browser
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/tree/mullv…
You're receiving this email because of your account on gitlab.torproject.org.
1
0
[Git][tpo/applications/tor-browser][tor-browser-147.0a1-16.0-2] 3 commits: fixup! BB 44167: Don't build the uninstaller for Windows during Firefox compilation
by brizental (@brizental) 14 Jan '26
by brizental (@brizental) 14 Jan '26
14 Jan '26
brizental pushed to branch tor-browser-147.0a1-16.0-2 at The Tor Project / Applications / Tor Browser
Commits:
9eeb936a by Beatriz Rizental at 2026-01-14T10:36:44-03:00
fixup! BB 44167: Don't build the uninstaller for Windows during Firefox compilation
When building with tests enabled, the current patch was breaking the
generated Makefile. This commit fixes it.
- - - - -
e664fbe8 by Beatriz Rizental at 2026-01-14T10:36:44-03:00
fixup! BB 43564: Modify ./mach bootstrap for Base Browser
We don't want to bootstrap OONX. It's a ML tool, not used.
- - - - -
7e98980e by Beatriz Rizental at 2026-01-14T10:36:45-03:00
fixup! BB 43564: Modify ./mach bootstrap for Base Browser
Use our MacOS SDK mirror when bootstrapping for Mac.
- - - - -
3 changed files:
- browser/Makefile.in
- build/moz.configure/bootstrap.configure
- toolkit/moz.configure
Changes:
=====================================
browser/Makefile.in
=====================================
@@ -7,6 +7,7 @@ include $(topsrcdir)/config/rules.mk
ifdef MAKENSISU
ifdef ENABLE_TESTS
+libs::
$(MAKE) -C installer/windows install_deps
endif #ENABLE_TESTS
=====================================
build/moz.configure/bootstrap.configure
=====================================
@@ -165,6 +165,7 @@ def bootstrap_path(path, **kwargs):
when=when,
)
@imports("os")
+ @imports("re")
@imports("subprocess")
@imports("sys")
@imports("mozbuild.tbbutils")
@@ -356,6 +357,23 @@ def bootstrap_path(path, **kwargs):
+ command["arguments"]
+ [path_parts[0]]
)
+
+ # BIG HACK: Replace the Apple CDN link with our mirror,
+ # otherwise bootstrapping will fail whenever a new MacOS SDK
+ # is released, since Apple seems to retire the previous link everytime.
+ # Our mirror serves an _unmodified_ version of the file.
+ macosx_sdk_match = re.match(r"^MacOSX(.*)\.sdk$", path_parts[0])
+ if macosx_sdk_match:
+ version = macosx_sdk_match.group(1)
+ command = [
+ re.sub(
+ r"https://swcdn\.apple\.com/.*/CLTools_macOSNMOS_SDK\.pkg",
+ f"https://build-sources.tbb.torproject.org/CLTools_macOSNMOS_SDK-{version}.pkg",
+ c,
+ )
+ for c in command
+ ]
+
# Clean up anything that was bootstrapped previously before going
# forward. In other cases, that's taken care of by mach artifact toolchain.
rmtree(
=====================================
toolkit/moz.configure
=====================================
@@ -4241,9 +4241,8 @@ with only_when(~artifact_builds):
@depends("--with-onnx-runtime")
def need_boostrap_onnxruntime(with_onnx_runtime):
- return (with_onnx_runtime and len(with_onnx_runtime) == 0) or (
- with_onnx_runtime.origin == "default"
- )
+ # tor-browser#44412: Prevent ONNX from ever getting bootstrapped.
+ return False
@depends(
"--with-onnx-runtime",
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/f1b614…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/f1b614…
You're receiving this email because of your account on gitlab.torproject.org.
1
0