forked from msysgit/git
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Johannes Schindelin <[email protected]>
- Loading branch information
Showing
3 changed files
with
28 additions
and
2 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,26 @@ | ||
Git 2.39.5 Release Notes | ||
======================== | ||
|
||
Relative to Git 2.39.5, this release has fixes for regressions that | ||
were introduced in 2.39.4, most notably the error message shown when | ||
cloning Git LFS-enabled repositories. It also contains a fix for the | ||
`osx-gcc` CI job. | ||
|
||
Fixes since Git 2.39.4 | ||
---------------------- | ||
|
||
* Hooks that are intentionally installed _during_ a clone operation | ||
(like Git LFS does in its `smudge` filter) can now be marked as | ||
intentional by appending `safe.hook.sha256` values to a protected | ||
config. | ||
|
||
The hooks installed by the current Git LFS version (3.5.1) are | ||
hard-coded as being safe. | ||
|
||
* The `core.hooksPath` setting is allowed in repository-local | ||
configs again; The benefits of making it protected were | ||
outweighed by the cost. | ||
|
||
* Fix a memory leak. | ||
|
||
* CI fix. |
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.39.4 | ||
DEF_VER=v2.39.5 | ||
|
||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Documentation/RelNotes/2.39.4.txt | ||
Documentation/RelNotes/2.39.5.txt |