@@ -27,6 +27,10 @@ UI, Workflows & Features
2727 absolute and relative paths for "gitdir" and "commondir", supported by
2828 a new path-formatting helper extracted from "git rev-parse".
2929
30+ * When 'git push origin/main' or 'git branch origin main' is run, the
31+ command is now recognized as a potential typo, and advice has been
32+ added to offer a typo fix.
33+
3034
3135Performance, Internal Implementation, Development Support etc.
3236--------------------------------------------------------------
@@ -74,6 +78,16 @@ Performance, Internal Implementation, Development Support etc.
7478 a default limit of at most one reroll per day to give reviewers across
7579 different time zones enough time to participate.
7680
81+ * The lazy priority queue optimization pattern (deferring actual removal
82+ in 'prio_queue_get()' to allow get+put fusion) has been folded
83+ directly into 'prio_queue' itself, speeding up commit traversal
84+ workflows and simplifying callers.
85+
86+ * The 'reprepare()' callback for object database sources has been
87+ generalized into a 'prepare()' callback with an optional flush cache
88+ flag, and a new 'odb_prepare()' wrapper has been introduced to allow
89+ pre-opening object database sources.
90+
7791
7892Fixes since v2.55
7993-----------------
@@ -111,3 +125,18 @@ Fixes since v2.55
111125 test_path_is_missing instead of ! grep on a file that shouldn't
112126 exist in the conflicted state.
113127 (merge eaad121fef sg/t3420-do-not-grep-in-missing-file later to maint).
128+
129+ * The GPG and SSH signature parsing code has been corrected to strip
130+ carriage return characters only when they immediately precede line
131+ feeds, instead of unconditionally stripping all carriage returns.
132+ (merge 5dea8b690b ad/gpg-strip-cr-before-lf later to maint).
133+
134+ * A memory leak in the 'reftable_writer_new()' initialization function
135+ has been fixed by delaying the allocation of 'struct reftable_writer'
136+ until after input options are validated.
137+ (merge c6fb3b9c3e jk/reftable-leakfix later to maint).
138+
139+ * A memory leak in the '--base' handling of 'git format-patch' has been
140+ plugged, and the leak reporting of the test suite when running under a
141+ TAP harness has been improved.
142+ (merge 973a0373ff jk/format-patch-leakfix later to maint).
0 commit comments