gruf-sentry 1.6.1 → 1.7.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 05444c33b07e12f63cec979ab76c1bd2a4a79d42b43ca2707e610bd1d3d34762
4
- data.tar.gz: 527c2166cad1dc3bcfe7e91ea83da4d54b976ced7f3b7b99dec9152550979505
3
+ metadata.gz: 976cd787cd895a0b8d4957cd5326276fd61d13fefc5e8c30f2bc87938d891476
4
+ data.tar.gz: e34021d6314ba8d57935008213deacb442ccbe59553be814bc83152dc58017db
5
5
  SHA512:
6
- metadata.gz: b87b97a28ea0321a8369055b945eef83439b78d9998aeeb5dc118fcc6f5b76c871bf2f2032ef2ae3cffaa452a305be3ce5fbeac85e507f95a5cb553192cc68f8
7
- data.tar.gz: c4f4b27f432c50ce2cc9e04d4416ba5ef9732eacf81739013aa05f315db6df9dd07e97dfb7d6e53c65e9f1b4c1de948ce57baad8f90d03cc9a03030659efe82c
6
+ metadata.gz: 3cf4021729d72916b63d9c02dd6a41c17ddc5b5b07c7089590db879d753a1fd4bc1e9dd020ec23f610166b9347b5bc03a6c50e995787d4695b2f34312d11fa9c
7
+ data.tar.gz: be97c44bb5364b306a8f48d7cf54315f2726a5d72af64aa4ddc2fc41a66c3666e90326e18caa55adb5836ca1fff6a7d616a8ee653b27c78429a88dae2f76ed46
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@ Changelog for the gruf-sentry gem.
2
2
 
3
3
  ### Pending release
4
4
 
5
+ ## 1.7.0
6
+
7
+ - Add support for Ruby 4.0
8
+
5
9
  ## 1.6.1
6
10
 
7
11
  - Fix autoloading issue in certain Rails environments
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # gruf-sentry - Sentry reporting for gruf
2
2
 
3
- [![CircleCI](https://circleci.com/gh/bigcommerce/gruf-sentry/tree/main.svg?style=svg)](https://circleci.com/gh/bigcommerce/gruf-sentry/tree/main) [![Gem Version](https://badge.fury.io/rb/gruf-sentry.svg)](https://badge.fury.io/rb/gruf-sentry) [![Inline docs](http://inch-ci.org/github/bigcommerce/gruf-sentry.svg?branch=main)](http://inch-ci.org/github/bigcommerce/gruf-sentry) [![Maintainability](https://api.codeclimate.com/v1/badges/530757a403a4a596dda0/maintainability)](https://codeclimate.com/github/bigcommerce/gruf-sentry/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/530757a403a4a596dda0/test_coverage)](https://codeclimate.com/github/bigcommerce/gruf-sentry/test_coverage)
3
+ [![CircleCI](https://circleci.com/gh/bigcommerce/gruf-sentry/tree/main.svg?style=svg)](https://circleci.com/gh/bigcommerce/gruf-sentry/tree/main) [![Gem Version](https://badge.fury.io/rb/gruf-sentry.svg)](https://badge.fury.io/rb/gruf-sentry) [![Inline docs](http://inch-ci.org/github/bigcommerce/gruf-sentry.svg?branch=main)](http://inch-ci.org/github/bigcommerce/gruf-sentry)
4
4
 
5
5
  Adds Sentry error reporting support for [gruf](https://github.com/bigcommerce/gruf) 2.7.0+
6
6
  and [sentry-ruby](https://github.com/getsentry/sentry-ruby) 4.3+.
@@ -29,7 +29,7 @@ It comes with a few more options as well:
29
29
  |--------------------|------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|----------------------------------|
30
30
  | ignore_methods | A list of method names to ignore from logging. E.g. `['namespace.health.check']` | `[]` | GRUF_SENTRY_IGNORE_METHODS |
31
31
  | grpc_error_classes | A list of gRPC error classes that will be used for detecting errors (as opposed to validation) | `GRPC::Unknown,GRPC::Internal,GRPC::DataLoss,GRPC::FailedPrecondition,GRPC::Unavailable,GRPC::DeadlineExceeded,GRPC::Cancelled` | GRUF_SENTRY_GRPC_ERROR_CLASSES |
32
- | default_error_code | The default gRPC error code to use (int value) | `GRPC::Core::StatusCodes::INTERNAL` | `GRUF_SENTRY_DEFAULT_ERROR_CODE` |
32
+ | default_error_code | The default gRPC error code to use (int value) | `GRPC::Core::StatusCodes::INTERNAL` | `GRUF_SENTRY_DEFAULT_ERROR_CODE` |
33
33
 
34
34
  ### Client Interceptors
35
35
 
data/gruf-sentry.gemspec CHANGED
@@ -30,7 +30,7 @@ Gem::Specification.new do |spec|
30
30
  spec.description = spec.summary
31
31
  spec.homepage = 'https://github.com/bigcommerce/gruf-sentry'
32
32
 
33
- spec.required_ruby_version = '>= 3.0', '< 4'
33
+ spec.required_ruby_version = '>= 3.0', '< 5'
34
34
 
35
35
  spec.files = Dir['README.md', 'CHANGELOG.md', 'CODE_OF_CONDUCT.md', 'lib/**/*', 'gruf-sentry.gemspec']
36
36
  spec.require_paths = %w[lib]
@@ -17,6 +17,6 @@
17
17
  #
18
18
  module Gruf
19
19
  module Sentry
20
- VERSION = '1.6.1'
20
+ VERSION = '1.7.0'
21
21
  end
22
22
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gruf-sentry
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.1
4
+ version: 1.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shaun McCormick
@@ -90,14 +90,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
90
90
  version: '3.0'
91
91
  - - "<"
92
92
  - !ruby/object:Gem::Version
93
- version: '4'
93
+ version: '5'
94
94
  required_rubygems_version: !ruby/object:Gem::Requirement
95
95
  requirements:
96
96
  - - ">="
97
97
  - !ruby/object:Gem::Version
98
98
  version: '0'
99
99
  requirements: []
100
- rubygems_version: 3.6.7
100
+ rubygems_version: 4.0.3
101
101
  specification_version: 4
102
102
  summary: Automatically report gruf failures as sentry errors
103
103
  test_files: []