diff options
author | adam <adam@pkgsrc.org> | 2021-02-09 06:45:06 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2021-02-09 06:45:06 +0000 |
commit | d0a8da1751ce5f5a1189ccd6f3b57466d6df6ccb (patch) | |
tree | b3c0043b3f07cfece2ddde849a31a52583cbcbe0 /devel | |
parent | 23f9c2979b5daecdc2e444cb8ddbca8bbf41f43a (diff) | |
download | pkgsrc-d0a8da1751ce5f5a1189ccd6f3b57466d6df6ccb.tar.gz |
git: updated to 2.30.1
Git v2.30.1 Release Notes
=========================
This release is primarily to merge fixes accumulated on the 'master'
front to prepare for 2.31 release that are still relevant to 2.30.x
maintenance track.
Fixes since v2.30
-----------------
* "git fetch --recurse-submodules" failed to update a submodule
when it has an uninitialized (hence of no interest to the user)
sub-submodule, which has been corrected.
* Command line error of "git rebase" are diagnosed earlier.
* "git stash" did not work well in a sparsely checked out working
tree.
* Some tests expect that "ls -l" output has either '-' or 'x' for
group executable bit, but setgid bit can be inherited from parent
directory and make these fields 'S' or 's' instead, causing test
failures.
* "git for-each-repo --config=<var> <cmd>" should not run <cmd> for
any repository when the configuration variable <var> is not defined
even once.
* "git mergetool --tool-help" was broken in 2.29 and failed to list
all the available tools.
* Fix for procedure to building CI test environment for mac.
* Newline characters in the host and path part of git:// URL are
now forbidden.
* When more than one commit with the same patch ID appears on one
side, "git log --cherry-pick A...B" did not exclude them all when a
commit with the same patch ID appears on the other side. Now it
does.
* Documentation for "git fsck" lost stale bits that has become
incorrect.
* Doc for packfile URI feature has been clarified.
* The implementation of "git branch --sort" wrt the detached HEAD
display has always been hacky, which has been cleaned up.
* Our setting of GitHub CI test jobs were a bit too eager to give up
once there is even one failure found. Tweak the knob to allow
other jobs keep running even when we see a failure, so that we can
find more failures in a single run.
Also contains minor documentation updates and code clean-ups.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/git-base/distinfo | 10 | ||||
-rw-r--r-- | devel/git/Makefile.version | 4 |
2 files changed, 7 insertions, 7 deletions
diff --git a/devel/git-base/distinfo b/devel/git-base/distinfo index 794b24ca5bf..3e8ca88f369 100644 --- a/devel/git-base/distinfo +++ b/devel/git-base/distinfo @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.104 2021/01/11 10:20:16 adam Exp $ +$NetBSD: distinfo,v 1.105 2021/02/09 06:45:06 adam Exp $ -SHA1 (git-2.30.0.tar.xz) = 6be02a878d08227d85f0cf4d5646b19c60a242e4 -RMD160 (git-2.30.0.tar.xz) = 17081fb3ca73aa9aa486994a07c7e6f61c781046 -SHA512 (git-2.30.0.tar.xz) = 2ce154d6e224e78d7da2ea9b954d8cf56bdfe43636b93dd5045a950a7362d3943866b4949eb5ed03528d6e5f0466c33c233b502d84430ed9d90326bcc696101d -Size (git-2.30.0.tar.xz) = 6325652 bytes +SHA1 (git-2.30.1.tar.xz) = a292d21bb94bdc4a8ca83e06cde9dc222059187b +RMD160 (git-2.30.1.tar.xz) = a9cca3bff96ed9d018abe365b40667ffe9b044e9 +SHA512 (git-2.30.1.tar.xz) = b3567d251c73807857f05f46cae3acb4e0d876590d122229c05509d5eb17fc3eee0ba97a1b2068070b399085f7a92aa2493c4833b98f65b8ef15fc279798caa3 +Size (git-2.30.1.tar.xz) = 6327976 bytes SHA1 (patch-Documentation_Makefile) = 6025adac0fbb4b403f3954e6dac9d690dfb22daa SHA1 (patch-Makefile) = 73741b9d9a1b32bb47db48a7c546c4ff10fb41d6 SHA1 (patch-config.mak.uname) = 5316873147acf5b6ef29e426946280bb6441c886 diff --git a/devel/git/Makefile.version b/devel/git/Makefile.version index 1e49e7326a1..82804fe4c32 100644 --- a/devel/git/Makefile.version +++ b/devel/git/Makefile.version @@ -1,7 +1,7 @@ -# $NetBSD: Makefile.version,v 1.92 2021/01/11 10:20:16 adam Exp $ +# $NetBSD: Makefile.version,v 1.93 2021/02/09 06:45:06 adam Exp $ # # used by devel/git/Makefile.common # used by devel/git-cvs/Makefile # used by devel/git-svn/Makefile -GIT_VERSION= 2.30.0 +GIT_VERSION= 2.30.1 |