
morgan pushed to branch main at The Tor Project / Applications / tor-browser-build Commits: e6c3db8a by Nicolas Vigier at 2025-04-16T14:53:20+00:00 Bug 41435: Skip update-responses update entries for versions without incremental or full update mar - - - - - 1 changed file: - tools/update-responses/update_responses Changes: ===================================== tools/update-responses/update_responses ===================================== @@ -351,6 +351,11 @@ sub get_response { ); goto CLOSETAGS; } + if (!$config->{versions}{$version}{files}{$os}{complete} && + (!$from_version || + !$config->{versions}{$version}{files}{$os}{partial}{$from_version})) { + next; + } my $minversion = get_config($config, $version, $os, 'minSupportedOSVersion'); my $mininstruc = get_config($config, $version, $os, 'minSupportedInstructionSet'); $writer->startTag('update', View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/e6... -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/e6... You're receiving this email because of your account on gitlab.torproject.org.
participants (1)
-
morgan (@morgan)