aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2024-08-26 11:13:19 -0700
committerJunio C Hamano <gitster@pobox.com>2024-08-26 11:13:19 -0700
commit6809f8ccade093875ace7a8493fe09babd539cb1 (patch)
treeb5c250d203cfe1a91a9fd4019b5f26d42195ccb8
parentMerge branch 'xx/diff-tree-remerge-diff-fix' into maint-2.46 (diff)
downloadgit-6809f8ccade093875ace7a8493fe09babd539cb1.tar.gz
git-6809f8ccade093875ace7a8493fe09babd539cb1.zip
A bit more topics for 2.46.x maintenance track
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
-rw-r--r--Documentation/RelNotes/2.46.1.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/Documentation/RelNotes/2.46.1.txt b/Documentation/RelNotes/2.46.1.txt
index 52afb3556a..3b4c44305f 100644
--- a/Documentation/RelNotes/2.46.1.txt
+++ b/Documentation/RelNotes/2.46.1.txt
@@ -34,4 +34,26 @@ Fixes since Git 2.46
* Perforce tests have been updated.
+ * The credential helper to talk to OSX keychain sometimes sent
+ garbage bytes after the username, which has been corrected.
+
+ * A recent update broke "git ls-remote" used outside a repository,
+ which has been corrected.
+
+ * "git config --value=foo --fixed-value section.key newvalue" barfed
+ when the existing value in the configuration file used the
+ valueless true syntax, which has been corrected.
+
+ * "git reflog expire" failed to honor annotated tags when computing
+ reachable commits.
+
+ * A flakey test and incorrect calls to strtoX() functions have been
+ fixed.
+
+ * Follow-up on 2.45.1 regression fix.
+
+ * "git rev-list ... | git diff-tree -p --remerge-diff --stdin" should
+ behave more or less like "git log -p --remerge-diff" but instead it
+ crashed, forgetting to prepare a temporary object store needed.
+
Also contains minor documentation updates and code clean-ups.