govuk_app_config 9.23.2 → 9.23.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: c38ac458e8f9a487fe3474b2eea286497051e62618fb8ca9d90d52e82f60fc41
4
- data.tar.gz: fbe86aba2f645474a17377768f18c7a127bf44a6de23d7e3855bf31b8aac7345
3
+ metadata.gz: 78b6837fa9730e50c5df234823107113d731274a77e3777248ecac7478344b9e
4
+ data.tar.gz: 68cfd2998b7400a374ae1dea4155977f230e142fc8f7bcbec48e55d52482445f
5
5
  SHA512:
6
- metadata.gz: 1f01217c32079264ebdb686615893131d5f6d8acc164f1975bc5702fff6f39691f757b35382ec72460bf43f5e1188ca8722b3c2e6599dcf589b7c0ccd90fa4cf
7
- data.tar.gz: 1b3e22b4ca8c36caf1a41576e68cd9a5984553244866b49c5750728736fe9039d2b09dc986317a770c7c5cf01597c0f3207ec344e23c7e40a1b92d2a0737ab1e
6
+ metadata.gz: 7ae3bc0425f222014cc9bdf0013ef734a40c1671d94945f55f443d1238df1eca6a976adb9f993a4a73fae2c7ec58738bbeec7ea8c25c0d67e818b9adff8779ca
7
+ data.tar.gz: 3fc1e79bac27a99c9fe11f522661ec41384c89779c7ba3417a02e1a2354dc2fb3f1a18c0cedb06a2ab501bbb7f844a96cb68ab096cad88df478ce8b60979330a
@@ -38,7 +38,7 @@ jobs:
38
38
  - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
39
39
  with:
40
40
  ref: ${{ inputs.ref || github.ref }}
41
- - uses: ruby/setup-ruby@4fc31e1c823882afd7ef55985266a526c589de90 # v1.282.0
41
+ - uses: ruby/setup-ruby@80740b3b13bf9857e28854481ca95a84e78a2bdf # v1.284.0
42
42
  with:
43
43
  ruby-version: ${{ matrix.ruby }}
44
44
  bundler-cache: true
data/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ # 9.23.4
2
+
3
+ * Remove Slimmer::IntermittentRetrievalError and Slimmer::SourceWrapperNotFoundError from excluded exceptions now that slimmer is retired.
4
+
5
+
6
+ # 9.23.3
7
+
8
+ * Fix crash on boot for Rails 8.1 apps by delaying `GovukJsonLogging` configuration to `after_initialize`. This ensures it runs after Logstasher is initialized.
9
+
1
10
  # 9.23.2
2
11
 
3
12
  * Allow sentry-ruby 6.x
@@ -44,8 +44,6 @@ module GovukError
44
44
  "Mongoid::Errors::DocumentNotFound",
45
45
  "Puma::HttpParserError",
46
46
  "Sinatra::NotFound",
47
- "Slimmer::IntermittentRetrievalError",
48
- "Slimmer::SourceWrapperNotFoundError",
49
47
  "Sidekiq::JobRetry::Skip",
50
48
  "Sanitiser::Strategy::SanitisingError",
51
49
  "SignalException",
@@ -31,11 +31,8 @@ module GovukAppConfig
31
31
  GovukTimezone.configure(app.config)
32
32
  end
33
33
 
34
- config.before_initialize do
35
- GovukJsonLogging.configure if ENV["GOVUK_RAILS_JSON_LOGGING"]
36
- end
37
-
38
34
  config.after_initialize do
35
+ GovukJsonLogging.configure if ENV["GOVUK_RAILS_JSON_LOGGING"]
39
36
  GovukError.configure unless GovukError.is_configured?
40
37
  end
41
38
  end
@@ -1,3 +1,3 @@
1
1
  module GovukAppConfig
2
- VERSION = "9.23.2".freeze
2
+ VERSION = "9.23.4".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: govuk_app_config
3
3
  version: !ruby/object:Gem::Version
4
- version: 9.23.2
4
+ version: 9.23.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - GOV.UK Dev