sentry-sanitizer 0.7.0 → 0.7.1
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/.github/workflows/ci-linux.yml +2 -1
- data/.github/workflows/ci-macos.yml +2 -1
- data/.github/workflows/coveralls-report.yml +1 -1
- data/Gemfile +1 -0
- data/Gemfile.lock +18 -12
- data/Rakefile +1 -0
- data/lib/sentry/sanitizer/version.rb +1 -1
- data/sentry-sanitizer.gemspec +1 -1
- metadata +11 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a17ef6bdd4061a447ed69376728f59f1578882a85018d88907bf39cbd25f0303
|
|
4
|
+
data.tar.gz: 15bcf120b47c8901516c749164d8cd4c9f994c8a9f2d3603a735fe5c1047b276
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f2ea7603ad649947b2722136a4beee57517164b1387260ca033ae897a37facdab56ecf3df8eae50b4659a6ee56fcd44b4eeb0c8afbbe2d08cf9517835289789e
|
|
7
|
+
data.tar.gz: 4648b1845b6ed34d11af14ea769f0bcd1c21dd3cfe7b9488d371f0fcffdafb98e22e4596171c0896715b0539f6b4ca316389c91d75d17b84d0971f267c8f8cd3
|
|
@@ -10,11 +10,12 @@ jobs:
|
|
|
10
10
|
strategy:
|
|
11
11
|
matrix:
|
|
12
12
|
include:
|
|
13
|
-
- { ruby_version: 2.5 }
|
|
14
13
|
- { ruby_version: 2.7 }
|
|
15
14
|
- { ruby_version: 3.0 }
|
|
16
15
|
- { ruby_version: 3.1 }
|
|
17
16
|
- { ruby_version: 3.2 }
|
|
17
|
+
- { ruby_version: 3.3 }
|
|
18
|
+
- { ruby_version: 3.4 }
|
|
18
19
|
- { ruby_version: jruby }
|
|
19
20
|
steps:
|
|
20
21
|
- uses: actions/checkout@v1
|
|
@@ -10,11 +10,12 @@ jobs:
|
|
|
10
10
|
strategy:
|
|
11
11
|
matrix:
|
|
12
12
|
include:
|
|
13
|
-
- { ruby_version: 2.5 }
|
|
14
13
|
- { ruby_version: 2.7 }
|
|
15
14
|
- { ruby_version: 3.0 }
|
|
16
15
|
- { ruby_version: 3.1 }
|
|
17
16
|
- { ruby_version: 3.2 }
|
|
17
|
+
- { ruby_version: 3.3 }
|
|
18
|
+
- { ruby_version: 3.4 }
|
|
18
19
|
- { ruby_version: jruby }
|
|
19
20
|
steps:
|
|
20
21
|
- uses: actions/checkout@v1
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,25 +1,29 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
sentry-sanitizer (0.7.
|
|
5
|
-
sentry-ruby (
|
|
4
|
+
sentry-sanitizer (0.7.1)
|
|
5
|
+
sentry-ruby (>= 5.3, < 7.0.0)
|
|
6
6
|
|
|
7
7
|
GEM
|
|
8
8
|
remote: https://rubygems.org/
|
|
9
9
|
specs:
|
|
10
|
-
ast (2.4.
|
|
11
|
-
|
|
10
|
+
ast (2.4.3)
|
|
11
|
+
base64 (0.3.0)
|
|
12
|
+
bigdecimal (3.3.1)
|
|
12
13
|
concurrent-ruby (1.3.5)
|
|
13
14
|
diff-lcs (1.5.0)
|
|
14
15
|
docile (1.4.0)
|
|
15
|
-
parallel (1.
|
|
16
|
-
parser (3.
|
|
16
|
+
parallel (1.27.0)
|
|
17
|
+
parser (3.3.10.0)
|
|
17
18
|
ast (~> 2.4.1)
|
|
19
|
+
racc
|
|
20
|
+
prism (1.6.0)
|
|
21
|
+
racc (1.8.1)
|
|
18
22
|
rack (2.2.3.1)
|
|
19
23
|
rainbow (3.1.1)
|
|
20
24
|
rake (10.5.0)
|
|
21
|
-
regexp_parser (2.
|
|
22
|
-
rexml (3.
|
|
25
|
+
regexp_parser (2.11.3)
|
|
26
|
+
rexml (3.4.4)
|
|
23
27
|
rspec (3.11.0)
|
|
24
28
|
rspec-core (~> 3.11.0)
|
|
25
29
|
rspec-expectations (~> 3.11.0)
|
|
@@ -42,22 +46,24 @@ GEM
|
|
|
42
46
|
rubocop-ast (>= 1.17.0, < 2.0)
|
|
43
47
|
ruby-progressbar (~> 1.7)
|
|
44
48
|
unicode-display_width (>= 1.4.0, < 3.0)
|
|
45
|
-
rubocop-ast (1.
|
|
46
|
-
parser (>= 3.
|
|
49
|
+
rubocop-ast (1.47.1)
|
|
50
|
+
parser (>= 3.3.7.2)
|
|
51
|
+
prism (~> 1.4)
|
|
47
52
|
ruby-progressbar (1.13.0)
|
|
48
|
-
sentry-ruby (
|
|
53
|
+
sentry-ruby (6.0.0)
|
|
49
54
|
bigdecimal
|
|
50
55
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
51
56
|
simplecov (0.18.5)
|
|
52
57
|
docile (~> 1.1)
|
|
53
58
|
simplecov-html (~> 0.11)
|
|
54
59
|
simplecov-html (0.12.3)
|
|
55
|
-
unicode-display_width (2.
|
|
60
|
+
unicode-display_width (2.6.0)
|
|
56
61
|
|
|
57
62
|
PLATFORMS
|
|
58
63
|
ruby
|
|
59
64
|
|
|
60
65
|
DEPENDENCIES
|
|
66
|
+
base64
|
|
61
67
|
bundler (>= 1.17)
|
|
62
68
|
rack
|
|
63
69
|
rake (~> 10.0)
|
data/Rakefile
CHANGED
data/sentry-sanitizer.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,29 +1,34 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sentry-sanitizer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Valentine Kiselev
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: sentry-ruby
|
|
15
14
|
requirement: !ruby/object:Gem::Requirement
|
|
16
15
|
requirements:
|
|
17
|
-
- - "
|
|
16
|
+
- - ">="
|
|
18
17
|
- !ruby/object:Gem::Version
|
|
19
18
|
version: '5.3'
|
|
19
|
+
- - "<"
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: 7.0.0
|
|
20
22
|
type: :runtime
|
|
21
23
|
prerelease: false
|
|
22
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
25
|
requirements:
|
|
24
|
-
- - "
|
|
26
|
+
- - ">="
|
|
25
27
|
- !ruby/object:Gem::Version
|
|
26
28
|
version: '5.3'
|
|
29
|
+
- - "<"
|
|
30
|
+
- !ruby/object:Gem::Version
|
|
31
|
+
version: 7.0.0
|
|
27
32
|
description: Add missing sanitizing support for sentry-ruby (previous sentry-raven)
|
|
28
33
|
email:
|
|
29
34
|
- mrexox@outlook.com
|
|
@@ -63,7 +68,6 @@ metadata:
|
|
|
63
68
|
source_code_uri: https://github.com/mrexox/sentry-sanitizer
|
|
64
69
|
changelog_uri: https://github.com/mrexox/sentry-sanitizer
|
|
65
70
|
rubygems_mfa_required: 'true'
|
|
66
|
-
post_install_message:
|
|
67
71
|
rdoc_options: []
|
|
68
72
|
require_paths:
|
|
69
73
|
- lib
|
|
@@ -78,8 +82,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
78
82
|
- !ruby/object:Gem::Version
|
|
79
83
|
version: '0'
|
|
80
84
|
requirements: []
|
|
81
|
-
rubygems_version: 3.
|
|
82
|
-
signing_key:
|
|
85
|
+
rubygems_version: 3.6.9
|
|
83
86
|
specification_version: 4
|
|
84
87
|
summary: Sanitizing middleware for sentry-ruby gem
|
|
85
88
|
test_files: []
|