diff options
author | Junio C Hamano <gitster@pobox.com> | 2023-03-17 22:03:20 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-03-17 22:03:20 +0100 |
commit | 950264636c68591989456e3ba0a5442f93152c1a (patch) | |
tree | 6769fb05ebdd985dabff2fa934d083bc1bc25b67 /Documentation | |
parent | Merge branch 'fz/rebase-msg-update' (diff) | |
download | git-950264636c68591989456e3ba0a5442f93152c1a.tar.xz git-950264636c68591989456e3ba0a5442f93152c1a.zip |
Start the 2.41 cycle
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/RelNotes/2.41.0.txt | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/Documentation/RelNotes/2.41.0.txt b/Documentation/RelNotes/2.41.0.txt new file mode 100644 index 0000000000..71c9342aa6 --- /dev/null +++ b/Documentation/RelNotes/2.41.0.txt @@ -0,0 +1,36 @@ +Git v2.41 Release Notes +======================= + +UI, Workflows & Features + + * Allow information carried on the WWW-AUthenticate header to be + passed to the credential helpers. + + * A new "fetch.hideRefs" option can be used to exclude specified refs + from "rev-list --objects --stdin --not --all" traversal for + checking object connectivity, most useful when there are many + unrelated histories in a single repository. + + +Performance, Internal Implementation, Development Support etc. + + * Code clean-up to clarify directory traversal API. + + * Code clean-up to clarify the rule that "git-compat-util.h" must be + the first to be included. + + * More work towards -Wunused. + + * Instead of forcing each command to choose to honor GPG related + configuration variables, make the subsystem lazily initialize + itself. + + +Fixes since v2.40 +----------------- + + * "git fsck" learned to check the index files in other worktrees, + just like "git gc" honors them as anchoring points. + (merge 8d3e7eac52 jk/fsck-indices-in-worktrees later to maint). + + * Other code cleanup, docfix, build fix, etc. |