summaryrefslogtreecommitdiff
path: root/Documentation/RelNotes/2.36.0.txt
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2022-02-05 17:43:36 (GMT)
committerJunio C Hamano <gitster@pobox.com>2022-02-05 17:43:36 (GMT)
commit38062e73e009f27ea192d50481fcb5e7b0e9d6eb (patch)
tree9697f9daaee81b472c3a53d7d76557026bdc5222 /Documentation/RelNotes/2.36.0.txt
parentee52b35e503fda30a269212823cc3dc67c907af7 (diff)
downloadgit-38062e73e009f27ea192d50481fcb5e7b0e9d6eb.zip
git-38062e73e009f27ea192d50481fcb5e7b0e9d6eb.tar.gz
git-38062e73e009f27ea192d50481fcb5e7b0e9d6eb.tar.bz2
The first batch
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/RelNotes/2.36.0.txt')
-rw-r--r--Documentation/RelNotes/2.36.0.txt26
1 files changed, 23 insertions, 3 deletions
diff --git a/Documentation/RelNotes/2.36.0.txt b/Documentation/RelNotes/2.36.0.txt
index c59e0c8..885e733 100644
--- a/Documentation/RelNotes/2.36.0.txt
+++ b/Documentation/RelNotes/2.36.0.txt
@@ -16,12 +16,20 @@ Note to those who build from the source
UI, Workflows & Features
- *
+ * Assorted updates to "git cat-file", especially "-h".
Performance, Internal Implementation, Development Support etc.
- *
+ * "git apply" (ab)used the util pointer of the string-list to keep
+ track of how each symbolic link needs to be handled, which has been
+ simplified by using strset.
+
+ * Fix a hand-rolled alloca() imitation that may have violated
+ alignment requirement of data being sorted in compatibility
+ implementation of qsort_s() and stable qsort().
+
+ * Use the parse-options API in "git reflog" command.
Fixes since v2.35
@@ -29,6 +37,18 @@ Fixes since v2.35
* "rebase" and "stash" in secondary worktrees are broken in
Git 2.35.0, which has been corrected.
- (merge ff5b7913f0 en/keep-cwd later to maint).
+
+ * "git pull --rebase" ignored the rebase.autostash configuration
+ variable when the remote history is a descendant of our history,
+ which has been corrected.
+ (merge 3013d98d7a pb/pull-rebase-autostash-fix later to maint).
+
+ * "git update-index --refresh" has been taught to deal better with
+ racy timestamps (just like "git status" already does).
+ (merge 2ede073fd2 ms/update-index-racy later to maint).
* Other code cleanup, docfix, build fix, etc.
+ (merge cfc5cf428b jc/find-header later to maint).
+ (merge 40e7cfdd46 jh/p4-fix-use-of-process-error-exception later to maint).
+ (merge 727e6ea350 jh/p4-spawning-external-commands-cleanup later to maint).
+ (merge 0a6adc26e2 rs/grep-expr-cleanup later to maint).