Skip to content

Commit

Permalink
Release v1.5.1 (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
Anilm3 authored Sep 22, 2022
1 parent 0085696 commit 75c23ce
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# libddwaf release

### v1.5.1 ([unstable](https://github.com/DataDog/libddwaf/blob/master/README.md#versioning-semantics)) - 2022/09/22

#### API \& Breaking Changes
- Add `ddwaf_required_rule_data_ids` to obtain the rule data IDs defined in the ruleset ([#104](https://github.com/DataDog/libddwaf/pull/104))

#### Miscellaneous
- GTest `ddwaf_result` validators ([#102](https://github.com/DataDog/libddwaf/pull/102))
- Replace `std::optional::value()` with `std::optional::operator*()` ([#105](https://github.com/DataDog/libddwaf/pull/105))
- Add new and missing exports ([#106](https://github.com/DataDog/libddwaf/pull/106))

### v1.5.0 ([unstable](https://github.com/DataDog/libddwaf/blob/master/README.md#versioning-semantics)) - 2022/09/08

#### API \& Breaking Changes
Expand Down
2 changes: 2 additions & 0 deletions libddwaf.def
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ EXPORTS
ddwaf_update_rule_data
ddwaf_toggle_rules
ddwaf_ruleset_info_free
ddwaf_required_addresses
ddwaf_required_rule_data_ids
ddwaf_context_init
ddwaf_run
ddwaf_context_destroy
Expand Down
2 changes: 1 addition & 1 deletion tests/TestInterface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ TEST(FunctionalTests, Budget)

TEST(FunctionalTests, ddwaf_get_version)
{
EXPECT_STREQ(ddwaf_get_version(), "1.5.0");
EXPECT_STREQ(ddwaf_get_version(), "1.5.1");
}

TEST(FunctionalTests, ddwaf_runNull)
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.0
1.5.1

0 comments on commit 75c23ce

Please sign in to comment.