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
diff options
context:
space:
mode:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2022-03-31 14:58:15 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2022-03-31 15:55:58 +0300
commitcc72b4a4aa74fea71662d2940a6da704affcc7ad (patch)
treef9cd8b9677f1a506283ffbe09665cc680574b875
parent1c1cd05ae4f99428f4091e31335a73b4f27d7b05 (diff)
Makefile: Upgrade the default Git distribution to v2.35.1.gl1
Now that we have rolled out bundled Git to production and that the feature flag is gone we can treat this new version as stable. Let's thus also upgrade our default Git distribution to v2.35.1.gl1 so that distros which don't use bundled Git can also benefit. Changelog: changed
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index ccbbc95ef..ed907a860 100644
--- a/Makefile
+++ b/Makefile
@@ -120,7 +120,7 @@ GIT_EXECUTABLES += git-http-backend
# The default version is used in case the caller does not set the variable or
# if it is either set to the empty string or "default".
ifeq (${GIT_VERSION:default=},)
- override GIT_VERSION := v2.33.1
+ override GIT_VERSION := v2.35.1
# This extra version has two intentions: first, it allows us to detect
# capabilities of the command at runtime. Second, it helps admins to
@@ -128,12 +128,12 @@ ifeq (${GIT_VERSION:default=},)
# incremented whenever a new patch is added above. When no patches exist,
# then this should be undefined. Otherwise, it must be set to at least
# `gl1` given that `0` is the "default" GitLab patch level.
- GIT_EXTRA_VERSION := gl3
+ GIT_EXTRA_VERSION := gl1
# Before adding custom patches, please read doc/PROCESS.md#Patching-git
# first to make sure your patches meet our acceptance criteria. Patches
# must be put into `_support/git-patches`.
- GIT_PATCHES := $(wildcard ${SOURCE_DIR}/_support/git-patches/v2.33.1.gl3/*)
+ GIT_PATCHES := $(wildcard ${SOURCE_DIR}/_support/git-patches/v2.35.1.gl1/*)
else
# Support both vX.Y.Z and X.Y.Z version patterns, since callers across GitLab
# use both.