Merge branch 'deprecate_bzr_svn' into 'master'

Deprecate bzr, hg and git-svn support (attack surface)

See merge request fdroid/fdroidserver!1656
This commit is contained in:
Hans-Christoph Steiner 2025-05-23 07:15:12 +00:00
commit bd10ee73c1

View File

@ -1355,6 +1355,7 @@ def getvcs(vcstype, remote, local):
"""
if vcstype == 'git':
return vcs_git(remote, local)
logging.warning(_("RepoType {type} is deprecated, please switch to git.").format(type=vcstype))
if vcstype == 'git-svn':
return vcs_gitsvn(remote, local)
if vcstype == 'hg':