summaryrefslogtreecommitdiff
path: root/Documentation/RelNotes/2.19.2.txt
blob: 759e6ca95738e1149f065f622de8ec9fb52a68fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
Git v2.19.2 Release Notes
=========================
 
Fixes since v2.19.1
-------------------
 
 * "git interpret-trailers" and its underlying machinery had a buggy
   code that attempted to ignore patch text after commit log message,
   which triggered in various codepaths that will always get the log
   message alone and never get such an input.
 
 * "git rebase -i" did not clear the state files correctly when a run
   of "squash/fixup" is aborted and then the user manually amended the
   commit instead, which has been corrected.
 
 * When fsmonitor is in use, after operation on submodules updates
   .gitmodules, we lost track of the fact that we did so and relied on
   stale fsmonitor data.
 
 * Fix for a long-standing bug that leaves the index file corrupt when
   it shrinks during a partial commit.
 
 * Further fix for O_APPEND emulation on Windows
 
 * A corner case bugfix in "git rerere" code.
 
 * "git add ':(attr:foo)'" is not supported and is supposed to be
   rejected while the command line arguments are parsed, but we fail
   to reject such a command line upfront.
 
 * "git rebase" etc. in Git 2.19 fails to abort when given an empty
   commit log message as result of editing, which has been corrected.
 
 * The code to backfill objects in lazily cloned repository did not
   work correctly, which has been corrected.
 
 * Update error messages given by "git remote" and make them consistent.
 
 * "git update-ref" learned to make both "--no-deref" and "--stdin"
   work at the same time.
 
 * Recently added "range-diff" had a corner-case bug to cause it
   segfault, which has been corrected.
 
 * The recently introduced commit-graph auxiliary data is incompatible
   with mechanisms such as replace & grafts that "breaks" immutable
   nature of the object reference relationship.  Disable optimizations
   based on its use (and updating existing commit-graph) when these
   incompatible features are in use in the repository.
 
 * The mailmap file update.
 
 * The code in "git status" sometimes hit an assertion failure.  This
   was caused by a structure that was reused without cleaning the data
   used for the first run, which has been corrected.
 
 * A corner-case bugfix.
 
 * A partial clone that is configured to lazily fetch missing objects
   will on-demand issue a "git fetch" request to the originating
   repository to fill not-yet-obtained objects.  The request has been
   optimized for requesting a tree object (and not the leaf blob
   objects contained in it) by telling the originating repository that
   no blobs are needed.
 
 * The codepath to support the experimental split-index mode had
   remaining "racily clean" issues fixed.
 
 * "git log --graph" showing an octopus merge sometimes miscounted the
   number of display columns it is consuming to show the merge and its
   parent commits, which has been corrected.
 
 * The implementation of run_command() API on the UNIX platforms had a
   bug that caused a command not on $PATH to be found in the current
   directory.
 
 * A mutex used in "git pack-objects" were not correctly initialized
   and this caused "git repack" to dump core on Windows.
 
 * Under certain circumstances, "git diff D:/a/b/c D:/a/b/d" on
   Windows would strip initial parts from the paths because they
   were not recognized as absolute, which has been corrected.
 
 * The receive.denyCurrentBranch=updateInstead codepath kicked in even
   when the push should have been rejected due to other reasons, such
   as it does not fast-forward or the update-hook rejects it, which
   has been corrected.
 
 * "git repack" in a shallow clone did not correctly update the
   shallow points in the repository, leading to a repository that
   does not pass fsck.
 
 * Operations on promisor objects make sense in the context of only a
   small subset of the commands that internally use the revisions
   machinery, but the "--exclude-promisor-objects" option were taken
   and led to nonsense results by commands like "log", to which it
   didn't make much sense.  This has been corrected.
 
 * The "container" mode of TravisCI is going away.  Our .travis.yml
   file is getting prepared for the transition.
 
 * Our test scripts can now take the '-V' option as a synonym for the
   '--verbose-log' option.
 
 * A regression in Git 2.12 era made "git fsck" fall into an infinite
   loop while processing truncated loose objects.
 
Also contains various documentation updates and code clean-ups.