Third batch for 2.19 cycle

Signed-off-by: Junio C Hamano <gitster@pobox.com>

Junio C Hamano committed Jul 18, 2018 at 12:24 UTC b7bd9486b055c3f967a870311e704e3bb0654e4f
1 file changed +59 -1
Documentation/RelNotes/2.19.0.txt
+59 -1
@@ -15,6 +15,15 @@ UI, Workflows & Features
15 otherwise working-tree-only application of a patch will add new
16 paths to the index marked with the "intent-to-add" bit.
17
18 + * "git grep" learned the "--column" option that gives not just the
19 + line number but the column number of the hit.
20 +
21 + * The "-l" option in "git branch -l" is an unfortunate short-hand for
22 + "--create-reflog", but many users, both old and new, somehow expect
23 + it to be something else, perhaps "--list". This step warns when "-l"
24 + is used as a short-hand for "--create-reflog" and warns about the
25 + future repurposing of the it when it is used.
26 +
27
28 Performance, Internal Implementation, Development Support etc.
29
@@ -51,6 +60,18 @@ Performance, Internal Implementation, Development Support etc.
60 * Build and test procedure for netrc credential helper (in contrib/)
61 has been updated.
62
63 + * The conversion to pass "the_repository" and then "a_repository"
64 + throughout the object access API continues.
65 +
66 + * Remove unused function definitions and declarations from ewah
67 + bitmap subsystem.
68 +
69 + * Code preparation to make "git p4" closer to be usable with Python 3.
70 +
71 + * Tighten the API to make it harder to misuse in-tree .gitmodules
72 + file, even though it shares the same syntax with configuration
73 + files, to read random configuration items from it.
74 +
75
76 Fixes since v2.18
77 -----------------
@@ -96,6 +117,43 @@ Fixes since v2.18
117 to the submodule was changed in the range of commits in the
118 superproject, sometimes showing "(null)". This has been corrected.
119
99 - * Code cleanup.
120 + * "git submodule" did not correctly adjust core.worktree setting that
121 + indicates whether/where a submodule repository has its associated
122 + working tree across various state transitions, which has been
123 + corrected.
124 + (merge 984cd77ddb sb/submodule-core-worktree later to maint).
125 +
126 + * Bugfix for "rebase -i" corner case regression.
127 + (merge a9279c6785 pw/rebase-i-keep-reword-after-conflict later to maint).
128 +
129 + * Recently added "--base" option to "git format-patch" command did
130 + not correctly generate prereq patch ids.
131 + (merge 15b76c1fb3 xy/format-patch-prereq-patch-id-fix later to maint).
132 +
133 + * POSIX portability fix in Makefile to fix a glitch introduced a few
134 + releases ago.
135 + (merge 6600054e9b dj/runtime-prefix later to maint).
136 +
137 + * "git filter-branch" when used with the "--state-branch" option
138 + still attempted to rewrite the commits whose filtered result is
139 + known from the previous attempt (which is recorded on the state
140 + branch); the command has been corrected not to waste cycles doing
141 + so.
142 + (merge 709cfe848a mb/filter-branch-optim later to maint).
143 +
144 + * Clarify that setting core.ignoreCase to deviate from reality would
145 + not turn a case-incapable filesystem into a case-capable one.
146 + (merge 48294b512a ms/core-icase-doc later to maint).
147 +
148 + * Code cleanup, docfix, build fix, etc.
149 (merge aee9be2ebe sg/update-ref-stdin-cleanup later to maint).
150 (merge 037714252f jc/clean-after-sanity-tests later to maint).
151 + (merge 5b26c3c941 en/merge-recursive-cleanup later to maint).
152 + (merge 0dcbc0392e bw/config-refer-to-gitsubmodules-doc later to maint).
153 + (merge bb4d000e87 bw/protocol-v2 later to maint).
154 + (merge 928f0ab4ba vs/typofixes later to maint).
155 + (merge d7f590be84 en/rebase-i-microfixes later to maint).
156 + (merge 81d395cc85 js/rebase-recreate-merge later to maint).
157 + (merge 51d1863168 tz/exclude-doc-smallfixes later to maint).
158 + (merge a9aa3c0927 ds/commit-graph later to maint).
159 + (merge 5cf8e06474 js/enhanced-version-info later to maint).