File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -31,7 +31,9 @@ UI, Workflows & Features
3131 subcommand "git url-parse".
3232
3333 * Misspelt proxy URL (e.g., httt://...) did not trigger any warning
34- or failure, which has been corrected.
34+ or failure, which has been corrected. We had a regression in this
35+ update that broke https:// proxies, but that has been caught and
36+ corrected.
3537
3638 * Document the fact that .git/info/exclude is shared across worktrees
3739 linked to the same repository.
Original file line number Diff line number Diff line change 11#! /bin/sh
22
3- DEF_VER=v2.55.0-rc2
3+ DEF_VER=v2.55.0
44
55LF='
66'
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ DocumentRoot www
44LogFormat "%h %l %u %t \"%r\" %>s %b" common
55CustomLog access.log common
66ErrorLog error.log
7+ Timeout 600
78<IfModule !mod_log_config.c>
89 LoadModule log_config_module modules/mod_log_config.so
910</IfModule>
Original file line number Diff line number Diff line change @@ -397,15 +397,16 @@ create_tags () {
397397}
398398
399399test_expect_success ' create 2,000 tags in the repo' '
400+ git init --bare "$HTTPD_DOCUMENT_ROOT_PATH/many-tags.git" &&
400401 (
401- cd "$HTTPD_DOCUMENT_ROOT_PATH/repo .git" &&
402+ cd "$HTTPD_DOCUMENT_ROOT_PATH/many-tags .git" &&
402403 create_tags 1 2000
403404 )
404405'
405406
406407test_expect_success CMDLINE_LIMIT \
407408 ' clone the 2,000 tag repo to check OS command line overflow' '
408- run_with_limited_cmdline git clone $HTTPD_URL/smart/repo .git too-many-refs &&
409+ run_with_limited_cmdline git clone $HTTPD_URL/smart/many-tags .git too-many-refs &&
409410 (
410411 cd too-many-refs &&
411412 git for-each-ref refs/tags >actual &&
@@ -483,12 +484,12 @@ test_expect_success 'test allowanysha1inwant with unreachable' '
483484test_expect_success EXPENSIVE ' http can handle enormous ref negotiation' '
484485 test_when_finished "rm -f tags" &&
485486 (
486- cd "$HTTPD_DOCUMENT_ROOT_PATH/repo .git" &&
487+ cd "$HTTPD_DOCUMENT_ROOT_PATH/many-tags .git" &&
487488 create_tags 2001 50000
488489 ) &&
489490 git -C too-many-refs fetch -q --tags &&
490491 (
491- cd "$HTTPD_DOCUMENT_ROOT_PATH/repo .git" &&
492+ cd "$HTTPD_DOCUMENT_ROOT_PATH/many-tags .git" &&
492493 create_tags 50001 100000
493494 ) &&
494495 git -C too-many-refs fetch -q --tags &&
You can’t perform that action at this time.
0 commit comments