appsignal 4.5.12-java → 4.5.13-java
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 +8 -0
- data/ext/appsignal_extension.c +2 -2
- data/lib/appsignal/version.rb +1 -1
- metadata +1 -1
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 05ad2b9b80e1a2b333edb705217ea1a5b372c735275c042a48051c8a5b1ffb1a
         | 
| 4 | 
            +
              data.tar.gz: abfeb2be7e98cad19da981bcc54206fad3a6a07308ed5d4ac0b03043c471b716
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 06613e5878a38093819be635c9b7a5c994ed16496959764074ca0efb0e498c3a8b380387d52c7376cbb1de63d84219bd15179b878049dc7a80993b83d230eb86
         | 
| 7 | 
            +
              data.tar.gz: 26e857ed78d111e6c504715de0a967992a9c2b16cf22defe5bb388516db882104fe296b93375e77457f60b87c938290f1e010c90f4f2b1a8a881a67964e358cb
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -1,5 +1,13 @@ | |
| 1 1 | 
             
            # AppSignal for Ruby gem Changelog
         | 
| 2 2 |  | 
| 3 | 
            +
            ## 4.5.13
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            _Published on 2025-05-12._
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            ### Fixed
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            - Fix the C extension function definitions. On install, the Ruby gem extension would print warnings or fail to compile. (patch [c93f8e20](https://github.com/appsignal/appsignal-ruby/commit/c93f8e20860168929721f0c2b3e642a02dbde936))
         | 
| 10 | 
            +
             | 
| 3 11 | 
             
            ## 4.5.12
         | 
| 4 12 |  | 
| 5 13 | 
             
            _Published on 2025-05-12._
         | 
    
        data/ext/appsignal_extension.c
    CHANGED
    
    | @@ -838,7 +838,7 @@ static void track_allocation(rb_event_flag_t flag, VALUE arg1, VALUE arg2, ID ar | |
| 838 838 | 
             
              appsignal_track_allocation();
         | 
| 839 839 | 
             
            }
         | 
| 840 840 |  | 
| 841 | 
            -
            static VALUE install_allocation_event_hook() {
         | 
| 841 | 
            +
            static VALUE install_allocation_event_hook(VALUE self) {
         | 
| 842 842 | 
             
              // This event hook is only available on Ruby 2.1 and 2.2
         | 
| 843 843 | 
             
              #if defined(RUBY_INTERNAL_EVENT_NEWOBJ)
         | 
| 844 844 | 
             
              rb_add_event_hook(
         | 
| @@ -851,7 +851,7 @@ static VALUE install_allocation_event_hook() { | |
| 851 851 | 
             
              return Qnil;
         | 
| 852 852 | 
             
            }
         | 
| 853 853 |  | 
| 854 | 
            -
            static VALUE running_in_container() {
         | 
| 854 | 
            +
            static VALUE running_in_container(VALUE self) {
         | 
| 855 855 | 
             
              return appsignal_running_in_container() == 1 ? Qtrue : Qfalse;
         | 
| 856 856 | 
             
            }
         | 
| 857 857 |  | 
    
        data/lib/appsignal/version.rb
    CHANGED