forked from git/git
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Git 2.36.2 Signed-off-by: Johannes Schindelin <[email protected]>
- Loading branch information
Showing
42 changed files
with
608 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Git v2.30.5 Release Notes | ||
========================= | ||
|
||
This release contains minor fix-ups for the changes that went into | ||
Git 2.30.3 and 2.30.4, addressing CVE-2022-29187. | ||
|
||
* The safety check that verifies a safe ownership of the Git | ||
worktree is now extended to also cover the ownership of the Git | ||
directory (and the `.git` file, if there is any). | ||
|
||
Carlo Marcelo Arenas Belón (1): | ||
setup: tighten ownership checks post CVE-2022-24765 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Git v2.31.4 Release Notes | ||
========================= | ||
|
||
This release merges up the fixes that appear in v2.30.5 to address | ||
the security issue CVE-2022-29187; see the release notes for that | ||
version for details. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Git v2.32.3 Release Notes | ||
========================= | ||
|
||
This release merges up the fixes that appear in v2.30.5 and | ||
v2.31.4 to address the security issue CVE-2022-29187; see the | ||
release notes for these versions for details. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Git v2.33.4 Release Notes | ||
========================= | ||
|
||
This release merges up the fixes that appear in v2.30.5, v2.31.4 | ||
and v2.32.3 to address the security issue CVE-2022-29187; see | ||
the release notes for these versions for details. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Git v2.34.4 Release Notes | ||
========================= | ||
|
||
This release merges up the fixes that appear in v2.30.5, v2.31.4, | ||
v2.32.3 and v2.33.4 to address the security issue CVE-2022-29187; | ||
see the release notes for these versions for details. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Git v2.35.4 Release Notes | ||
========================= | ||
|
||
This release merges up the fixes that appear in v2.30.5, | ||
v2.31.4, v2.32.3, v2.33.4 and v2.34.4 to address the security | ||
issue CVE-2022-29187; see the release notes for these versions | ||
for details. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
Git v2.36.2 Release Notes | ||
========================= | ||
|
||
This release merges up the fixes that appear in v2.30.5, v2.31.4, | ||
v2.32.3, v2.33.4, v2.34.4 and v2.35.4 to address the security | ||
issue CVE-2022-29187; see the release notes for these versions | ||
for details. | ||
|
||
Apart from that, this maintenance release is primarily to merge down | ||
updates to the build and CI procedures from the 'master' front, in | ||
order to ensure that we can cut healthy maintenance releases in the | ||
future. It also contains a handful of small and trivially-correct | ||
bugfixes. | ||
|
||
Fixes since v2.36.1 | ||
------------------- | ||
|
||
* Fixes real problems noticed by gcc 12 and works around false | ||
positives. | ||
|
||
* Update URL to the gitk repository. | ||
|
||
* The "--current" option of "git show-branch" should have been made | ||
incompatible with the "--reflog" mode, but this was not enforced, | ||
which has been corrected. | ||
|
||
* "git archive --add-file=<path>" picked up the raw permission bits | ||
from the path and propagated to zip output in some cases, without | ||
normalization, which has been corrected (tar output did not have | ||
this issue). | ||
|
||
* A bit of test framework fixes with a few fixes to issues found by | ||
valgrind. | ||
|
||
* macOS CI jobs have been occasionally flaky due to tentative version | ||
skew between perforce and the homebrew packager. Instead of | ||
failing the whole CI job, just let it skip the p4 tests when this | ||
happens. | ||
|
||
* The commit summary shown after making a commit is matched to what | ||
is given in "git status" not to use the break-rewrite heuristics. | ||
|
||
* Avoid problems from interaction between malloc_check and address | ||
sanitizer. | ||
|
||
* "git rebase --keep-base <upstream> <branch-to-rebase>" computed the | ||
commit to rebase onto incorrectly, which has been corrected. | ||
|
||
* The path taken by "git multi-pack-index" command from the end user | ||
was compared with path internally prepared by the tool withut first | ||
normalizing, which lead to duplicated paths not being noticed, | ||
which has been corrected. | ||
|
||
* "git clone --origin X" leaked piece of memory that held value read | ||
from the clone.defaultRemoteName configuration variable, which has | ||
been plugged. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/bin/sh | ||
|
||
GVF=GIT-VERSION-FILE | ||
DEF_VER=v2.36.1 | ||
DEF_VER=v2.36.2 | ||
|
||
LF=' | ||
' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Documentation/RelNotes/2.36.1.txt | ||
Documentation/RelNotes/2.36.2.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.