Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line numberDiff line numberDiff line change
Expand Up@@ -31,7 +31,7 @@ repositories {
}

group 'io.sqreen'
version '7.2.0'
version '8.0.0'

sourceCompatibility = 1.8
targetCompatibility = 1.8
Expand Down
2 changes: 1 addition & 1 deletion libddwaf
Submodule libddwaf updated 69 files
+44 −41 .github/workflows/test.yml
+25 −0 CHANGELOG.md
+7 −2 CMakeLists.txt
+2 −1 docker/libddwaf/x86_64/Toolchain.cmake
+8 −8 src/collection.cpp
+2 −2 src/collection.hpp
+50 −11 src/context.cpp
+23 −5 src/context.hpp
+4 −2 src/exclusion/input_filter.cpp
+10 −7 src/exclusion/input_filter.hpp
+6 −3 src/exclusion/object_filter.hpp
+4 −2 src/exclusion/rule_filter.cpp
+9 −5 src/exclusion/rule_filter.hpp
+2 −2 src/expression.cpp
+15 −15 src/expression.hpp
+6 −4 src/generator/base.hpp
+24 −8 src/generator/extract_schema.cpp
+5 −3 src/generator/extract_schema.hpp
+64 −0 src/indexer.hpp
+0 −5 src/matcher/base.hpp
+19 −0 src/parameter.cpp
+7 −2 src/parser/parser.hpp
+2 −2 src/parser/parser_v1.cpp
+151 −48 src/parser/parser_v2.cpp
+36 −13 src/parser/specification.hpp
+12 −6 src/processor.cpp
+19 −14 src/processor.hpp
+1 −1 src/rule.cpp
+7 −9 src/rule.hpp
+55 −26 src/ruleset.hpp
+100 −50 src/ruleset_builder.cpp
+17 −14 src/ruleset_builder.hpp
+68 −0 src/scanner.hpp
+6 −1 src/transformer/common/cow_string.hpp
+72 −0 src/transformer/lowercase.cpp
+5 −0 src/transformer/lowercase.hpp
+3 −3 src/waf.hpp
+4 −0 tests/CMakeLists.txt
+5 −5 tests/collection_test.cpp
+371 −31 tests/context_test.cpp
+101 −31 tests/generator/extract_schema_test.cpp
+1 −1 tests/integration/context/test.cpp
+67 −0 tests/integration/diagnostics/ruleset/processor.json
+34 −0 tests/integration/diagnostics/test.cpp
+0 −50 tests/integration/preprocessors/test.cpp
+0 −39 tests/integration/preprocessors/yaml/preprocessor.yaml
+67 −0 tests/integration/processors/ruleset/postprocessor.json
+67 −0 tests/integration/processors/ruleset/preprocessor.json
+67 −0 tests/integration/processors/ruleset/processor.json
+98 −0 tests/integration/processors/ruleset/processor_with_scanner_by_id.json
+101 −0 tests/integration/processors/ruleset/processor_with_scanner_by_tags.json
+603 −0 tests/integration/processors/test.cpp
+4 −2 tests/mkmap_test.cpp
+53 −0 tests/parameter_test.cpp
+18 −18 tests/parser_v2_input_filters_test.cpp
+156 −25 tests/parser_v2_processors_test.cpp
+18 −18 tests/parser_v2_rule_filters_test.cpp
+6 −6 tests/parser_v2_rules_override_test.cpp
+542 −0 tests/parser_v2_scanner_test.cpp
+207 −97 tests/processor_test.cpp
+5 −0 tests/rule_filter_test.cpp
+19 −37 tests/ruleset_test.cpp
+101 −0 tests/scanner_test.cpp
+31 −0 tests/test_utils.cpp
+11 −0 tests/test_utils.hpp
+3 −3 tools/infer_schema.cpp
+5 −1 tools/verify_ruleset.cpp
+6 −0 validator/CMakeLists.txt
+1 −1 version
2 changes: 1 addition & 1 deletion src/main/java/io/sqreen/powerwaf/Powerwaf.java
Original file line numberDiff line numberDiff line change
Expand Up@@ -20,7 +20,7 @@
import java.util.Map;

public final class Powerwaf {
public static final String LIB_VERSION = "1.13.1";
public static final String LIB_VERSION = "1.14.0";

private static final Logger LOGGER = LoggerFactory.getLogger(Powerwaf.class);
static final boolean ENABLE_BYTE_BUFFERS;
Expand Down
2 changes: 1 addition & 1 deletion src/test/groovy/io/sqreen/powerwaf/SchemaTests.groovy
Original file line numberDiff line numberDiff line change
Expand Up@@ -43,7 +43,7 @@ class SchemaTests implements PowerwafTrait {
]
}
],
"preprocessors": [
"processors": [
{
"id": "preprocessor-001",
"generator": "extract_schema",
Expand Down