Skip to content

Commit af96a85

Browse files
committed
Release 1.4.1 (unstable)
1 parent d741063 commit af96a85

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

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

3+
### v1.4.1 ([unstable](https://github.com/DataDog/libddwaf/blob/master/README.md#versioning-semantics)) - 2022/08/30
4+
- Deanonymize nested structs ([#97](https://github.com/DataDog/libddwaf/pull/97))
5+
36
### v1.4.0 ([unstable](https://github.com/DataDog/libddwaf/blob/master/README.md#versioning-semantics)) - 2022/06/29
47
- Correct nuget url ([#68](https://github.com/DataDog/libddwaf/pull/68))
58
- Only take params ownership when needed ([#69](https://github.com/DataDog/libddwaf/pull/69))

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, 4, 0 };
25+
static constexpr ddwaf_version waf_version { 1, 4, 1 };
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
@@ -294,7 +294,7 @@ TEST(FunctionalTests, ddwaf_get_version)
294294

295295
EXPECT_EQ(version.major, 1);
296296
EXPECT_EQ(version.minor, 4);
297-
EXPECT_EQ(version.patch, 0);
297+
EXPECT_EQ(version.patch, 1);
298298
}
299299

300300
TEST(FunctionalTests, ddwaf_runNull)

version

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

0 commit comments

Comments
 (0)