Skip to content

Commit 188ae81

Browse files
committed
Autogenerated HTML docs for v2.49.0-503-g6c0bd
1 parent 8034b4d commit 188ae81

File tree

3 files changed

+28
-5
lines changed

3 files changed

+28
-5
lines changed

RelNotes/2.50.0.adoc

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ UI, Workflows & Features
5151
* "git blame --porcelain" mode now talks about unblamable lines and
5252
lines that are blamed to an ignored commit.
5353

54+
* The build procedure installs bash (but not zsh) completion script.
55+
5456

5557
Performance, Internal Implementation, Development Support etc.
5658
--------------------------------------------------------------
@@ -115,6 +117,16 @@ Performance, Internal Implementation, Development Support etc.
115117
* Update parse-options API to catch mistakes to pass address of an
116118
integral variable of a wrong type/size.
117119
120+
* Since a call to repo_config() can be called with repo set to NULL
121+
these days, a command that is marked as RUN_SETUP in the builtin
122+
command table does not have to check repo with NULL before making
123+
the call.
124+
125+
* Overhaul of the reftable API.
126+
127+
* Reduce requirement for Perl in our documentation build and a few
128+
scripts.
129+
118130
119131
Fixes since v2.49
120132
-----------------
@@ -224,6 +236,12 @@ Fixes since v2.49
224236
* Various build tweaks, including CSPRNG selection on some platforms.
225237
(merge cdda67de03 rj/build-tweaks later to maint).
226238

239+
* Developer support fix..
240+
(merge 32b74b9809 js/git-perf-env-override later to maint).
241+
242+
* Fix for scheduled maintenance tasks on platforms using launchctl.
243+
(merge eb2d7beb0e jh/gc-launchctl-schedule-fix later to maint).
244+
227245
* Other code cleanup, docfix, build fix, etc.
228246
(merge 227c4f33a0 ja/doc-block-delimiter-markup-fix later to maint).
229247
(merge 2bfd3b3685 ab/decorate-code-cleanup later to maint).
@@ -244,3 +262,8 @@ Fixes since v2.49
244262
(merge 107d889303 md/t1403-path-is-file later to maint).
245263
(merge abd4192b07 js/comma-semicolon-confusion later to maint).
246264
(merge 27b7264206 ab/environment-clean-header later to maint).
265+
(merge ff4a749354 as/typofix-in-env-h-header later to maint).
266+
(merge 86eef3541e az/tighten-string-array-constness later to maint).
267+
(merge 25292c301d lo/remove-log-reencode-from-rev-info later to maint).
268+
(merge 1aa50636fd jk/p5332-testfix later to maint).
269+
(merge 42cf4ac552 ps/ci-resurrect-p4-on-github later to maint).

howto/recover-corrupted-object-harder.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ static int try_zlib(unsigned char *buf, int len)
125125
{
126126
/* make this absurdly large so we don't have to loop */
127127
static unsigned char out[1024*1024];
128-
z_stream z;
128+
struct z_stream_s z;
129129
int ret;
130130
131131
memset(&z, 0, sizeof(z));
@@ -278,7 +278,7 @@ int main(int argc, char **argv)
278278
static unsigned char buf[25 * 1024 * 1024];
279279
static unsigned char out[25 * 1024 * 1024];
280280
int len;
281-
z_stream z;
281+
struct z_stream_s z;
282282
int ret;
283283
284284
len = read(0, buf, sizeof(buf));

howto/recover-corrupted-object-harder.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,7 @@ <h1>How to recover an object from scratch</h1>
586586
{
587587
/* make this absurdly large so we don't have to loop */
588588
static unsigned char out[1024*1024];
589-
z_stream z;
589+
struct z_stream_s z;
590590
int ret;
591591

592592
memset(&amp;z, 0, sizeof(z));
@@ -758,7 +758,7 @@ <h2 id="_the_adventure_continues">The adventure continues&#8230;&#8203;</h2>
758758
static unsigned char buf[25 * 1024 * 1024];
759759
static unsigned char out[25 * 1024 * 1024];
760760
int len;
761-
z_stream z;
761+
struct z_stream_s z;
762762
int ret;
763763

764764
len = read(0, buf, sizeof(buf));
@@ -965,7 +965,7 @@ <h2 id="_the_adventure_continues">The adventure continues&#8230;&#8203;</h2>
965965
</div>
966966
<div id="footer">
967967
<div id="footer-text">
968-
Last updated 2025-04-23 15:23:09 -0700
968+
Last updated 2025-04-29 17:05:52 -0700
969969
</div>
970970
</div>
971971
</body>

0 commit comments

Comments
 (0)