@@ -65,6 +65,8 @@ Performance, Internal Implementation, etc.
65
65
all-or-none atomic updates and migrating the storage to something
66
66
other than the traditional filesystem based one (e.g. databases).
67
67
68
+ * The lockfile API and its users have been cleaned up.
69
+
68
70
* We no longer attempt to keep track of individual dependencies to
69
71
the header files in the build procedure, relying on automated
70
72
dependency generation support from modern compilers.
@@ -164,6 +166,11 @@ notes for details).
164
166
* "git checkout -m" did not switch to another branch while carrying
165
167
the local changes forward when a path was deleted from the index.
166
168
169
+ * "git daemon" (with NO_IPV6 build configuration) used to incorrectly
170
+ use the hostname even when gethostbyname() reported that the given
171
+ hostname is not found.
172
+ (merge 107efbe rs/daemon-fixes later to maint).
173
+
167
174
* With sufficiently long refnames, "git fast-import" could have
168
175
overflown an on-stack buffer.
169
176
@@ -215,3 +222,17 @@ notes for details).
215
222
* "rev-parse --verify --quiet $name" is meant to quietly exit with a
216
223
non-zero status when $name is not a valid object name, but still
217
224
gave error messages in some cases.
225
+
226
+ * A handful of C source files have been updated to include
227
+ "git-compat-util.h" as the first thing, to conform better to our
228
+ coding guidelines.
229
+ (merge 1c4b660 da/include-compat-util-first-in-c later to maint).
230
+
231
+ * t7004 test, which tried to run Git with small stack space, has been
232
+ updated to give a bit larger stack to avoid false breakage on some
233
+ platforms.
234
+ (merge b9a1907 sk/tag-contains-wo-recursion later to maint).
235
+
236
+ * A few documentation pages had example sections marked up not quite
237
+ correctly, which passed AsciiDoc but failed with AsciiDoctor.
238
+ (merge c30c43c bc/asciidoc-pretty-formats-fix later to maint).
0 commit comments