appsignal 4.10.3-java → 4.10.4-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: 5ec6e363600bfa6217c3811159297fb4d22484c208dcc2610a88848ac31cd16f
4
- data.tar.gz: bf8d8ac65009cf0d1d4d72f5e6543028e1251816522d7a5fdd3d9638a717ce1a
3
+ metadata.gz: 3e9130a7fa45f49f8047af34f7fe483456fedef973f9e62ca56bdaad50eb3a1f
4
+ data.tar.gz: f7b4bf9aac46c183ce5ff78387e7a4ab56f85f203efcf2f995701d5424517c7c
5
5
  SHA512:
6
- metadata.gz: 3813b645102746900b4768ad5913509a4f223be9242000db3ca8a87133aa4e38c8301fa692d291c6d6146fe209b52fe0236a9d44faa16436e875e75503f2fb50
7
- data.tar.gz: dbcb1e1affec1bd33584528e00b779e21c4c77e91c48c354477167bf45b76e38c61c32f04a8f1bea58e62e85c992030cde8414f3234e6a28192b3460baa4b050
6
+ metadata.gz: d044269ce96bcbef0e9400ee611b41ee762d529ed0f802451974df77576ad27f46e47465f0f66cceae099a2fa34b361f63267c3182eb351d3b2d31ef108bfcbd
7
+ data.tar.gz: e3040b1ad97a20dbfe94fe80345489a22d8de81c907df61180d5e247553122c92dcd146be3b7b37cb665b6db28d454bf580e1e05345e52a61270da31d6774360
data/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # AppSignal for Ruby gem Changelog
2
2
 
3
+ ## 4.10.4
4
+
5
+ _Published on 2026-09-22._
6
+
7
+ ### Fixed
8
+
9
+ - Start AppSignal before the Rails application's initializers run. Depending on
10
+ the order in which gems were loaded, AppSignal could start after
11
+ `config/initializers`. In those applications `Appsignal.active?` returned
12
+ `false` inside an initializer, errors raised by initializers were not reported,
13
+ and with `config.appsignal.start_at = :after_initialize` the Rails defaults for
14
+ `log_path` and `ignore_actions` were not applied.
15
+
16
+ (patch [523d8458](https://github.com/appsignal/appsignal-ruby/commit/523d845879cfe8cc6306bdc24d51f88ad979f714))
17
+
3
18
  ## 4.10.3
4
19
 
5
20
  _Published on 2026-09-10._
@@ -13,8 +13,10 @@ module Appsignal
13
13
  config.appsignal = ActiveSupport::OrderedOptions.new
14
14
  config.appsignal.start_at = :on_load
15
15
 
16
- # Run after the Rails framework is loaded
17
- initializer "appsignal.configure_rails_initialization" do |app|
16
+ # Runs before `load_config_initializers` so that AppSignal has started
17
+ # when the app's initializers run, and errors they raise are reported.
18
+ initializer "appsignal.configure_rails_initialization",
19
+ :before => :load_config_initializers do |app|
18
20
  Appsignal::Integrations::Railtie.on_load(app)
19
21
  end
20
22
 
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Appsignal
4
4
  # @return [String]
5
- VERSION = "4.10.3"
5
+ VERSION = "4.10.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.10.3", T.untyped)
11
+ VERSION = T.let("4.10.4", T.untyped)
12
12
 
13
13
  class << self
14
14
  # The loaded AppSignal configuration.
metadata CHANGED
@@ -1,16 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appsignal
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.10.3
4
+ version: 4.10.4
5
5
  platform: java
6
6
  authors:
7
7
  - Robert Beekman
8
8
  - Thijs Cadier
9
9
  - Tom de Bruijn
10
- autorequire:
11
10
  bindir: bin
12
11
  cert_chain: []
13
- date: 2026-09-10 00:00:00.000000000 Z
12
+ date: 1980-01-02 00:00:00.000000000 Z
14
13
  dependencies:
15
14
  - !ruby/object:Gem::Dependency
16
15
  name: logger
@@ -338,7 +337,6 @@ metadata:
338
337
  documentation_uri: https://docs.appsignal.com/ruby/
339
338
  homepage_uri: https://docs.appsignal.com/ruby/
340
339
  source_code_uri: https://github.com/appsignal/appsignal-ruby
341
- post_install_message:
342
340
  rdoc_options: []
343
341
  require_paths:
344
342
  - lib
@@ -354,8 +352,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
354
352
  - !ruby/object:Gem::Version
355
353
  version: '0'
356
354
  requirements: []
357
- rubygems_version: 3.5.22
358
- signing_key:
355
+ rubygems_version: 3.6.9
359
356
  specification_version: 4
360
357
  summary: Logs performance and exception data from your app to appsignal.com
361
358
  test_files: []