Skip to content

Commit b54d66e

Browse files
committed
v2.4.20
1 parent 5d81b2b commit b54d66e

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
v2.4.20
2+
----------------------------------------------------------------------------------------------------
3+
* Enabling ED25519 support and certificate transparancy information when
4+
building with libressl v3.5.0 and newer. Thanks to Giovanni Bechis.
5+
16
v2.4.19
27
----------------------------------------------------------------------------------------------------
38
* restored curl_easy cleanup behaviour from v2.4.14 and refactored

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#
1515

1616
AC_PREREQ([2.69])
17-
AC_INIT([mod_md], [2.4.19], [[email protected]])
17+
AC_INIT([mod_md], [2.4.20], [[email protected]])
1818

1919
LT_PREREQ([2.2.6])
2020
LT_INIT()

src/md_version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@
2727
* @macro
2828
* Version number of the md module as c string
2929
*/
30-
#define MOD_MD_VERSION "2.4.19-git"
30+
#define MOD_MD_VERSION "2.4.20-git"
3131

3232
/**
3333
* @macro
3434
* Numerical representation of the version number of the md module
3535
* release. This is a 24 bit number with 8 bits for major number, 8 bits
3636
* for minor and 8 bits for patch. Version 1.2.3 becomes 0x010203.
3737
*/
38-
#define MOD_MD_VERSION_NUM 0x020413
38+
#define MOD_MD_VERSION_NUM 0x020414
3939

4040
#define MD_ACME_DEF_URL "https://acme-v02.api.letsencrypt.org/directory"
4141
#define MD_TAILSCALE_DEF_URL "file://localhost/var/run/tailscale/tailscaled.sock"

test/modules/md/conftest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ def _session_scope(env):
5151
'AH10170', # mod_md, wrong config, tested
5252
'AH10171', # mod_md, wrong config, tested
5353
'AH10373', # SSL errors on uncompleted handshakes
54+
'AH10398', # test on global store lock
5455
])
5556

5657
env.httpd_error_log.add_ignored_patterns([
@@ -61,7 +62,7 @@ def _session_scope(env):
6162
re.compile(r'.*problem\[urn:org:apache:httpd:log:AH\d+:].*'),
6263
re.compile(r'.*Unsuccessful in contacting ACME server at :*'),
6364
re.compile(r'.*test-md-720-002-\S+.org: dns-01 setup command failed .*'),
64-
re.compile(r'.*AH: unable to obtain global registry lock, .*'),
65+
re.compile(r'.*AH\d*: unable to obtain global registry lock, .*'),
6566
])
6667
if env.lacks_ocsp():
6768
env.httpd_error_log.add_ignored_patterns([

0 commit comments

Comments
 (0)