]> source.dussan.org Git - gitea.git/commit
Do not force creation of _cargo-index repo on publish (#27266)
authormerlleu <r.langdorph@gmail.com>
Tue, 24 Oct 2023 03:26:38 +0000 (05:26 +0200)
committerGitHub <noreply@github.com>
Tue, 24 Oct 2023 03:26:38 +0000 (03:26 +0000)
commit796ff26e0e9de8dc746064e57db13518dedcf671
treec30c6deae48ad317d7d25168c34386b2e60f6cc4
parentce83609ff636f4c09d91ac53bee75a350bb571d6
Do not force creation of _cargo-index repo on publish (#27266)

Hello there,
Cargo Index over HTTP is now prefered over git for package updates: we
should not force users who do not need the GIT repo to have the repo
created/updated on each publish (it can still be created in the packages
settings).

The current behavior when publishing is to check if the repo exist and
create it on the fly if not, then update it's content.
Cargo HTTP Index does not rely on the repo itself so this will be
useless for everyone not using the git protocol for cargo registry.

This PR only disable the creation on the fly of the repo when publishing
a crate.

This is linked to #26844 (error 500 when trying to publish a crate if
user is missing write access to the repo) because it's now optional.

---------

Co-authored-by: KN4CK3R <admin@oldschoolhack.me>
routers/api/packages/cargo/cargo.go
services/packages/cargo/index.go
services/packages/cleanup/cleanup.go