sentry-ruby-core 5.0.0 → 5.0.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/lib/sentry/transport/http_transport.rb +3 -6
 - data/lib/sentry/version.rb +1 -1
 - metadata +2 -2
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 848bd1089194abb9be8a48b6c1c4c218dfba27a3555d8ae79a5ffe7d52a05569
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: c52711ba4c4275d35cc4ed54a0dc0936422a63e199de91c08e3e6964fb80d6d6
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: fb55681acc83a4c970fbf8dd7c6715fbef7b6d26ad0a4ca674bc463de13881887d33dd8673772e60e25c2c66b6cb1f111a6c23936b1683d74384296924bb2b33
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 598c1571d00ca441b3a351dfe12c56967d3dae8e4f05b4a8f21b3e8fe16d0c94558e8dec5d211ff72aced12d5b433fb0f7f5f1b6ed522206d15847087dafd959
         
     | 
| 
         @@ -14,12 +14,11 @@ module Sentry 
     | 
|
| 
       14 
14 
     | 
    
         
             
                RATE_LIMIT_HEADER = "x-sentry-rate-limits"
         
     | 
| 
       15 
15 
     | 
    
         
             
                USER_AGENT = "sentry-ruby/#{Sentry::VERSION}"
         
     | 
| 
       16 
16 
     | 
    
         | 
| 
       17 
     | 
    
         
            -
                attr_reader :conn
         
     | 
| 
       18 
     | 
    
         
            -
             
     | 
| 
       19 
17 
     | 
    
         
             
                def initialize(*args)
         
     | 
| 
       20 
18 
     | 
    
         
             
                  super
         
     | 
| 
       21 
     | 
    
         
            -
                  @conn = set_conn
         
     | 
| 
       22 
19 
     | 
    
         
             
                  @endpoint = @dsn.envelope_endpoint
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
                  log_debug("Sentry HTTP Transport will connect to #{@dsn.server}")
         
     | 
| 
       23 
22 
     | 
    
         
             
                end
         
     | 
| 
       24 
23 
     | 
    
         | 
| 
       25 
24 
     | 
    
         
             
                def send_data(data)
         
     | 
| 
         @@ -127,11 +126,9 @@ module Sentry 
     | 
|
| 
       127 
126 
     | 
    
         
             
                  @transport_configuration.encoding == GZIP_ENCODING && data.bytesize >= GZIP_THRESHOLD
         
     | 
| 
       128 
127 
     | 
    
         
             
                end
         
     | 
| 
       129 
128 
     | 
    
         | 
| 
       130 
     | 
    
         
            -
                def  
     | 
| 
      
 129 
     | 
    
         
            +
                def conn
         
     | 
| 
       131 
130 
     | 
    
         
             
                  server = URI(@dsn.server)
         
     | 
| 
       132 
131 
     | 
    
         | 
| 
       133 
     | 
    
         
            -
                  log_debug("Sentry HTTP Transport connecting to #{server}")
         
     | 
| 
       134 
     | 
    
         
            -
             
     | 
| 
       135 
132 
     | 
    
         
             
                  use_ssl = server.scheme == "https"
         
     | 
| 
       136 
133 
     | 
    
         
             
                  port = use_ssl ? 443 : 80
         
     | 
| 
       137 
134 
     | 
    
         | 
    
        data/lib/sentry/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: sentry-ruby-core
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 5.0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 5.0.1
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Sentry Team
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: exe
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2022-01- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2022-01-23 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: concurrent-ruby
         
     |