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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1898de9e58f6078d8371400ef6c2e7d71f80ef444cee4a6256c880f63664badc
4
- data.tar.gz: a67f81c67c9d1077cae2a8f3b0d40f8c344b6f6d9a1cb067f4e4905d255d4c9f
3
+ metadata.gz: 05ad2b9b80e1a2b333edb705217ea1a5b372c735275c042a48051c8a5b1ffb1a
4
+ data.tar.gz: abfeb2be7e98cad19da981bcc54206fad3a6a07308ed5d4ac0b03043c471b716
5
5
  SHA512:
6
- metadata.gz: e6052b48fe35b2c828221866627ecea99da969faaefaf5c95a352bfa673a73500a401088dc58e86501e255b239194d6b01b6f7d9f911313ff4143538551e3b48
7
- data.tar.gz: 95a4cde7460998afa89e76a8008512c0d718fc3fbc44677c0ea405de9dff697c99660b99361355a159aa5ae5c4104c20e169c6fcd55dbf78aef8b61b831f9067
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._
@@ -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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Appsignal
4
- VERSION = "4.5.12"
4
+ VERSION = "4.5.13"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appsignal
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.5.12
4
+ version: 4.5.13
5
5
  platform: java
6
6
  authors:
7
7
  - Robert Beekman