Skip to content

Commit 05655e0

Browse files
authored
Release v1.2.1 (unstable) (#63)
1 parent c36dda5 commit 05655e0

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGELOG.md

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

3+
### v1.2.1 (unstable) - 2022/03/17
4+
- Fix issue on ruleset error map reallocation causing cached pointer invalidation.
5+
- Add check for empty input map on parser.
6+
- Update github actions windows build VM to windows-2019.
7+
38
### v1.2.0 (unstable) - 2022/03/16
49
- Remove metrics collector.
510
- Add `total_runtime` to `ddwaf_result`.

src/PowerWAF.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ struct PowerWAF
2727
static PowerWAF* fromConfig(const ddwaf_object rules,
2828
const ddwaf_config* config, ddwaf::ruleset_info& info);
2929

30-
static constexpr ddwaf_version waf_version { 1, 2, 0 };
30+
static constexpr ddwaf_version waf_version { 1, 2, 1 };
3131
};
3232

3333
#endif /* pw_hpp */

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, 2);
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.2.0
1+
1.2.1

0 commit comments

Comments
 (0)