Skip to content

Commit 23f6f6e

Browse files
author
Felipe Zimmerle
committed
Version 2.9.0-RC1
Increasing version to 2.9.0-RC1.
1 parent b019f60 commit 23f6f6e

File tree

4 files changed

+46
-4
lines changed

4 files changed

+46
-4
lines changed

CHANGES

+42
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,45 @@
1+
18 Nov 2014 - 2.9.0-RC1
2+
-----------------------
3+
4+
* `pmFromFile' and `ipMatchFromFile' operators are now accepting HTTPS served
5+
files as parameter.
6+
* `SecRemoteRules' directive - allows you to specify a HTTPS served file that
7+
may contain rules in the SecRule format to be loaded into your ModSecurity
8+
instance.
9+
* `SecRemoteRulesFailAction' directive - allows you to control whenever the
10+
user wants to Abort or just Warn when there is a problem while downloading
11+
rules specified with the directive: `SecRemoteRules'.
12+
* `fuzzyHash' operator - allows to match contents using fuzzy hashes.
13+
* `FILES_TMP_CONTENT' collection - make available the content of uploaded
14+
files.
15+
* InsecureNoCheckCert - option to validate or not a chain of SSL certificates
16+
on mlogc connections.
17+
* ModSecurityIIS: ModSecurity event ID was changed from 0 to 0x1.
18+
[Issue #676 - Kris Kater and ModSecurity team]
19+
* Fixed signature on "status call": ModSecurity is now using the original
20+
server signature.
21+
[Issues #702 - Linas and ModSecurity team]
22+
* YAJL version is printed while ModSecurity initialization.
23+
[Issue #703 - Steffen (Apache Lounge) and Mauro Faccenda]
24+
* Fixed subnet representation using slash notation on the @ipMatch operator.
25+
[Issue #706 - Walter Hop and ModSecurity team]
26+
* Limited the length of a status call.
27+
[Issue #714 - 'cpanelkurt' and ModSecurity team]
28+
* Added the missing -P option to nginx regression tests.
29+
[Issue #720 - Paul Yang]
30+
* Fixed automake scripts to do not use features which will be deprecated in
31+
the upcoming releases of automake.
32+
[Issue #760 - ModSecurity team]
33+
* apr-utils's LDFALGS is now considered while building ModSecurity.
34+
[Issue #782 - Daniel J. Luke]
35+
* IIS installer is not considering IIS 6 as compatible anymore.
36+
[Issue #790 - ModSecurity team]
37+
* Fixed yajl build script: now looking for the correct header file.
38+
[Issue #804 - 'rpfilomeno' and ModSecurity team]
39+
* mlgoc is now forced to use TLS 1.x.
40+
[Issue #806 - Josh Amishav-Zlatin and ModSecurity team]
41+
42+
143
14 Apr 2014 - 2.8.0
244
-------------------
345

apache2/msc_release.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@
3737
#endif
3838

3939
#define MODSEC_VERSION_MAJOR "2"
40-
#define MODSEC_VERSION_MINOR "8"
40+
#define MODSEC_VERSION_MINOR "9"
4141
#define MODSEC_VERSION_MAINT "0"
4242
#define MODSEC_VERSION_TYPE ""
43-
#define MODSEC_VERSION_RELEASE ""
43+
#define MODSEC_VERSION_RELEASE "-RC1"
4444

4545
#define MODSEC_VERSION_SUFFIX MODSEC_VERSION_TYPE MODSEC_VERSION_RELEASE
4646

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ dnl
66

77
AC_PREREQ(2.63)
88

9-
AC_INIT([modsecurity], [2.8], [[email protected]])
9+
AC_INIT([modsecurity], [2.9], [[email protected]])
1010

1111
AC_CONFIG_MACRO_DIR([build])
1212
AC_CONFIG_SRCDIR([LICENSE])

iis/installer.wxs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
lightArgs:
88
-->
99
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
10-
<Product Id="22B04FDB-9BAB-46B0-87B8-A39544ECECD3" Name="ModSecurity IIS" Language="1033" Version="2.8.0" Manufacturer="ModSecurity" UpgradeCode="82F09489-1678-4C38-ADCB-08C3757653DB">
10+
<Product Id="22B04FDB-9BAB-46B0-87B8-A39544ECECD3" Name="ModSecurity IIS" Language="1033" Version="2.9.0.1" Manufacturer="ModSecurity" UpgradeCode="82F09489-1678-4C38-ADCB-08C3757653DB">
1111
<Package Description="ModSecurityISS" Comments="none" InstallerVersion="405" Compressed="yes" InstallPrivileges="elevated" InstallScope="perMachine" />
1212
<?define ProductName = "ModSecuirty IIS" ?>
1313
<?if $(sys.BUILDARCH) = x64 ?>

0 commit comments

Comments
 (0)