Skip to content

Commit 8d994db

Browse files
committed
Update draft release notes to 1.8.3
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 260dba5 commit 8d994db

File tree

1 file changed

+31
-10
lines changed

1 file changed

+31
-10
lines changed

Documentation/RelNotes/1.8.3.txt

Lines changed: 31 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,17 @@ UI, Workflows & Features
8181
* "git log" that shows the difference between the parent and the
8282
child has been optimized somewhat.
8383

84+
* "git difftool" allows the user to write into the temporary files
85+
being shown; if the user makes changes to the working tree at the
86+
same time, one of the changes has to be lost in such a case, but it
87+
tells the user what happened and refrains from overwriting the copy
88+
in the working tree.
89+
90+
* There was no good way to ask "I have a random string that came from
91+
outside world. I want to turn it into a 40-hex object name while
92+
making sure such an object exists". A new peeling suffix ^{object}
93+
can be used for that purpose, together with "rev-parse --verify".
94+
8495

8596
Performance, Internal Implementation, etc.
8697

@@ -105,6 +116,10 @@ Performance, Internal Implementation, etc.
105116
codepaths, and setting permission bits to directories is a codepath
106117
that needs to use a more correct one.
107118

119+
* "git checkout" had repeated pathspec matches on the same paths,
120+
which have been consolidated. Also a bug in "git checkout dir/"
121+
that is started from an unmerged index has been fixed.
122+
108123

109124
Also contains minor documentation updates and code clean-ups.
110125

@@ -116,6 +131,22 @@ Unless otherwise noted, all the fixes since v1.8.2 in the maintenance
116131
track are contained in this release (see release notes to them for
117132
details).
118133

134+
* Fix 1.8.1.x regression that stopped matching "dir" (without
135+
trailing slash) to a directory "dir".
136+
(merge efa5f82 jc/directory-attrs-regression-fix later to maint-1.8.1).
137+
138+
* "git apply --whitespace=fix" was not prepared to see a line getting
139+
longer after fixing whitespaces (e.g. tab-in-indent aka Python).
140+
(merge 329b26e jc/apply-ws-fix-tab-in-indent later to maint-1.8.1).
141+
142+
* The prompt string generator (in contrib/completion/) did not notice
143+
when we are in a middle of a "git revert" session.
144+
(merge 3ee4452 rr/prompt-revert-head later to maint).
145+
146+
* "submodule summary --summary-limit" option did not support
147+
"--option=value" form.
148+
(merge 862ae6c rs/submodule-summary-limit later to maint).
149+
119150
* "index-pack --fix-thin" used uninitialize value to compute delta
120151
depths of objects it appends to the resulting pack.
121152
(merge 57165db jk/index-pack-correct-depth-fix later to maint).
@@ -127,22 +158,18 @@ details).
127158
* The code to keep track of what directory names are known to Git on
128159
platforms with case insensitive filesystems can get confused upon a
129160
hash collision between these pathnames and looped forever.
130-
(merge 2092678 kb/name-hash later to maint).
131161

132162
* Annotated tags outside refs/tags/ hierarchy were not advertised
133163
correctly to the ls-remote and fetch with recent version of Git.
134-
(merge c29c46f jk/fully-peeled-packed-ref later to maint).
135164

136165
* Recent optimization broke shallow clones.
137166
(merge f59de5d jk/peel-ref later to maint).
138167

139168
* "git cmd -- ':(top'" was not diagnosed as an invalid syntax, and
140169
instead the parser kept reading beyond the end of the string.
141-
(merge f612a67 lf/setup-prefix-pathspec later to maint).
142170

143171
* "git tag -f <tag>" always said "Updated tag '<tag>'" even when
144172
creating a new tag (i.e. not overwriting nor updating).
145-
(merge 3ae851e ph/tag-force-no-warn-on-creation later to maint).
146173

147174
* "git p4" did not behave well when the path to the root of the P4
148175
client was not its real path.
@@ -151,16 +178,13 @@ details).
151178
* "git archive" reports a failure when asked to create an archive out
152179
of an empty tree. It would be more intuitive to give an empty
153180
archive back in such a case.
154-
(merge bd54cf1 jk/empty-archive later to maint).
155181

156182
* When "format-patch" quoted a non-ascii strings on the header files,
157183
it incorrectly applied rfc2047 and chopped a single character in
158184
the middle of it.
159-
(merge 6cd3c05 ks/rfc2047-one-char-at-a-time later to maint).
160185

161186
* An aliased command spawned from a bare repository that does not say
162187
it is bare with "core.bare = yes" is treated as non-bare by mistake.
163-
(merge 2cd83d1 jk/alias-in-bare later to maint).
164188

165189
* In "git reflog expire", REACHABLE bit was not cleared from the
166190
correct objects.
@@ -173,7 +197,6 @@ details).
173197
"--all" to allow refs that are not annotated tags to be used as a
174198
base of description, did not restrict the output from the command
175199
to those that match the given pattern.
176-
(merge 46e1d6e jc/describe later to maint).
177200

178201
* Clarify in the documentation "what" gets pushed to "where" when the
179202
command line to "git push" does not say these explicitly.
@@ -210,7 +233,6 @@ details).
210233

211234
* 'git commit -m "$msg"' used to add an extra newline even when
212235
$msg already ended with one.
213-
(merge 46fbf75 bc/commit-complete-lines-given-via-m-option later to maint).
214236

215237
* The SSL peer verification done by "git imap-send" did not ask for
216238
Server Name Indication (RFC 4366), failing to connect SSL/TLS
@@ -224,7 +246,6 @@ details).
224246

225247
* Verification of signed tags were not done correctly when not in C
226248
or en/US locale.
227-
(merge 0174eea mg/gpg-interface-using-status later to maint).
228249

229250
* Some platforms and users spell UTF-8 differently; retry with the
230251
most official "UTF-8" when the system does not understand the

0 commit comments

Comments
 (0)