Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-05-03tools: Remove handling ruby subdir in module-updaterToon Claes
The ruby subdirectory doesn't exist no more, we can stop skip it.
2023-03-20Merge branch 'cleanup_module-updater' into 'master'James Fargher
Easier major version upgrades Closes #4894 See merge request https://gitlab.com/gitlab-org/gitaly/-/merge_requests/5505 Merged-by: James Fargher <proglottis@gmail.com> Approved-by: Sami Hiltunen <shiltunen@gitlab.com> Reviewed-by: Sami Hiltunen <shiltunen@gitlab.com> Co-authored-by: James Fargher <jfargher@gitlab.com>
2023-03-16module-updater: Relax proto package matcher to catch test protosJames Fargher
2023-03-16module-updater: Extract individual file import updatingJames Fargher
Previously there was a lot of file iteration logic mixed with error handling. Here we extract a helper so that the logic is clearly separated.
2023-03-16lint: Fix discouraged error wrapping verbQuang-Minh Nguyen
We encourage wrapping error with %w when constructing a new error. The new error contains the original error so that it is able to be unwrapped later. This commit converts all error wrapping to %w.
2022-05-20Update go package name from v14 to v15John Cai
This commit changes the major version in the package name from v14 to v15 Updating go.mod & go.sum with new module name v15 Update Makefile to bump major version to v15 Update the gitaly package name in the Makefile. Also update gitaly-git2go-v14 -> gitaly-git2go-v15. We need to keep gitaly-git2go-v14 for a release however, for zero downtime upgrades. This pulls directly from a sha that is v14. Update package name from v14->v15 for auth, client, cmd, internal packages This commit changes the package name from v14 to v15 in go and proto files in the internal, auth, client, cmd packages. proto: Update major package number in package name tools: Change major version number in package name from v14 to v15 gitaly-git2go: Change the package name from v14 to v15 update module updater for v15 Update the documentation for the module updater to reflect v15
2022-05-06tools: Move `module-updater` into top-level `tools/` directoryPatrick Steinhardt
Move the `module-updater` tool into the top-level `tools/` directory so that all of our custom build tools are in one place. This also makes its sources discoverable for our formatter.