appsignal 4.5.8 → 4.5.9
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/lib/appsignal/rack/event_handler.rb +4 -2
- data/lib/appsignal/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: 310b4be83259ef19477bbeebd217658857a580b8c4e0da5efe55c81371033004
|
4
|
+
data.tar.gz: 33edb8be5942b17f3b503e56bebd3bb7e981a0d8959119641c84540d696ea06f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fc7f5a860430c5a5eb8fbb96621cac0f7b6db67aa05785d874b7d1079335a538e152cdab26694a624174f9664ee0b432cca70fade7afc7a001e8ce6f01818e9b
|
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
|
-
|
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
|
-
|
142
|
+
transaction.complete
|
143
|
+
Appsignal::Transaction.clear_current_transaction!
|
142
144
|
end
|
143
145
|
|
144
146
|
private
|
data/lib/appsignal/version.rb
CHANGED
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.
|
4
|
+
version: 4.5.9
|
5
5
|
platform: ruby
|
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-
|
13
|
+
date: 2025-04-09 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: logger
|