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>2023-02-08 09:48:09 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2023-02-08 09:48:09 +0300
commitcd869bcc60f97c19332f93cbf1c0a8b52607df8f (patch)
tree7fb542b628d7d09592efedf976a16e95648b8398 /Makefile
parentb0919f19443fbc6a155caf6d029fbe1cdd19a4c0 (diff)
git: Upgrade to Git security release v2.38.4.gl1 and v2.39.2
Upgrade our Git version to v2.38.4.gl1 and v2.39.2, which pulls in the security releases Git v2.38.4 and v2.39.2 that addresses the following CVEs: - CVE-2023-22490: Using a specially-crafted repository, Git can be tricked into using its local clone optimization even when using a non-local transport. Though Git will abort local clones whose source $GIT_DIR/objects directory contains symbolic links (c.f., CVE-2022-39253), the objects directory itself may still be a symbolic link. These two may be combined to include arbitrary files based on known paths on the victim's filesystem within the malicious repository's working copy, allowing for data exfiltration in a similar manner as CVE-2022-39253. - CVE-2023-23946: By feeding a crafted input to "git apply", a path outside the working tree can be overwritten as the user who is running "git apply". Changelog: security
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0e674b1c3..357ea7954 100644
--- a/Makefile
+++ b/Makefile
@@ -133,9 +133,9 @@ GIT_EXECUTABLES += git-http-backend
## tags, branches, and commit ids.
GIT_VERSION ?=
## The Git version used for bundled Git v2.38.
-GIT_VERSION_2_38 ?= v2.38.3.gl2
+GIT_VERSION_2_38 ?= v2.38.4.gl1
## The Git version used for bundled Git v2.39.
-GIT_VERSION_2_39 ?= v2.39.1
+GIT_VERSION_2_39 ?= v2.39.2
## Skip overriding the Git version and instead use the Git version as specified
## in the Git sources. This is required when building Git from a version that