libddwaf 1.3.0.1.0-x86_64-linux → 1.5.1.0.0-x86_64-linux
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +74 -0
- data/lib/datadog/appsec/waf/version.rb +2 -2
- data/lib/datadog/appsec/waf.rb +306 -90
- data/vendor/libddwaf/libddwaf-1.5.1-linux-x86_64/lib/libddwaf.so +0 -0
- metadata +5 -5
- data/vendor/libddwaf/libddwaf-1.3.0-linux-x86_64/include/ddwaf.h +0 -624
- data/vendor/libddwaf/libddwaf-1.3.0-linux-x86_64/lib/libddwaf.so +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 88cf954481690b99c0366c0321e9e61207a400f77f4f34728eed53c02fff002b
|
4
|
+
data.tar.gz: d219437677e5808de8d8cc8f1854bc9f9cce1888fe5d48e2ae15392568657db5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 26628b2cbda3191f21a7f94f81a90826cac2a760e75fb5de9886b953b22cf452f1c48c6b40a246548a96718c25e0349aae13d8934afb3c538608d6c6d24c9e9c
|
7
|
+
data.tar.gz: '095b73dd20e5f097cd397e8546e11a1520ea4d1dca5d75c183652aa847e7ed4fa627d9aaaf874527f7eebcdbf64b86ac0d498cf5605dd3d1ccb6531258169e3a'
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# 2022-10-04 v1.5.1.0.0
|
2
|
+
|
3
|
+
- Update to libddwaf 1.5.1
|
4
|
+
- Add live rule data update API
|
5
|
+
- Add live rule toggle API
|
6
|
+
- Add libddwaf boolean type support
|
7
|
+
- Add Ruby to libddwaf object conversion limits
|
8
|
+
- Add Ruby to libddwaf object converter optional coercion of scalars to string
|
9
|
+
- Add static type checking via RBS+Steep
|
10
|
+
- Change version to return a string
|
11
|
+
- Change free function to be passed as config instead of context init argument
|
12
|
+
- Change result to include action list
|
13
|
+
- Change return code from action to status
|
14
|
+
- Change handle and context freeing model from GC-based to explicit
|
15
|
+
- Fix double-free upon finalization of retained C objects
|
16
|
+
- Fix context crash by retaining necessary C objects
|
17
|
+
|
18
|
+
# 2022-05-20 v1.3.0.2.0
|
19
|
+
|
20
|
+
- Fix multibyte string handling
|
21
|
+
- Support JRuby
|
22
|
+
|
23
|
+
# 2022-04-29 v1.3.0.1.0
|
24
|
+
|
25
|
+
Promotion of v1.3.0.1.0.beta1 to stable
|
26
|
+
|
27
|
+
# 2022-04-25 v1.3.0.1.0.beta1
|
28
|
+
|
29
|
+
- Add obfuscator configuration
|
30
|
+
- Add nested object limit configuration
|
31
|
+
- Add report ruleset information
|
32
|
+
|
33
|
+
# 2022-04-29 v1.3.0.0.0
|
34
|
+
|
35
|
+
- Promote v1.3.0.0.0.beta1 to stable
|
36
|
+
|
37
|
+
# 2022-04-20 v1.3.0.0.0.beta1
|
38
|
+
|
39
|
+
- Update to libddwaf 1.3.0
|
40
|
+
|
41
|
+
# 2022-03-18 v1.2.1.0.0.beta1
|
42
|
+
|
43
|
+
- Update to libddwaf 1.2.1
|
44
|
+
- Fix incorrect types for a few binding functions
|
45
|
+
|
46
|
+
# 2022-03-04 v1.0.14.2.1.beta1
|
47
|
+
|
48
|
+
- Fix incorrect return code
|
49
|
+
- Fix passing nil in libddwaf object containers
|
50
|
+
|
51
|
+
# 2022-02-07 v1.0.14.2.0.beta1
|
52
|
+
|
53
|
+
- Change Datadog::Security to Datadog::AppSec
|
54
|
+
|
55
|
+
# 2022-02-01 v1.0.14.1.0.beta2
|
56
|
+
|
57
|
+
- Add support for Ruby 3.1
|
58
|
+
|
59
|
+
# 2021-12-14 v1.0.14.1.0.beta1
|
60
|
+
|
61
|
+
- Fix sequential runs on a single context by retaining C input data objects
|
62
|
+
|
63
|
+
# 2021-11-24 v1.0.14.0.0.beta1
|
64
|
+
|
65
|
+
- Update to libddwaf 1.0.14
|
66
|
+
|
67
|
+
# 2021-11-24 v1.0.13.0.0.beta1
|
68
|
+
|
69
|
+
- Add ruby platform fallback for unsupported platforms
|
70
|
+
- Update to libddwaf 1.0.13
|
71
|
+
|
72
|
+
# 2021-10-13 v1.0.12.0.0.beta1
|
73
|
+
|
74
|
+
- Initial release
|