aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2024-06-24 15:02:54 -0700
committerJunio C Hamano <gitster@pobox.com>2024-06-24 16:39:16 -0700
commit1e1586e4ed626bde864339c10570bc0e73f0ab97 (patch)
tree119209fcfff3fd10e3c49626ef3b14b8c8ae47d0
parent532083fd1609b840cb4076440800ed7b4f2d9df0 (diff)
downloadgit-1e1586e4ed626bde864339c10570bc0e73f0ab97.tar.gz
The sixteenth batch
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--Documentation/RelNotes/2.46.0.txt24
1 files changed, 24 insertions, 0 deletions
diff --git a/Documentation/RelNotes/2.46.0.txt b/Documentation/RelNotes/2.46.0.txt
index 182f4c7e65..6cccdcd2bb 100644
--- a/Documentation/RelNotes/2.46.0.txt
+++ b/Documentation/RelNotes/2.46.0.txt
@@ -85,6 +85,10 @@ UI, Workflows & Features
* The "--heads" option of "ls-remote" and "show-ref" has been been
deprecated; "--branches" replaces "--heads".
+ * For over a year, setting add.interactive.useBuiltin configuration
+ variable did nothing but giving a "this does not do anything"
+ warning. The warning has been removed.
+
Performance, Internal Implementation, Development Support etc.
@@ -173,6 +177,10 @@ Performance, Internal Implementation, Development Support etc.
decisions to deprecate/remove/update various behaviour has been
outlined.
+ * The pseudo-merge reachability bitmap to help more efficient storage
+ of the reachability bitmap in a repository with too many refs has
+ been added.
+
Fixes since v2.45
-----------------
@@ -306,6 +314,21 @@ Fixes since v2.45
caught earlier in the process that parses the todo list.
(merge 4c063c82e9 pw/rebase-i-error-message later to maint).
+ * We forgot to normalize the result of getcwd() to NFC on macOS where
+ all other paths are normalized, which has been corrected. This still
+ does not address the case where core.precomposeUnicode configuration
+ is not defined globally.
+ (merge 71fa8d2212 tb/precompose-getcwd later to maint).
+
+ * Earlier we stopped using the tree of HEAD as the default source of
+ attributes in a bare repository, but failed to document it. This
+ has been corrected.
+ (merge 5c71d6b63a jc/no-default-attr-tree-in-bare later to maint).
+
+ * "git update-server-info" and "git commit-graph --write" have been
+ updated to use the tempfile API to avoid leaving cruft after
+ failing.
+
* Other code cleanup, docfix, build fix, etc.
(merge a5a4cb7b27 rs/diff-parseopts-cleanup later to maint).
(merge 55702c543e fa/p4-error later to maint).
@@ -318,3 +341,4 @@ Fixes since v2.45
(merge 36d900d2b0 rs/difftool-env-simplify later to maint).
(merge e83055ecb0 ds/doc-add-interactive-singlekey later to maint).
(merge f1160393c1 ds/ahead-behind-fix later to maint).
+ (merge bf6a86236e jc/worktree-git-path later to maint).