appsignal 4.5.8-java → 4.5.9-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: 6ecc706edb88f6b60fd226d388ef36ccb4d0a3cb8b3cbf98a8eaca1aeace9b22
4
- data.tar.gz: eb18c6e7c352ab0e5e44f739190df8a2c671212b97133311070633944597b63f
3
+ metadata.gz: afba726364437c4a0c03e26e709467a9270fad67cca30667d58980c9b54cd39e
4
+ data.tar.gz: 33edb8be5942b17f3b503e56bebd3bb7e981a0d8959119641c84540d696ea06f
5
5
  SHA512:
6
- metadata.gz: b77daa7a8e0b80534be9a721cb9cca2f16843e9bef86151345114e66303aaff08ea0e8f94e6314c12384bd17a2e4a3faf50a230f5ef52349c54fb3767d0b7755
7
- data.tar.gz: 18efa45cf4d42fd8faacaf5cec5ec93e76d41773d83e9e077a6d4528aeb5019a05ce41b35b1e88e3449ccd8635ce27045c8cca49d46077327d6490e3e6dc31d4
6
+ metadata.gz: 87c13de92021f0a075fffe3402cb358a2ef9998401bc25af5bee2c2a7bab6f3b7925899848951d3f87dca14071a18ab4673cca96d872c357c165cbb273a5e09d
7
+ data.tar.gz: fd964bc1242b0dbade63d7c10dd00f7e2e7cad4b000c1acf8134ed8f9b17a69bd0205456f9bc18a353874112b34bdd216ed6024bae5b186d59ef38a0bf1e507c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # AppSignal for Ruby gem Changelog
2
2
 
3
+ ## 4.5.9
4
+
5
+ _Published on 2025-04-09._
6
+
7
+ ### Fixed
8
+
9
+ - Ensure request transactions are always closed in the `Rack::EventHandler`. A problem with Fibers changing during a request would cause transactions transactions to be left open and the data from requests to not be sent to our servers. (patch [52a72395](https://github.com/appsignal/appsignal-ruby/commit/52a72395b99a44d451fdc4026acfeb0cc2a5c23b))
10
+
3
11
  ## 4.5.8
4
12
 
5
13
  _Published on 2025-04-04._
@@ -82,7 +82,8 @@ module Appsignal
82
82
  # just a fallback if that doesn't get called.
83
83
  #
84
84
  # One such scenario is when a Puma "lowlevel_error" occurs.
85
- Appsignal::Transaction.complete_current!
85
+ transaction.complete
86
+ Appsignal::Transaction.clear_current_transaction!
86
87
  end
87
88
  end
88
89
  end
@@ -138,7 +139,8 @@ module Appsignal
138
139
 
139
140
  # Make sure the current transaction is always closed when the request
140
141
  # is finished
141
- Appsignal::Transaction.complete_current!
142
+ transaction.complete
143
+ Appsignal::Transaction.clear_current_transaction!
142
144
  end
143
145
 
144
146
  private
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Appsignal
4
- VERSION = "4.5.8"
4
+ VERSION = "4.5.9"
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.8
4
+ version: 4.5.9
5
5
  platform: java
6
6
  authors:
7
7
  - Robert Beekman
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2025-04-04 00:00:00.000000000 Z
13
+ date: 2025-04-09 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: logger