libddwaf 1.3.0.1.0-x86_64-darwin → 1.5.1.0.0-x86_64-darwin

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7147f31cd2323a54e6770f0c2aa6b9888d98c22b54731606ca12a2d4e0dc0981
4
- data.tar.gz: bb6ecf91cef5f4d3a1b5f69f78ad44c8205227d85cca797e5c399dd4060429b5
3
+ metadata.gz: a35c1c6b48d5a2f652a9e726e8651ac2dcd82d91e875f859c511d7a096b1ef05
4
+ data.tar.gz: 7cbec901402fb39d79a84dcd01bf6b5739c5f11f8e6c3ae9d43ffc9c6d7310cd
5
5
  SHA512:
6
- metadata.gz: 781b78e9a74e165436f01d3e44e9f9138d437d1732fc672319cbc6e44ef4af2663c64acf1a52ef731ac347522514e15feb38af1899aa1733926a93c569b719fe
7
- data.tar.gz: d8240d2ec09db8e6ba1777aa4e5687e6a139ae5a7514eff262fe9f7e9bd9872c03e1c3ebf23bc4d2cc8c5876c9acba1534ef5839dd37aef882e7ee54be692f19
6
+ metadata.gz: 4a3f7f7b47d3fd5de075d22cc749998611f79b688012494a979ef5435a6785bfd5dfc198e970f33224ae0ad8669b4f76b76c56fd3cdff1fc0f861c4e037b245c
7
+ data.tar.gz: 5f81bd74f5f95f74fcab502d38de48de621a45fe7f1da4c1854f61c6f9a57171288ede0ff61490963c692f3929de1c610b613d3dd4fe71882f12ae62d1950af9
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
@@ -2,8 +2,8 @@ module Datadog
2
2
  module AppSec
3
3
  module WAF
4
4
  module VERSION
5
- BASE_STRING = '1.3.0'
6
- STRING = "#{BASE_STRING}.1.0"
5
+ BASE_STRING = '1.5.1'
6
+ STRING = "#{BASE_STRING}.0.0"
7
7
  MINIMUM_RUBY_VERSION = '2.1'
8
8
  end
9
9
  end