sentry-good_job 6.2.0 → 6.2.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/CHANGELOG.md +4 -0
- data/README.md +7 -8
- data/lib/sentry/good_job/version.rb +1 -1
- data/sentry-good_job.gemspec +2 -2
- metadata +22 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b4bbd328429c6b8c41e160e50472df58bcdf9e1686f1d7e5f0e641cf4a0f7d0b
|
|
4
|
+
data.tar.gz: 7ac0b2165cde063b7e0940e9ef121cb1314eb3c36b27554303c93cb7511ddce8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 41ede499759ad573a7db70861480f9f724b8aa0918dbefc28d6799099e4afad7ca14fd061f8ecd87376f86051b0c6ba0ca6bbe3465c7ed78e7d47381719aba27
|
|
7
|
+
data.tar.gz: a3f15723bd45b30663df12f9ac9a0e1c9ee8f5702bb7a88a8f18cf70f4c11366a6a734cadb82ad60b11a3ac55408d77e44294b766454bb0afd925fc59ce9f840
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -10,14 +10,13 @@
|
|
|
10
10
|
---
|
|
11
11
|
|
|
12
12
|
[](https://rubygems.org/gems/sentry-good_job)
|
|
13
|
-
](https://github.com/amkisko/sentry-good_job/actions/workflows/test.yml)
|
|
14
|
+
[](https://app.codecov.io/gh/amkisko/sentry-good_job)
|
|
15
|
+
[](https://sonarcloud.io/summary/new_code?id=amkisko_sentry-good_job)
|
|
15
16
|
[](https://rubygems.org/gems/sentry-good_job/)
|
|
16
17
|
[](https://dependabot.com/compatibility-score.html?dependency-name=sentry-good_job&package-manager=bundler&version-scheme=semver)
|
|
17
18
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
The official Ruby-language client and integration layer for the [Sentry](https://github.com/getsentry/sentry) error reporting API.
|
|
19
|
+
This gem provides the GoodJob integration for the [Sentry](https://sentry.io) Ruby SDK.
|
|
21
20
|
|
|
22
21
|
## Getting Started
|
|
23
22
|
|
|
@@ -191,12 +190,12 @@ The integration automatically adds relevant context to error reports:
|
|
|
191
190
|
|
|
192
191
|
- Ruby 2.4+
|
|
193
192
|
- Rails 5.2+
|
|
194
|
-
- Good Job
|
|
195
|
-
- Sentry Ruby SDK
|
|
193
|
+
- Good Job 4.x
|
|
194
|
+
- Sentry Ruby SDK 6.x
|
|
196
195
|
|
|
197
196
|
## Contributing
|
|
198
197
|
|
|
199
|
-
We welcome contributions! Please see our [contributing guidelines](
|
|
198
|
+
We welcome contributions! Please see our [contributing guidelines](./CONTRIBUTING.md) for details.
|
|
200
199
|
|
|
201
200
|
## License
|
|
202
201
|
|
data/sentry-good_job.gemspec
CHANGED
|
@@ -44,6 +44,6 @@ Gem::Specification.new do |spec|
|
|
|
44
44
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
45
45
|
spec.require_paths = ["lib"]
|
|
46
46
|
|
|
47
|
-
spec.add_dependency "sentry-ruby", "
|
|
48
|
-
spec.add_dependency "good_job", "
|
|
47
|
+
spec.add_dependency "sentry-ruby", ">= 6.0", "< 7.0"
|
|
48
|
+
spec.add_dependency "good_job", ">= 3.0", "< 5.0"
|
|
49
49
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sentry-good_job
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 6.2.
|
|
4
|
+
version: 6.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sentry Team
|
|
@@ -14,30 +14,42 @@ dependencies:
|
|
|
14
14
|
name: sentry-ruby
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - "
|
|
17
|
+
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '6'
|
|
19
|
+
version: '6.0'
|
|
20
|
+
- - "<"
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: '7.0'
|
|
20
23
|
type: :runtime
|
|
21
24
|
prerelease: false
|
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
26
|
requirements:
|
|
24
|
-
- - "
|
|
27
|
+
- - ">="
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '6.0'
|
|
30
|
+
- - "<"
|
|
25
31
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '
|
|
32
|
+
version: '7.0'
|
|
27
33
|
- !ruby/object:Gem::Dependency
|
|
28
34
|
name: good_job
|
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
|
30
36
|
requirements:
|
|
31
|
-
- - "
|
|
37
|
+
- - ">="
|
|
32
38
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '
|
|
39
|
+
version: '3.0'
|
|
40
|
+
- - "<"
|
|
41
|
+
- !ruby/object:Gem::Version
|
|
42
|
+
version: '5.0'
|
|
34
43
|
type: :runtime
|
|
35
44
|
prerelease: false
|
|
36
45
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
46
|
requirements:
|
|
38
|
-
- - "
|
|
47
|
+
- - ">="
|
|
48
|
+
- !ruby/object:Gem::Version
|
|
49
|
+
version: '3.0'
|
|
50
|
+
- - "<"
|
|
39
51
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: '
|
|
52
|
+
version: '5.0'
|
|
41
53
|
description: Adds Sentry instrumentation, context helpers, and cron monitoring support
|
|
42
54
|
to GoodJob-backed ActiveJob workloads.
|
|
43
55
|
email: contact@kiskolabs.com
|
|
@@ -72,7 +84,7 @@ metadata:
|
|
|
72
84
|
source_code_uri: https://github.com/amkisko/sentry-good_job/tree/main
|
|
73
85
|
changelog_uri: https://github.com/amkisko/sentry-good_job/blob/main/CHANGELOG.md
|
|
74
86
|
bug_tracker_uri: https://github.com/amkisko/sentry-good_job/issues
|
|
75
|
-
documentation_uri: http://www.rubydoc.info/gems/sentry-good_job/6.2.
|
|
87
|
+
documentation_uri: http://www.rubydoc.info/gems/sentry-good_job/6.2.1
|
|
76
88
|
rdoc_options: []
|
|
77
89
|
require_paths:
|
|
78
90
|
- lib
|