Skip to content

Commit 0236a0d

Browse files
authored
Release 1.4.0 (unstable) (#83)
1 parent 9a23b69 commit 0236a0d

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# libddwaf release
22

3+
### v1.4.0 ([unstable](https://github.com/DataDog/libddwaf/blob/master/README.md#versioning-semantics)) - 2022/06/29
4+
- Correct nuget url ([#68](https://github.com/DataDog/libddwaf/pull/68))
5+
- Only take params ownership when needed ([#69](https://github.com/DataDog/libddwaf/pull/69))
6+
- WAF Benchmark Utility ([#70](https://github.com/DataDog/libddwaf/pull/70))
7+
- WAF Validator ([#74](https://github.com/DataDog/libddwaf/pull/74))
8+
- Make libinjection look for backticks ([#80](https://github.com/DataDog/libddwaf/pull/80))
9+
- Add version semantic and unstable release information ([#81](https://github.com/DataDog/libddwaf/pull/81))
10+
311
### v1.3.0 (unstable) - 2022/04/04
412
- WAF event obfuscator.
513
- Add obfuscator configuration to `ddwaf_config`.

src/PowerWAF.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class PowerWAF
2222
static PowerWAF* fromConfig(const ddwaf_object rules,
2323
const ddwaf_config* config, ddwaf::ruleset_info& info);
2424

25-
static constexpr ddwaf_version waf_version { 1, 3, 0 };
25+
static constexpr ddwaf_version waf_version { 1, 4, 0 };
2626

2727
PWManifest manifest;
2828
ddwaf::rule_vector rules;

tests/TestInterface.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ TEST(FunctionalTests, ddwaf_get_version)
293293
ddwaf_get_version(&version);
294294

295295
EXPECT_EQ(version.major, 1);
296-
EXPECT_EQ(version.minor, 3);
296+
EXPECT_EQ(version.minor, 4);
297297
EXPECT_EQ(version.patch, 0);
298298
}
299299

version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.0
1+
1.4.0

0 commit comments

Comments
 (0)