appsignal 4.7.3 → 4.7.4

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: 7682ec1f395ca757127eee5b1741441d5b5b01d54905db260c694a82df918a91
4
- data.tar.gz: 2dff6e6a969f0e4df9ddd07ee8f4a003dad672e99a11d5d3d4bccf759a2d680e
3
+ metadata.gz: a3aae9fc9defc4ed4874d55409dfe981cdb6d9a68c7d589b09820c4dc35afeed
4
+ data.tar.gz: 1db64e25be34b467ca570e99db3c6d73c13b0f2593f176a33d92ed7d963c053f
5
5
  SHA512:
6
- metadata.gz: 6ca296a6c7384ca8d9be98caab897e2fb2887282dbd081065f0629fb37d516869296aa975aad969e50a566468e82596d4b31da26b2bc44b68f902cae5cdf3a23
7
- data.tar.gz: 9c807d8f4bffcfc7a0d4f0ba9b88d9f52f4e9fdd3bde4cfbd88c9e596f08d455250f7f27e6f077d0f5f91a21e41f8241805df094ea91f273e7add2e93d7e544c
6
+ metadata.gz: a7293952a7ba24a9c82ffda0e9b775b302ae0cf1880e43dbb6aa56354ce86b6125113475d6d1a4c9b3d9987d9aec4728bcf2e651e9fe690b880901548825db25
7
+ data.tar.gz: 0ced0ae5a54642d9b450835c133a4ab25f19ffcaa63f612228053c098d4996ad2cb8e0e7a50dc52856e9b942cc386fb67d9007cd5615a8c1bc5e9dfea91b3acc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # AppSignal for Ruby gem Changelog
2
2
 
3
+ ## 4.7.4
4
+
5
+ _Published on 2025-10-02._
6
+
7
+ ### Fixed
8
+
9
+ - Handle transactions without errors in `CodeOwnership` integration. AppSignal will not emit an error log line if a transaction has no error.
10
+
11
+ Thanks @fatkodima for your contribution!
12
+
13
+ (patch [73472382](https://github.com/appsignal/appsignal-ruby/commit/73472382013c74b182fdb782ac958e27ff724b85))
14
+
3
15
  ## 4.7.3
4
16
 
5
17
  _Published on 2025-10-01._
@@ -6,6 +6,8 @@ module Appsignal
6
6
  module CodeOwnershipIntegration
7
7
  class << self
8
8
  def before_complete(transaction, error)
9
+ return unless error
10
+
9
11
  team = ::CodeOwnership.for_backtrace(error.backtrace)
10
12
  transaction.add_tags(:owner => team.name) if team
11
13
  rescue => ex
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Appsignal
4
4
  # @return [String]
5
- VERSION = "4.7.3"
5
+ VERSION = "4.7.4"
6
6
  end
data/sig/appsignal.rbi CHANGED
@@ -8,7 +8,7 @@
8
8
  module Appsignal
9
9
  extend Appsignal::Helpers::Metrics
10
10
  extend Appsignal::Helpers::Instrumentation
11
- VERSION = T.let("4.7.3", T.untyped)
11
+ VERSION = T.let("4.7.4", T.untyped)
12
12
 
13
13
  class << self
14
14
  # The loaded AppSignal configuration.
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.7.3
4
+ version: 4.7.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Beekman