SEARCH
NEW RPMS
DIRECTORIES
ABOUT
FAQ
VARIOUS
BLOG

 
 
Changelog for apache2-manual-2.4.48-4.1.noarch.rpm :

* Wed Jun 02 2021 pgajdosAATTsuse.com- version update to 2.4.48 Changes with Apache 2.4.48
* ) mod_proxy_wstunnel: Add ProxyWebsocketFallbackToProxyHttp to opt-out the fallback to mod_proxy_http for WebSocket upgrade and tunneling. [Yann Ylavic]
* ) mod_proxy: Fix flushing of THRESHOLD_MIN_WRITE data while tunneling. BZ 65294. [Yann Ylavic]
* ) core: Fix a regression that stripped the ETag header from 304 responses. PR 61820 [Ruediger Pluem, Roy T. Fielding]
* ) core: Adding SSL related inquiry functions to the server API. These function are always available, even when no module providing SSL is loaded. They provide their own \"shadowing\" implementation for the optional functions of similar name that mod_ssl and impersonators of mod_ssl provide. This enables loading of several SSL providing modules when all but one of them registers itself into the new hooks. Two old-style SSL modules will not work, as they replace the others optional functions with their own. Modules using the old-style optional functions will continue to work as core supplies its own versions of those. The following has been added so far: - ap_ssl_conn_is_ssl() to query if a connection is using SSL. - ap_ssl_var_lookup() to query SSL related variables for a server/connection/request. - Hooks for \'ssl_conn_is_ssl\' and \'ssl_var_lookup\' where modules providing SSL can install their own value supplying functions. - ap_ssl_add_cert_files() to enable other modules like mod_md to provide certificate and keys for an SSL module like mod_ssl. - ap_ssl_add_fallback_cert_files() to enable other modules like mod_md to provide a fallback certificate in case no \'proper\' certificate is available for an SSL module like mod_ssl. - ap_ssl_answer_challenge() to enable other modules like mod_md to provide a certificate as used in the RFC 8555 \'tls-alpn-01\' challenge for the ACME protocol for an SSL module like mod_ssl. The function and its hook provide PEM encoded data instead of file names. - Hooks for \'ssl_add_cert_files\', \'ssl_add_fallback_cert_files\' and \'ssl_answer_challenge\' where modules like mod_md can provide providers to the above mentioned functions. - These functions reside in the new \'http_ssl.h\' header file. [Stefan Eissing]
* ) core/mod_ssl/mod_md: adding OCSP response provisioning as core feature. This allows modules to access and provide OCSP response data without being tied of each other. The data is exchanged in standard, portable formats (PEM encoded certificates and DER encoded responses), so that the actual SSL/crypto implementations used by the modules are independant of each other. Registration and retrieval happen in the context of a server (server_rec) which modules may use to decide if they are configured for this or not. The area of changes: 1. core: defines 2 functions in include/http_ssl.h, so that modules may register a certificate, together with its issuer certificate for OCSP response provisioning and ask for current response data (DER bytes) later. Also, 2 hooks are defined that allow modules to implement this OCSP provisioning. 2. mod_ssl uses the new functions, in addition to what it did already, to register its certificates this way. If no one is interested in providing OCSP, it falls back to its own (if configured) stapling implementation. 3. mod_md registers itself at the core hooks for OCSP provisioning. Depending on configuration, it will accept registrations of its own certificates only, all certificates or none. [Stefan Eissing]
* ) mod_md: v2.4.0 with improvements and bugfixes - MDPrivateKeys allows the specification of several types. Beside \"RSA\" plus optional key lengths elliptic curves can be configured. This means you can have multiple certificates for a Managed Domain with different key types. With ```MDPrivateKeys secp384r1 rsa2048``` you get one ECDSA and one RSA certificate and all modern client will use the shorter ECDSA, while older client will get the RSA certificate. Many thanks to AATTtlhackque who pushed and helped on this. - Support added for MDomains consisting of a wildcard. Configuring ```MDomain
*.host.net``` will match all virtual hosts matching that pattern and obtain one certificate for it (assuming you have \'dns-01\' challenge support configured). Addresses #239. - Removed support for ACMEv1 servers. The only known installation used to be Let\'s Encrypt which has disabled that version more than a year ago for new accounts. - Andreas Ulm () implemented the ```renewing``` call to ```MDMessageCmd``` that can deny a certificate renewal attempt. This is useful in clustered installations, as discussed in #233). - New event ```challenge-setup::```, triggered when the challenge data for a domain has been created. This is invoked before the ACME server is told to check for it. The type is one of the ACME challenge types. This is invoked for every DNS name in a MDomain. - The max delay for retries has been raised to daily (this is like all retries jittered somewhat to avoid repeats at fixed time of day). - Certain error codes reported by the ACME server that indicate a problem with the configured data now immediately switch to daily retries. For example: if the ACME server rejects a contact email or a domain name, frequent retries will most likely not solve the problem. But daily retries still make sense as there might be an error at the server and un-supervised certificate renewal is the goal. Refs #222. - Test case and work around for domain names > 64 octets. Fixes #227. When the first DNS name of an MD is longer than 63 octets, the certificate request will not contain a CN field, but leave it up to the CA to choose one. Currently, Lets Encrypt looks for a shorter name in the SAN list given and fails the request if none is found. But it is really up to the CA (and what browsers/libs accept here) and may change over the years. That is why the decision is best made at the CA. - Retry delays now have a random +/-[0-50]% modification applied to let retries from several servers spread out more, should they have been restarted at the same time of day. - Fixed several places where the \'badNonce\' return code from an ACME server was not handled correctly. The test server \'pebble\' simulates this behaviour by default and helps nicely in verifying this behaviour. Thanks, pebble! - Set the default `MDActivationDelay` to 0. This was confusing to users that new certificates were deemed not usably before a day of delay. When clocks are correct, using a new certificate right away should not pose a problem. - When handling ACME authorization resources, the module no longer requires the server to return a \"Location\" header, as was necessary in ACMEv1. Fixes #216. - Fixed a theoretical uninitialized read when testing for JSON error responses from the ACME CA. Reported at . - ACME problem reports from CAs that include parameters in the Content-Type header are handled correctly. (Previously, the problem text would not be reported and retries could exceed CA limits.) - Account Update transactions to V2 CAs now use the correct POST-AS-GET method. Previously, an empty JSON object was sent - which apparently LE accepted, but others reject. [Stefan Eissing, AATTtlhackque, Andreas Ulm] Changes with Apache 2.4.47
* ) mod_dav_fs: Improve logging output when failing to open files for writing. PR 64413. [Bingyu Shen ]
* ) mod_http2: Fixed a race condition that could lead to streams being aborted (RST to the client), although a response had been produced. [Stefan Eissing]
* ) mod_lua: Add support to Lua 5.4 [Joe Orton, Giovanni Bechis, Ruediger Pluem]
* ) MPM event/worker: Fix possible crash in child process on early signal delivery. PR 64533. [Ruediger Pluem]
* ) mod_http2: sync with github standalone version 1.15.17 - Log requests and sent the configured error response in case of early detected errors like too many or too long headers. [Ruediger Pluem] - new option \'H2OutputBuffering on/off\' which controls the buffering of stream output. The default is on, which is the behaviour of older mod-h2 versions. When off, all bytes are made available immediately to the main connection for sending them out to the client. This fixes interop issues with certain flavours of gRPC, see also . [Stefan Eissing]
* ) mod_unique_id: Fix potential duplicated ID generation under heavy load. PR 65159 [Jonas Müntener , Christophe Jaillet]
* ) \"[mod_dav_fs etag handling] should really honor the FileETag setting\". - It now does. - Add \"Digest\" to FileETag directive, allowing a strong ETag to be generated using a file digest. - Add ap_make_etag_ex() and ap_set_etag_fd() to allow full control over ETag generation. - Add concept of \"binary notes\" to request_rec, allowing packed bit flags to be added to a request. - First binary note - AP_REQUEST_STRONG_ETAG - allows modules to force the ETag to a strong ETag to comply with RFC requirements, such as those mandated by various WebDAV extensions. [Graham Leggett]
* ) mod_proxy_http: Fix a possibly crash when the origin connection gets interrupted before completion. PR 64234. [Barnim Dzwillo , Ruediger Pluem]
* ) mod_ssl: Do not keep connections to OCSP responders alive when doing OCSP requests. PR 64135. [Ruediger Pluem]
* ) mod_ssl: Improve the coalescing filter to buffer into larger TLS records, and avoid revealing the HTTP header size via TLS record boundaries (for common response generators). [Joe Orton, Ruediger Pluem]
* ) mod_proxy_hcheck: Don\'t pile up health checks if the previous one did not finish before hcinterval. PR 63010. [Yann Ylavic]
* ) mod_session: Improve session parsing. [Yann Yalvic]
* ) mod_authnz_ldap: Prevent authentications with empty passwords for the initial bind to fail with status 500. [Ruediger Pluem]
* ) mod_auth_digest: Fast validation of the nonce\'s base64 to fail early if the format can\'t match anyway. [Yann Ylavic]
* ) mod_proxy_fcgi: Honor \"SetEnv proxy-sendcl\" to forward a chunked Transfer-Encoding from the client, spooling the request body when needed to provide a Content-Length to the backend. PR 57087. [Yann Ylavic]
* ) mod_proxy: Put mod_proxy_{connect,wstunnel} tunneling code in common in proxy_util. [Yann Ylavic]
* ) mod_proxy: Improve tunneling loop to support half closed connections and pending data draining (for protocols like rsync). PR 61616. [Yann Ylavic]
* ) mod_proxy_http: handle Upgrade request, 101 (Switching Protocol) response and switched protocol forwarding. [Yann Ylavic]
* ) mod_proxy_wstunnel: Leave Upgrade requests handling to mod_proxy_http, allowing for (non-)Upgrade negotiation with the origin server. [Yann Ylavic]
* ) mod_proxy: Allow ProxyErrorOverride to be restricted to specific status codes. PR63628. [Martin Drößler ]
* ) core: Add ReadBufferSize, FlushMaxThreshold and FlushMaxPipelined directives. [Yann Ylavic]
* ) core: Ensure that aborted connections are logged as such. PR 62823 [Arnaud Grandville ]
* ) http: Allow unknown response status\' lines returned in the form of \"HTTP/x.x xxx Status xxx\". [Yann Ylavic]
* ) mod_proxy_http: Fix 100-continue deadlock for spooled request bodies, leading to Request Timeout (408). PR 63855. [Yann Ylavic]
* ) core: Remove headers on 304 Not Modified as specified by RFC7234, as opposed to passing an explicit subset of headers. PR 61820. [Giovanni Bechis]
* ) mpm_event: Don\'t reset connections after lingering close, restoring prior to 2.4.28 behaviour. [Yann Ylavic]
* ) mpm_event: Kill connections in keepalive state only when there is no more workers available, not when the maximum number of connections is reached, restoring prior to 2.4.30 behaviour. [Yann Ylavic]
* ) mod_unique_id: Use base64url encoding for UNIQUE_ID variable, avoiding the use of \'AATT\'. PR 57044. [Michael Kaufmann ]
* ) mod_rewrite: Extend the [CO] (cookie) flag of RewriteRule to accept a SameSite attribute. [Eric Covener]
* ) mod_proxy: Add proxy check_trans hook. This allows proxy modules to decline request handling at early stage.
* ) mod_proxy_wstunnel: Decline requests without an Upgrade header so ws/wss can be enabled overlapping with later http/https.
* ) mod_http2: Log requests and sent the configured error response in case of early detected errors like too many or too long headers. [Ruediger Pluem, Stefan Eissing]
* ) mod_md: Lowered the required minimal libcurl version from 7.50 to 7.29 as proposed by . [Stefan Eissing]
* ) mod_ssl: Fix request body buffering with PHA in TLSv1.3. [Joe Orton]
* ) mod_proxy_uwsgi: Fix a crash when sending environment variables with no value. PR 64598 [Ruediger Pluem]
* ) mod_proxy: Recognize parameters from ProxyPassMatch workers with dollar substitution, such that they apply to the backend connection. Note that connection reuse is disabled by default to avoid compatibility issues. [Takashi Sato, Jan Kaluza, Eric Covener, Yann Ylavic, Jean-Frederic Clere]- modified sources % apache2.keyring- deleted patches - apache2-mod_proxy_uwsgi-fix-crash.patch (upstreamed) - lua54.patch (upstreamed)
* Wed Jan 27 2021 Callum Farmer - Add lua54.patch to fix building with lua54
* Fri Jan 22 2021 Michael Ströder - added Provides: http_daemon to fix bsc#1180132
* Fri Jan 22 2021 pgajdosAATTsuse.com- remove suexec2 from premissions as well- modified sources % permissions.apache2
* Wed Jan 13 2021 Arjen de Korte - suexec2 was renamed to suexec in 2015 and the symlink to suexec no longer exists
* Tue Jan 12 2021 Christian Boltz - re-add rcapache2 symlink (was lost about 6 weeks ago)
* Tue Jan 12 2021 pgajdosAATTsuse.com- gensslcert sets CA:TRUE in basic constrains of CA cert [bsc#1180530]- modified sources % apache2-gensslcert
* Fri Jan 08 2021 pgajdosAATTsuse.com- mod_php8 provides php_module- modified sources % apache2-script-helpers
* Thu Dec 17 2020 pgajdosAATTsuse.com- obsolete apache2-example-page and obsolete/provide apache2-doc [bsc#180075]
* Mon Dec 14 2020 Arjen de Korte - only include BuildRequires: apache2-{prefork,worker,event} used in test target
* Fri Dec 11 2020 pgajdosAATTsuse.com- added https://httpd.apache.org/server-status like server status (configured by APACHE_EXTENDED_STATUS=\"lua\")- modified sources % apache2-mod_status.conf % apache2-start_apache2 % sysconfig.apache2
* Thu Dec 10 2020 pgajdosAATTsuse.com- actually install suse provided READMEs- install upstream configuration example- added sources + apache2-README-configuration.txt
* Wed Dec 09 2020 pgajdosAATTsuse.com- apxs -q PREFIX now returns /srv/www again
* Wed Dec 09 2020 Dominique Leuenberger - Require /usr/bin/which instead of which: allow usage of busybox variant for containers.
* Mon Dec 07 2020 pgajdosAATTsuse.com- apache2 main package recommends apache2-utils
* Thu Dec 03 2020 pgajdosAATTsuse.com- break some long lines in the spec as requested by review team
* Tue Dec 01 2020 pgajdosAATTsuse.com- maybe make spec acceptable for factory bot- modified sources % _multibuild
* Tue Dec 01 2020 pgajdosAATTsuse.com- buildrequire netcfg for tests
* Sun Nov 29 2020 Arjen de Korte - remove Requires(post): firewalld hard dependency (this is already handled by the %firewalld_reload macro)
* Thu Nov 26 2020 pgajdosAATTsuse.com- package reworked trough [bsc#1178478]- modified patches % apache2-mod_proxy_uwsgi-fix-crash.patch (refreshed)- modified sources % apache2-loadmodule.conf % apache2-manual.conf % apache2-script-helpers % apache2AATT.service % sysconfig.apache2- deleted patches - deprecated-scripts-arch.patch (not needed) - httpd-2.0.54-envvars.dif (not needed) - httpd-2.1.3alpha-layout.dif (renamed to apache2-system-dirs-layout.patch) - httpd-2.2.0-apxs-a2enmod.dif (not needed) - httpd-2.4.9-bnc690734.patch (renamed to apache2-LimitRequestFieldSize-limits-headers.patch) - httpd-2.4.x-fate317766-config-control-two-protocol-options.diff (renamed to apache2-HttpContentLengthHeadZero-HttpExpectStrict.patch) - httpd-2.x.x-logresolve.patch (renamed to apache2-logresolve-tmp-security.patch) - httpd-apachectl.patch (renamed to apache2-apachectl.patch) - httpd-implicit-pointer-decl.patch (not needed) - httpd-visibility.patch (not needed)- deleted sources - SUSE-NOTICE (outdated) - a2enflag (renamed to apache2-a2enflag) - a2enmod (renamed to apache2-a2enmod) - apache-22-24-upgrade (outdated) - apache2-README (outdated) - apache2-README.QUICKSTART (outedated) - apache2-find-directives (renamed to apache2-find_directives) - apache2-init.logrotate (not needed) - apache2.firewalld (renamed to firewalld.apache2) - apache2.logrotate (renamed to logrotate.apache2) - apache2.ssl.firewalld (renamed to firewalld-ssl.apache2) - apache2.ssl.susefirewall (renamed to susefirewall.apache2) - apache2.susefirewall (renamed to susefirewall-ssl.apache2) - favicon.ico (not needed) - rc.apache2 (not needed) - robots.txt (not needed) - sysconf_addword (not needed, in aaa_base)- added patches fix PATCH: https://marc.info/?l=apache-httpd-users&m=147448312531134&w=2 + apache-test-application-xml-type.patch fix these variables from the test + apache-test-turn-off-variables-in-ssl-var-lookup.patch fix [fate317766] backport of an upstream commit + apache2-HttpContentLengthHeadZero-HttpExpectStrict.patch fix [bnc#690734] TODO, to be upstreamed + apache2-LimitRequestFieldSize-limits-headers.patch fix apachectl is frontend for start_apache2, suse specific + apache2-apachectl.patch fix [bnc#210904] perhaps to be upstreamed + apache2-logresolve-tmp-security.patch fix layout of system dirs configuration, may be upstreamed + apache2-system-dirs-layout.patch- added sources + _multibuild + apache2-a2enflag + apache2-a2enmod + apache2-find_directives + apache2-gensslcert + apache2-mod_example.c + apache2-start_apache2 + firewalld-ssl.apache2 + firewalld.apache2 + logrotate.apache2 + susefirewall-ssl.apache2 + susefirewall.apache2
* Wed Oct 14 2020 Franck Bui - /var/run is depracted, /run should be used instead
* Wed Oct 14 2020 Franck Bui - systemd-ask-password is located in /usr/bin
* Tue Sep 22 2020 Jacek Tomasiak - gensslcert: fix SAN in final cert generation
* Fri Sep 11 2020 Franck Bui - Make use of %service_del_postun_without_restart And stop using DISABLE_RESTART_ON_UPDATE as this interface is obsolete.
* Mon Aug 31 2020 Jacek Tomasiak - gensslcert: add -a argument to override default SAN value
* Mon Aug 31 2020 Antonio Larrosa - Provide mod_ssl to keep compatibility with other distributions. Now obsoletes mod_ssl < %{version} instead of mod_ssl < 2.8.16.
* Thu Aug 27 2020 Dominique Leuenberger - Install firewalld service files to %{_prefix}/lib/firewalld, NOT %{_libexecdir}/firewalld (boo#1174075).
* Fri Aug 07 2020 pgajdosAATTsuse.com- version update to 2.4.46 Changes with Apache 2.4.46
* ) mod_proxy_fcgi: Fix build warnings for Windows platform [Eric Covener, Christophe Jaillet] Changes with Apache 2.4.45
* ) mod_http2: remove support for abandoned http-wg draft . [Stefan Eissing] Changes with Apache 2.4.44
* ) mod_proxy_uwsgi: Error out on HTTP header larger than 16K (hard protocol limit). [Yann Ylavic]
* ) mod_http2: Fixes : \"LimitRequestFields 0\" now disables the limit, as documented. Fixes : Do not count repeated headers with same name against the field count limit. The are merged internally, as if sent in a single HTTP/1 line. [Stefan Eissing]
* ) mod_http2: Avoid segfaults in case of handling certain responses for already aborted connections. [Stefan Eissing, Ruediger Pluem]
* ) mod_http2: The module now handles master/secondary connections and has marked methods according to use. [Stefan Eissing]
* ) core: Drop an invalid Last-Modified header value coming from a FCGI/CGI script instead of replacing it with Unix epoch. [Yann Ylavic, Luca Toscano]
* ) Add support for strict content-length parsing through addition of ap_parse_strict_length() [Yann Ylavic]
* ) mod_proxy_fcgi: ProxyFCGISetEnvIf unsets variables when expression evaluates to false. PR64365. [Michael König ]
* ) mod_proxy_http: flush spooled request body in one go to avoid leaking (or long lived) temporary file. PR 64452. [Yann Ylavic]
* ) mod_ssl: Fix a race condition and possible crash when using a proxy client certificate (SSLProxyMachineCertificateFile). [Armin Abfalterer ]
* ) mod_ssl: Fix memory leak in stapling code. PR63687. [Stefan Eissing]
* ) mod_http2: Fixed regression that no longer set H2_STREAM_ID and H2_STREAM_TAG. PR64330 [Stefan Eissing]
* ) mod_http2: Fixed regression that caused connections to close when mod_reqtimeout was configured with a handshake timeout. Fixes gitub issue #196. [Stefan Eissing]
* ) mod_proxy_http2: the \"ping\" proxy parameter (see ) is now used when checking the liveliness of a new or reused h2 connection to the backend. With short durations, this makes load-balancing more responsive. The module will hold back requests until ping conditions are met, using features of the HTTP/2 protocol alone. [Ruediger Pluem, Stefan Eissing]
* ) core: httpd is no longer linked against -lsystemd if mod_systemd is enabled (and built as a DSO). [Rainer Jung]
* ) mod_proxy_http2: respect ProxyTimeout settings on backend connections while waiting on incoming data. [Ruediger Pluem, Stefan Eissing]- modified patches % apache2-mod_proxy_uwsgi-fix-crash.patch (refreshed)- modified sources % apache2.keyring
* Wed Jul 15 2020 pgajdosAATTsuse.com- fix crash in mod_proxy_uwsgi for empty values of environment variables [bsc#1174052]- added patches fix https://svn.apache.org/viewvc?view=revision + apache2-mod_proxy_uwsgi-fix-crash.patch
* Fri Apr 03 2020 pgajdosAATTsuse.com- declare ap_sock_disable_nagle to fix loading mod_proxy_http2 (thanks to mliskaAATTsuse.com)- modified patches % httpd-visibility.patch (refreshed)
* Thu Apr 02 2020 pgajdosAATTsuse.com- version update to 2.4.43
* ) mod_ssl: Fix memory leak of OCSP stapling response. [Yann Ylavic]
* ) mod_proxy_http: Fix the forwarding of requests with content body when a balancer member is unavailable; the retry on the next member was issued with an empty body (regression introduced in 2.4.41). PR63891. [Yann Ylavic]
* ) mod_http2: Fixes issue where mod_unique_id would generate non-unique request identifier under load, see . [Michael Kaufmann, Stefan Eissing]
* ) mod_proxy_hcheck: Allow healthcheck expressions to use %{Content-Type}. PR64140. [Renier Velazco ]
* ) mod_authz_groupfile: Drop AH01666 from loglevel \"error\" to \"info\". PR64172.
* ) mod_usertrack: Add CookieSameSite, CookieHTTPOnly, and CookieSecure to allow customization of the usertrack cookie. PR64077. [Prashant Keshvani , Eric Covener]
* ) mod_proxy_ajp: Add \"secret\" parameter to proxy workers to implement legacy AJP13 authentication. PR 53098. [Dmitry A. Bakshaev ]
* ) mpm_event: avoid possible KeepAliveTimeout off by -100 ms. [Eric Covener, Yann Ylavic]
* ) Add a config layout for OpenWRT. [Graham Leggett]
* ) Add support for cross compiling to apxs. If apxs is being executed from somewhere other than its target location, add that prefix to includes and library directories. Without this, apxs would fail to find config_vars.mk and exit. [Graham Leggett]
* ) mod_ssl: Disable client verification on ACME ALPN challenges. Fixes github issue mod_md#172 (https://github.com/icing/mod_md/issues/172). [Michael Kaufmann , Stefan Eissing]
* ) mod_ssl: use OPENSSL_init_ssl() to initialise OpenSSL on versions 1.1+. [Graham Leggett]
* ) mod_ssl: Support use of private keys and certificates from an OpenSSL ENGINE via PKCS#11 URIs in SSLCertificateFile/KeyFile. [Anderson Sasaki , Joe Orton]
* ) mod_md: - Prefer MDContactEmail directive to ServerAdmin for registration. New directive thanks to Timothe Litt (AATTtlhackque). - protocol check for pre-configured \"tls-alpn-01\" challenge has been improved. It will now check all matching virtual hosts for protocol support. Thanks to AATTmkauf. - Corrected a check when OCSP stapling was configured for hosts where the responsible MDomain is not clear, by Michal Karm Babacek (AATTKarm). - Softening the restrictions where mod_md configuration directives may appear. This should allow for use in and sections. If all possible variations lead to the configuration you wanted in the first place, is another matter. [Michael Kaufmann , Timothe Litt (AATTtlhackque), Michal Karm Babacek (AATTKarm), Stefan Eissing (AATTicing)]
* ) test: Added continuous testing with Travis CI. This tests various scenarios on Ubuntu with the full test suite. Architectures tested: amd64, s390x, ppc64le, arm64 The tests pass successfully. [Luca Toscano, Joe Orton, Mike Rumph, and others]
* ) core: Be stricter in parsing of Transfer-Encoding headers. [ZeddYu , Eric Covener]
* ) mod_ssl: negotiate the TLS protocol version per name based vhost configuration, when linked with OpenSSL-1.1.1 or later. The base vhost\'s SSLProtocol (from the first vhost declared on the IP:port) is now only relevant if no SSLProtocol is declared for the vhost or globally, otherwise the vhost or global value apply. [Yann Ylavic]
* ) mod_cgi, mod_cgid: Fix a memory leak in some error cases with large script output. PR 64096. [Joe Orton]
* ) config: Speed up graceful restarts by using pre-hashed command table. PR 64066. [Giovanni Bechis , Jim Jagielski]
* ) mod_systemd: New module providing integration with systemd. [Jan Kaluza]
* ) mod_lua: Add r:headers_in_table, r:headers_out_table, r:err_headers_out_table, r:notes_table, r:subprocess_env_table as read-only native table alternatives that can be iterated over. [Eric Covener]
* ) mod_http2: Fixed rare cases where a h2 worker could deadlock the main connection. [Yann Ylavic, Stefan Eissing]
* ) mod_lua: Accept nil assignments to the exposed tables (r.subprocess_env, r.headers_out, etc) to remove the key from the table. PR63971. [Eric Covener]
* ) mod_http2: Fixed interaction with mod_reqtimeout. A loaded mod_http2 was disabling the ssl handshake timeouts. Also, fixed a mistake of the last version that made `H2Direct` always `on`, regardless of configuration. Found and reported by and . [Stefan Eissing]
* ) mod_http2: Multiple field length violations in the same request no longer cause several log entries to be written. [AATTmkauf]
* ) mod_ssl: OCSP does not apply to proxy mode. PR 63679. [Lubos Uhliarik , Yann Ylavic]
* ) mod_proxy_html, mod_xml2enc: Fix build issues with macOS due to r1864469 [Jim Jagielski]
* ) mod_authn_socache: Increase the maximum length of strings that can be cached by the module from 100 to 256. PR 62149 []
* ) mod_proxy: Fix crash by resolving pool concurrency problems. PR 63503 [Ruediger Pluem, Eric Covener]
* ) core: On Windows, fix a start-up crash if is used with a path that is not valid (For example, testing for a file on a flash drive that is not mounted) [Christophe Jaillet]
* ) mod_deflate, mod_brotli: honor \"Accept-Encoding: foo;q=0\" as per RFC 7231; which means \'foo\' is \"not acceptable\". PR 58158 [Chistophe Jaillet]
* ) mod_md v2.2.3: - Configuring MDCAChallenges replaces any previous existing challenge configuration. It had been additive before which was not the intended behaviour. [AATTmkauf] - Fixing order of ACME challenges used when nothing else configured. Code now behaves as documented for `MDCAChallenges`. Fixes #156. Thanks again to AATTmkauf for finding this. - Fixing a potential, low memory null pointer dereference [thanks to AATTuhliarik]. - Fixing an incompatibility with a change in libcurl v7.66.0 that added unwanted \"transfer-encoding\" to POST requests. This failed in directy communication with Let\'s Encrypt boulder server. Thanks to AATTmkauf for finding and fixing. [Stefan Eissing]
* ) mod_md: Adding the several new features. The module offers an implementation of OCSP Stapling that can replace fully or for a limited set of domains the existing one from mod_ssl. OCSP handling is part of mod_md\'s monitoring and message notifications. If can be used for sites that do not have ACME certificates. The url for a CTLog Monitor can be configured. It is used in the server-status to link to the external status page of a certicate. The MDMessageCmd is called with argument \"installed\" when a new certificate has been activated on server restart/reload. This allows for processing of the new certificate, for example to applications that require it in different locations or formats. [Stefan Eissing]
* ) mod_proxy_balancer: Fix case-sensitive referer check related to CSRF/XSS protection. PR 63688. [Armin Abfalterer ]- deleted patches - apache2-load-private-keys-from-pkcs11.patch (upstreamed) - httpd-2.4.3-mod_systemd.patch (upstreamed)
* Wed Feb 26 2020 pgajdosAATTsuse.com- use r1874196 [SLE-7653]- modified patches % apache2-load-private-keys-from-pkcs11.patch (upstream 2.4.x port)- deleted patches - apache2-load-certificates-from-pkcs11.patch (merged to above)
* Tue Feb 18 2020 pgajdosAATTsuse.com- require just libbrotli-devel
* Thu Feb 13 2020 pgajdosAATTsuse.com- build mod_proxy_http2 extension
* Wed Feb 12 2020 pgajdosAATTsuse.com- fix build for older distributions
* Fri Jan 31 2020 Cristian Rodríguez - define DEFAULT_LISTENBACKLOG=APR_INT32_MAX. We want apache to honour net.core.somaxconn sysctl as the mandatory limit. the old value of 511 was never used as until v5.4-rc6 it was clamped to 128, in current kernels the default limit is 4096. Cannot use the apr_socket_listen(.., -1) idiom because the function expects a positive integer argument.
* Mon Jan 20 2020 pgajdosAATTsuse.com- apache2-devel now provides httpd-devel [bsc#1160100]
* Wed Dec 18 2019 pgajdosAATTsuse.com- add openssl call to DEFAULT_SUSE comment [bsc#1159480]- modified sources % apache2-ssl-global.conf
* Fri Nov 08 2019 pgajdosAATTsuse.com- use %license [bsc#1156171]
* Tue Oct 22 2019 pgajdosAATTsuse.com- load private keys and certificates from pkcs11 token [SLE-7653]- added patches load certificates from openssl engine + apache2-load-certificates-from-pkcs11.patch load private keys from openssl engine + apache2-load-private-keys-from-pkcs11.patch
* Sat Oct 05 2019 Yunhe Guo - Add custom log files to logrotate according to apache2-vhost.template
* Fri Aug 23 2019 Jan Engelhardt - Remove redundant metadata from summary.
* Thu Aug 15 2019 Michael Ströder - version update to 2.4.41 with security fixes:
* low: Limited cross-site scripting in mod_proxy error page (CVE-2019-10092)
* low: mod_rewrite potential open redirect (CVE-2019-10098)
* moderate: mod_http2, read-after-free in h2 connection shutdown (CVE-2019-10082)
* moderate: mod_http2, memory corruption on early pushes (CVE-2019-10081)
* moderate: mod_http2, DoS attack by exhausting h2 workers. (CVE-2019-9517)
* moderate: mod_remoteip: Stack buffer overflow and NULL pointer dereference (CVE-2019-10097)
* Wed Jun 26 2019 pgajdosAATTsuse.com- fix typo- modified sources % apache2-README-instances.txt
* Mon May 13 2019 pgajdosAATTsuse.com- revive apache-22-24-upgrade [bsc#1134294] (internal)- added sources + apache-22-24-upgrade
* Tue Apr 02 2019 pgajdosAATTsuse.com- version update to 2.4.39
* mod_proxy/ssl: Cleanup per-request SSL configuration anytime a backend connection is recycled/reused to avoid a possible crash with some SSLProxy configurations in or context. PR 63256. [Yann Ylavic]
* mod_ssl: Correctly restore SSL verify state after TLSv1.3 PHA failure. [Michael Kaufmann ]
* mod_log_config: Support %{c}h for conn-hostname, %h for useragent_host PR 55348
* mod_socache_redis: Support for Redis as socache storage provider.
* core: new configuration option \'MergeSlashes on|off\' that controls handling of multiple, consecutive slash (\'/\') characters in the path component of the request URL. [Eric Covener]
* mod_http2: when SSL renegotiation is inhibited and a 403 ErrorDocument is in play, the proper HTTP/2 stream reset did not trigger with H2_ERR_HTTP_1_1_REQUIRED. Fixed. [Michael Kaufmann]
* mod_http2: new configuration directive: `H2Padding numbits` to control padding of HTTP/2 payload frames. \'numbits\' is a number from 0-8, controlling the range of padding bytes added to a frame. The actual number added is chosen randomly per frame. This applies to HEADERS, DATA and PUSH_PROMISE frames equally. The default continues to be 0, e.g. no padding. [Stefan Eissing]
* mod_http2: ripping out all the h2_req_engine internal features now that mod_proxy_http2 has no more need for it. Optional functions are still declared but no longer implemented. While previous mod_proxy_http2 will work with this, it is recommeneded to run the matching versions of both modules. [Stefan Eissing]
* mod_proxy_http2: changed mod_proxy_http2 implementation and fixed several bugs which resolve PR63170. The proxy module does now a single h2 request on the (reused) connection and returns. [Stefan Eissing]
* mod_http2/mod_proxy_http2: proxy_http2 checks correct master connection aborted status to trigger immediate shutdown of backend connections. This is now always signalled by mod_http2 when the the session is being released. proxy_http2 now only sends a PING frame to the backend when there is not already one in flight. [Stefan Eissing]
* mod_proxy_http2: fixed an issue where a proxy_http2 handler entered an infinite loop when encountering certain errors on the backend connection. See . [Stefan Eissing]
* mod_http2: Configuration directives H2Push and H2Upgrade can now be specified per Location/Directory, e.g. disabling PUSH for a specific set of resources. [Stefan Eissing]
* mod_http2: HEAD requests to some module such as mod_cgid caused the stream to terminate improperly and cause a HTTP/2 PROTOCOL_ERROR. Fixes . [Michael Kaufmann]
* http: Fix possible empty response with mod_ratelimit for HEAD requests. PR 63192. [Yann Ylavic]
* mod_cache_socache: Avoid reallocations and be safe with outgoing data lifetime. [Yann Ylavic]
* MPMs unix: bind the bucket number of each child to its slot number, for a more efficient per bucket maintenance. [Yann Ylavic]
* mod_auth_digest: Fix a race condition. Authentication with valid credentials could be refused in case of concurrent accesses from different users. PR 63124. [Simon Kappel ]
* mod_http2: enable re-use of slave connections again. Fixed slave connection keepalives counter. [Stefan Eissing]
* mod_reqtimeout: Allow to configure (TLS-)handshake timeouts. PR 61310. [Yann Ylavic]
* mod_proxy_wstunnel: Fix websocket proxy over UDS. PR 62932
* mod_ssl: Don\'t unset FIPS mode on restart unless it\'s forced by configuration (SSLFIPS on) and not active by default in OpenSSL. PR 63136. [Yann Ylavic]- deleted patches - apache2-mod_http2-issue-167.patch (upstreamed)
* Mon Mar 18 2019 Jan Engelhardt - Reduce scriptlets\' hard dependency on systemd.
* Wed Feb 27 2019 pgajdosAATTsuse.com- added patches fix https://github.com/icing/mod_h2/issues/167 [bsc#1125965] + apache2-mod_http2-issue-167.patch
* Fri Feb 08 2019 Jan Engelhardt - Replace old $RPM_
* shell vars. Avoid old tar syntax.- Tag scriptlets as explicitly requiring bash.
* Fri Jan 18 2019 Manu Maier - updated to 2.4.38
* mod_ssl: Clear retry flag before aborting client-initiated renegotiation. PR 63052 [Joe Orton]
* mod_negotiation: Treat LanguagePriority as case-insensitive to match AddLanguage behavior and HTTP specification. PR 39730 [Christophe Jaillet]
* mod_md: incorrect behaviour when synchronizing ongoing ACME challenges have been fixed. [Michael Kaufmann, Stefan Eissing]
* mod_setenvif: We can have expressions that become true if a regex pattern in the expression does NOT match. In this case val is NULL and we should just set the value for the environment variable like in the pattern case. [Ruediger Pluem]
* mod_session: Always decode session attributes early. [Hank Ibell]
* core: Incorrect values for environment variables are substituted when multiple environment variables are specified in a directive. [Hank Ibell]
* mod_rewrite: Only create the global mutex used by \"RewriteMap prg:\" when this type of map is present in the configuration. PR62311. [Hank Ibell ]
* mod_dav: Fix invalid Location header when a resource is created by passing an absolute URI on the request line [Jim Jagielski]
* mod_session_cookie: avoid duplicate Set-Cookie header in the response. [Emmanuel Dreyfus , Luca Toscano]
* mod_ssl: clear
*SSL errors before loading certificates and checking afterwards. Otherwise errors are reported when other SSL using modules are in play. Fixes PR 62880. [Michael Kaufmann]
* mod_ssl: Fix the error code returned in an error path of \'ssl_io_filter_handshake()\'. This messes-up error handling performed in \'ssl_io_filter_error()\' [Yann Ylavic]
* mod_ssl: Fix $HTTPS definition for \"SSLEngine optional\" case, and fix authz provider so \"Require ssl\" works correctly in HTTP/2. PR 61519, 62654. [Joe Orton, Stefan Eissing]
* mod_proxy: If ProxyPassReverse is used for reverse mapping of relative redirects, subsequent ProxyPassReverse statements, whether they are relative or absolute, may fail. PR 60408. [Peter Haworth ]
* mod_lua: Now marked as a stable module [https://s.apache.org/Xnh1]
* Wed Jan 16 2019 Arjen de Korte - SSLProtocol use TLSv1.2 or higher
* Wed Jan 09 2019 Petr Gajdos - do not create sysconfig.d when already exists [bsc#1121086]
* Sun Jan 06 2019 Dirk Mueller - use secure http sites by default in configs- Switch to DEFAULT_SUSE Cipher suite
* Thu Oct 25 2018 Arjen de Korte - the \"event\" MPM is fully supported since 2.4- configure an OCSP stapling cache by default (still requires enabling SSLUseStapling in vhost)
* Thu Oct 18 2018 Manu Maier - updated to 2.4.37
* mod_ssl: Fix HTTP/2 failures when using OpenSSL 1.1.1. [Rainer Jung]
* mod_ssl: Fix crash during SSL renegotiation with OptRenegotiate set, when client certificates are available from the original handshake but were originally not verified and should get verified now. This is a regression in 2.4.36 (unreleased). [Ruediger Pluem]
* mod_ssl: Correctly merge configurations that have client certificates set by SSLProxyMachineCertificate{File|Path}. [Ruediger Pluem]- updated to 2.4.36
* mod_brotli, mod_deflate: Restore the separate handling of 304 Not Modified responses. Regression introduced in 2.4.35.
* mod_proxy_scgi, mod_proxy_uwsgi: improve error handling when sending the body of the response. [Jim Jagielski]
* mod_http2: adding defensive code for stream EOS handling, in case the request handler missed to signal it the normal way (eos buckets). Addresses github issues https://github.com/icing/mod_h2/issues/164, https://github.com/icing/mod_h2/issues/167 and https://github.com/icing/mod_h2/issues/170. [Stefan Eissing]
* ab: Add client certificate support. [Graham Leggett]
* ab: Disable printing temp key for OpenSSL before version 1.0.2. SSL_get_server_tmp_key is not available there. [Rainer Jung]
* mod_ssl: Fix a regression that the configuration settings for verify mode and verify depth were taken from the frontend connection in case of connections by the proxy to the backend. PR 62769. [Ruediger Pluem]
* MPMs: Initialize all runtime/asynchronous objects on a dedicated pool and before signals handling to avoid lifetime issues on restart or shutdown. PR 62658. [Yann Ylavic]
* mod_ssl: Add support for OpenSSL 1.1.1 and TLSv1.3. TLSv1.3 has behavioural changes compared to v1.2 and earlier; client and configuration changes should be expected. SSLCipherSuite is enhanced for TLSv1.3 ciphers, but applies at vhost level only. [Stefan Eissing, Yann Ylavic, Ruediger Pluem, Joe Orton]
* mod_auth_basic: Be less tolerant when parsing the credencial. Only spaces should be accepted after the authorization scheme. \\t are also tolerated. [Christophe Jaillet]
* mod_proxy_hcheck: Fix issues with interval determination. PR 62318 [Jim Jagielski]
* mod_proxy_hcheck: Fix issues with TCP health checks. PR 61499 [Dominik Stillhard ]
* mod_proxy_hcheck: take balancer\'s SSLProxy
* directives into account. [Jim Jagielski]
* mod_status, mod_echo: Fix the display of client addresses. They were truncated to 31 characters which is not enough for IPv6 addresses. This is done by deprecating the use of the \'client\' field and using the new \'client64\' field in worker_score. PR 54848 [Bernhard Schmidt , Jim Jagielski]
* Mon Oct 01 2018 Petr Gajdos - consider also patterns in APACHE_CONF_INCLUDE_DIRS as documentation says (patch Juergen Gleiss)
* Thu Sep 27 2018 Petr Gajdos - relink /usr/sbin/httpd after apache2-MPM uninstall [bsc#1107930c#1]- simplify find_mpm function from script-helpers- /usr/sbin/httpd is now created depending on preference hardcoded in find_mpm (script-helpers), not depending on alphabetical order of MPMs- simplify spec file a bit
* Mon Sep 24 2018 Michael Ströder - updated to 2.4.35:
* http: Enforce consistently no response body with both 204 and 304 statuses.
* mod_status: Cumulate CPU time of exited child processes in the \"cu\" and \"cs\" values. Add CPU time of the parent process to the \"c\" and \"s\" values.
* mod_proxy: Improve the balancer member data shown in mod_status when \"ProxyStatus\" is \"On\": add \"busy\" count and show byte counts in auto mode always in units of kilobytes.
* mod_status: Add cumulated response duration time in milliseconds.
* mod_status: Complete the data shown for async MPMs in \"auto\" mode. Added number of processes, number of stopping processes and number of busy and idle workers.
* mod_ratelimit: Don\'t interfere with \"chunked\" encoding, fixing regression introduced in 2.4.34. PR 62568.
* mod_proxy: Remove load order and link dependency between mod_lbmethod_
* modules and mod_proxy. PR 62557.
* Allow the argument to , , , , and to be quoted. This is primarily for the benefit of .
* mod_watchdog: Correct some log messages.
* mod_md: When the last domain name from an MD is moved to another one, that now empty MD gets moved to the store archive. PR 62572.
* mod_ssl: Fix merging of SSLOCSPOverrideResponder.
* mod_proxy_balancer: Restore compatibility with APR 1.4.
* Mon Jul 16 2018 pgajdosAATTsuse.com- updated to 2.4.34:
* ) Introduce zh-cn and zh-tw (simplified and traditional Chinese) error document translations. [CodeingBoy, popcorner]
* ) event: avoid possible race conditions with modules on the child pool. [Stefan Fritsch]
* ) mod_proxy: Fix a corner case where the ProxyPassReverseCookieDomain or ProxyPassReverseCookiePath directive could fail to update correctly \'domain=\' or \'path=\' in the \'Set-Cookie\' header. PR 61560. [Christophe Jaillet]
* ) mod_ratelimit: fix behavior when proxing content. PR 62362. [Luca Toscano, Yann Ylavic]
* ) core: Re-allow \'_\' (underscore) in hostnames. [Eric Covener]
* ) mod_authz_core: If several parameters are used in a AuthzProviderAlias directive, if these parameters are not enclosed in quotation mark, only the first one is handled. The other ones are silently ignored. Add a message to warn about such a spurious configuration. PR 62469 [Hank Ibell , Christophe Jaillet]
* ) mod_md: improvements and bugfixes - MDNotifyCmd now takes additional parameter that are passed on to the called command. - ACME challenges have better checks for interference with other modules - ACME challenges are only handled for domains managed by the module, allowing other ACME clients to operate for other domains in the server. - better libressl integration
* ) mod_proxy_wstunnel: Add default schema ports for \'ws\' and \'wss\'. PR 62480. [Lubos Uhliarik }
* ) logging: Some early logging-related startup messages could be lost when using syslog for the global ErrorLog. [Eric Covener]
* ) mod_cache: Handle case of an invalid Expires header value RFC compliant like the case of an Expires time in the past: allow to overwrite the non-caching decision using CacheStoreExpired and respect Cache-Control \"max-age\" and \"s-maxage\". [Rainer Jung]
* ) mod_xml2enc: Fix forwarding of error metadata/responses. PR 62180. [Micha Lenk , Yann Ylavic]
* ) mod_proxy_http: Fix response header thrown away after the previous one was considered too large and truncated. PR 62196. [Yann Ylavic]
* ) core: Add and handle AP_GETLINE_NOSPC_EOL flag for ap_getline() family of functions to consume the end of line when the buffer is exhausted. PR 62198. [Yann Ylavic]
* ) mod_proxy_http: Add new worker parameter \'responsefieldsize\' to allow maximum HTTP response header size to be increased past 8192 bytes. PR 62199. [Hank Ibell ]
* ) mod_ssl: Extend SSLOCSPEnable with mode \'leaf\' that only checks the leaf of a certificate chain. PR62112. [Ricardo Martin Camarero ]
* ) http: Fix small memory leak per request when handling persistent connections. [Ruediger Pluem, Joe Orton]
* ) mod_proxy_html: Fix variable interpolation and memory allocation failure in ProxyHTMLURLMap. [Ewald Dieterich ]
* ) mod_remoteip: Fix RemoteIP{Trusted,Internal}ProxyList loading broken by 2.4.30. PR 62220. [Chritophe Jaillet, Yann Ylavic]
* ) mod_remoteip: When overriding the useragent address from X-Forwarded-For, zero out what had been initialized as the connection-level port. PR59931. [Hank Ibell ]
* ) core: In ONE_PROCESS/debug mode, cleanup everything when exiting. [Yann Ylavic]
* ) mod_proxy_balancer: Add hot spare member type and corresponding flag (R). Hot spare members are used as drop-in replacements for unusable workers in the same load balancer set. This differs from hot standbys which are only used when all workers in a set are unusable. PR 61140. [Jim Riggs]
* ) suexec: Add --enable-suexec-capabilites support on Linux, to use setuid/setgid capability bits rather than a setuid root binary. [Joe Orton]
* ) suexec: Add support for logging to syslog as an alternative to logging to a file; use --without-suexec-logfile --with-suexec-syslog. [Joe Orton]
* ) mod_ssl: Restore 2.4.29 behaviour in SSL vhost merging/enabling which broke some rare but previously-working configs. [Joe Orton]
* ) core, log: improve sanity checks for the ErrorLog\'s syslog config, and explicitly allow only lowercase \'syslog\' settings. PR 62102 [Luca Toscano, Jim Riggs, Christophe Jaillet]
* ) mod_http2: accurate reporting of h2 data input/output per request via mod_logio. Fixes an issue where output sizes where counted n-times on reused slave connections. [Stefan Eissing] See github issue: https://github.com/icing/mod_h2/issues/158
* ) mod_http2: Fix unnecessary timeout waits in case streams are aborted. [Stefan Eissing]
* ) mod_http2: restoring the v1.10.16 keepalive timeout behaviour of mod_http2. [Stefan Eissing]
* ) mod_proxy: Do not restrict the maximum pool size for backend connections any longer by the maximum number of threads per process and use a better default if mod_http2 is loaded. [Yann Ylavic, Ruediger Pluem, Stefan Eissing, Gregg Smith]
* ) mod_slotmem_shm: Add generation number to shm filename to fix races with graceful restarts. PRs 62044 and 62308. [Jim Jagielski, Yann Ylavic]
* ) core: Preserve the original HTTP request method in the \'%]
* ) mod_remoteip: make proxy-protocol work on slave connections, e.g. in HTTP/2 requests. [Stefan Eissing] See also https://github.com/roadrunner2/mod-proxy-protocol/issues/6
* ) mod_ssl: Fix merging of proxy SSL context outside sections, regression introduced in 2.4.30. PR 62232. [Rainer Jung, Yann Ylavic]
* ) mod_md: Fix compilation with OpenSSL before version 1.0.2. [Rainer Jung]
* ) mod_dumpio: do nothing below log level TRACE7. [Yann Ylavic]
* ) mod_remoteip: Restore compatibility with APR 1.4 (apr_sockaddr_is_wildcard). [Eric Covener]
* ) core: On ECBDIC platforms, some errors related to oversized headers may be misreported or be logged as ASCII escapes. PR 62200 [Hank Ibell ]
* ) mod_ssl: Fix cmake-based build. PR 62266. [Rainer Jung]
* ) core: Add , and conditional section containers. [Eric Covener, Joe Orton]
* %check: do not load all modules, just use default loadmodule.conf; some modules require to load another ones in advance
* %install: parallel install is broken
* Tue Mar 27 2018 mikhail.kasimovAATTgmail.com- Updated description for SSLProtocol option. [bsc#1086854]
* Tue Mar 27 2018 mikhail.kasimovAATTgmail.com- Updated description (PCI DSS) for SSLProtocol option. [bsc#1086854]
* Mon Mar 26 2018 pgajdosAATTsuse.com- SSLProtocol TLSv1.2 [bsc#1086854]
* Mon Mar 19 2018 pgajdosAATTsuse.com- updated to 2.4.33:
* ) core: Fix request timeout logging and possible crash for error_log hooks. [Yann Ylavic]
* ) mod_slomem_shm: Fix failure to create balancers\'s slotmems in Windows MPM, where children processes need to attach them instead since they are owned by the parent process already. [Yann Ylavic]
* ) ab: try all destination socket addresses returned by apr_sockaddr_info_get instead of failing on first one when not available. Needed for instance if localhost resolves to both ::1 and 127.0.0.1 e.g. if both are in /etc/hosts. [Jan Kaluza]
* ) ab: Use only one connection to determine working destination socket address. [Jan Kaluza]
* ) ab: LibreSSL doesn\'t have or require Windows applink.c. [Gregg L. Smith]
* ) htpasswd/htdigest: Disable support for bcrypt on EBCDIC platforms. apr-util\'s bcrypt implementation doesn\'t tolerate EBCDIC. [Eric Covener]
* ) htpasswd/htdbm: report the right limit when get_password() overflows. [Yann Ylavic]
* ) htpasswd: Don\'t fail in -v mode if password file is unwritable. PR 61631. [Joe Orton]
* ) htpasswd: don\'t point to (unused) stack memory on output to make static analysers happy. PR 60634. [Yann Ylavic, reported by shqking and Zhenwei Zou]
* ) mod_access_compat: Fail if a comment is found in an Allow or Deny directive. [Jan Kaluza]
* ) mod_authz_host: Ignore comments after \"Require host\", logging a warning, or logging an error if the line is otherwise empty. [Jan Kaluza, Joe Orton]
* ) rotatelogs: Fix expansion of %Z in localtime (-l) mode, and fix Y2K38 bug. [Joe Orton]
* ) mod_ssl: Support SSL DN raw variable extraction without conversion to UTF-8, using _RAW suffix on variable names. [Joe Orton]
* ) ab: Fix https:// connection failures (regression in 2.4.30); fix crash generating CSV output for large -n. [Joe Orton, Jan Kaluza]
* ) mod_proxy_fcgi: Add the support for mod_proxy\'s flushpackets and flushwait parameters. [Luca Toscano, Ruediger Pluem, Yann Ylavic]
* ) mod_ldap: Avoid possible crashes, hangs, and busy loops due to improper merging of the cache lock in vhost config. PR 43164 [Eric Covener]
* ) mpm_event: Do lingering close in worker(s). [Yann Ylavic]
* ) mpm_queue: Put fdqueue code in common for MPMs event and worker. [Yann Ylavic]
* ) mod_session: Strip Session header when SessionEnv is on. [Yann Ylavic]
* ) mod_cache_socache: Fix caching of empty headers up to carriage return. [Yann Ylavic]
* ) core: For consistency, ensure that read lines are NUL terminated on any error, not only on buffer full. [Yann Ylavic]
* ) mod_authnz_ldap: Fix language long names detection as short name. [Yann Ylavic]
* ) mod_proxy: Worker schemes and hostnames which are too large are no longer fatal errors; it is logged and the truncated values are stored. [Jim Jagielski]
* ) regex: Allow to configure global/default options for regexes, like caseless matching or extended format. [Yann Ylavic]
* ) mod_auth_digest: Actually use the secret when generating nonces. This change may cause problems if used with round robin load balancers. PR 54637 [Stefan Fritsch]
* ) mod_proxy: Allow setting options to globally defined balancer from ProxyPass used in VirtualHost. Balancers are now merged using the new merge_balancers method which merges the balancers options. [Jan Kaluza]
* ) logresolve: Fix incorrect behavior or segfault if -c flag is used Fixes: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=823259 [Stefan Fritsch]
* ) mod_remoteip: Add support for PROXY protocol (code donated by Cloudzilla). Add ability for PROXY protocol processing to be optional to donated code. See also: http://www.haproxy.org/download/1.5/doc/proxy-protocol.txt [Cloudzilla/roadrunner2AATTGitHub, Jim Jagielski, Daniel Ruggeri]
* ) mod_proxy, mod_ssl: Handle SSLProxy
* directives in sections, allowing per backend TLS configuration. [Yann Ylavic]
* ) mod_proxy_uwsgi: Add in UWSGI proxy (sub)module. [Roberto De Ioris, Jim Jagielski]
* ) mod_proxy_balancer,mod_slotmem_shm: Rework SHM reuse/deletion to not depend on the number of restarts (non-Unix systems) and preserve shared names as much as possible on configuration changes for SHMs and persisted files. PR 62044. [Yann Ylavic, Jim Jagielski]
* ) mod_http2: obsolete code removed, no more events on beam pool destruction, discourage content encoders on http2-status response (where they do not work). [Stefan Eissing]
* ) mpm_event: Let the listener thread do its maintenance job on resources shortage. PR 61979. [Yann Ylavic]
* ) mpm_event: Wakeup the listener to re-enable listening sockets. [Yann Ylavic]
* ) mod_ssl: The SSLCompression directive will now give an error if used with an OpenSSL build which does not support any compression methods. [Joe Orton]
* ) mpm_event,worker: Mask signals for threads created by modules in child init, so that they don\'t receive (implicitely) the ones meant for the MPM. PR 62009. [Armin Abfalterer , Yann Ylavic]
* ) mod_md: new experimental, module for managing domains across virtual hosts, implementing the Let\'s Encrypt ACMEv1 protocol to signup and renew certificates. Please read the modules documentation for further instructions on how to use it. [Stefan Eissing]
* ) mod_proxy_html: skip documents shorter than 4 bytes PR 56286 [Micha Lenk ]
* ) core, mpm_event: Avoid a small memory leak of the scoreboard handle, for the lifetime of the connection, each time it is processed by MPM event. [Yann Ylavic]
* ) mpm_event: Update scoreboard status for KeepAlive state. [Yann Ylavic]
* ) mod_ldap: Fix a case where a full LDAP cache would continually fail to purge old entries and log AH01323. PR61891. [Hendrik Harms ]
* ) mpm_event: close connections not reported as handled by any module to avoid losing track of them and leaking scoreboard entries. PR 61551. [Yann Ylavic]
* ) core: A signal received while stopping could have crashed the main process. PR 61558. [Yann Ylavic]
* ) mod_ssl: support for mod_md added. [Stefan Eissing]
* ) mod_proxy_html: process parsed comments immediately. Fixes bug (seen in the wild when used with IBM\'s HTTPD bundle) where parsed comments may be lost. [Nick Kew]
* ) mod_proxy_html: introduce doctype for HTML 5 [Nick Kew]
* ) mod_proxy_html: fix typo-bug processing \"strict\" vs \"transitional\" HTML/XHTML. PR 56457 [Nick Kew]
* ) mpm_event: avoid a very unlikely race condition between the listener and the workers when the latter fails to add a connection to the pollset. [Yann Ylavic]
* ) core: silently ignore a not existent file path when IncludeOptional is used. PR 57585. [Alberto Murillo Silva , Luca Toscano]
* ) mod_macro: fix usability of globally defined macros in .htaccess files. PR 57525. [Jose Kahan , Yann Ylavic]
* ) mod_rewrite, core: add the Vary header when a condition evaluates to true and the related RewriteRule is used in a Directory context (triggering an internal redirect). [Luca Toscano]
* ) ab: Make the TLS layer aware that the underlying socket is nonblocking, and use/handle POLLOUT where needed to avoid busy IOs and recover write errors when appropriate. [Yann Ylavic]
* ) ab: Keep reading nonblocking to exhaust TCP or SSL buffers when previous read was incomplete (the SSL case can cause the next poll() to timeout since data are buffered already). PR 61301 [Luca Toscano, Yann Ylavic]
* ) mod_http2: avoid unnecessary data retrieval for a trace log. Allow certain information retrievals on null bucket beams where it makes sense. [Stefan Eissing]
* Mon Mar 19 2018 pgajdosAATTsuse.com- Replace SuSEFirewall2 by firewalld II (fate#323460) [bsc#1083492]
* Mon Feb 05 2018 pgajdosAATTsuse.com- build mod_http2 also for 42.3
* Fri Feb 02 2018 pgajdosAATTsuse.com- remove NameVirtualHost from documentation [bsc#1078557]
* Tue Jan 30 2018 pgajdosAATTsuse.com- for older distros, still use SuSEFirewall2 [bsc#1071548c#7]
* Mon Jan 29 2018 knut.anderssenAATTsuse.com- Replace SuSEFirewall2 by firewalld (fate#323460)
 
ICM