morgan pushed to branch maint-14.5 at The Tor Project / Applications / tor-browser-build
Commits: a1a9e32e by Pier Angelo Vendrame at 2025-04-15T19:05:12+00:00 Bug 41434: Exclude macOS as a platform from Go updates.
- - - - -
1 changed file:
- tools/fetch_changelogs.py
Changes:
===================================== tools/fetch_changelogs.py ===================================== @@ -86,6 +86,9 @@ class UpdateEntry(ChangelogEntry): elif name == "GeckoView" or name == "Zstandard": platform = Platform.ANDROID num_platforms = 1 + elif name == "Go": + platform = Platform.ALL_PLATFORMS ^ Platform.MACOS + num_platforms = 1 else: platform = Platform.ALL_PLATFORMS num_platforms = 4
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/a1...