govuk_app_config 4.2.0 → 4.4.1
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 +13 -0
- data/govuk_app_config.gemspec +1 -0
- data/lib/govuk_app_config/govuk_content_security_policy.rb +1 -7
- data/lib/govuk_app_config/govuk_prometheus_exporter.rb +14 -0
- data/lib/govuk_app_config/version.rb +1 -1
- data/lib/govuk_app_config.rb +1 -0
- metadata +17 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eb506313e290785cf67cdecc360b8c6ba266094d05b1c2f9dcf855d57f5cb91f
|
4
|
+
data.tar.gz: a35c48a545dcb92963700ef26d2bad0452f9d7aec9f431788d7552a5c26984ac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8cfebe4bfa7484068b432ee2629e65950f22ddba009e004dac325aa453301f40506f5f8194deb9de61a6b610b5d2ceb1945d875ac16230691737f3d6fbb7f2f3
|
7
|
+
data.tar.gz: eac23452670a9b4cee3c613b9e7f9914dd3a4fa5887875add19f92c78676d3edac499e3c31f6f4eeed4d6b18e9f0ce514d1ff4acc8184f52b2c9480b452e311f
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,16 @@
|
|
1
|
+
# 4.4.1
|
2
|
+
|
3
|
+
- Fix issue where GovukPrometheusExporter module prevented the gem to load due to missing constant "PrometheusExporter" ([#224](https://github.com/alphagov/govuk_app_config/pull/224)).
|
4
|
+
- Lazy load the prometheus_exporter dependency for only apps that use GovukPrometheusExporter ([#224](https://github.com/alphagov/govuk_app_config/pull/224)).
|
5
|
+
|
6
|
+
# 4.4.0
|
7
|
+
|
8
|
+
- Add GovukPrometheusModule, to allow for export of prometheus metrics ([#223](https://github.com/alphagov/govuk_app_config/pull/223)).
|
9
|
+
|
10
|
+
# 4.3.0
|
11
|
+
|
12
|
+
- Remove Speedcurve's LUX from the connect-src policy ([#216](https://github.com/alphagov/govuk_app_config/pull/216)).
|
13
|
+
|
1
14
|
# 4.2.0
|
2
15
|
|
3
16
|
- Add pluralisation rules for Azerbaijani, Persian, Georgian, and Turkish. ([#219](https://github.com/alphagov/govuk_app_config/pull/219))
|
data/govuk_app_config.gemspec
CHANGED
@@ -21,6 +21,7 @@ Gem::Specification.new do |spec|
|
|
21
21
|
spec.require_paths = %w[lib]
|
22
22
|
|
23
23
|
spec.add_dependency "logstasher", ">= 1.2.2", "< 2.2.0"
|
24
|
+
spec.add_dependency "prometheus_exporter", "~> 2.0.2"
|
24
25
|
spec.add_dependency "puma", "~> 5.0"
|
25
26
|
spec.add_dependency "sentry-rails", "~> 4.5.0"
|
26
27
|
spec.add_dependency "sentry-ruby", "~> 4.5.0"
|
@@ -78,13 +78,7 @@ module GovukContentSecurityPolicy
|
|
78
78
|
# Allow JSON call to klick2contact - HMPO web chat provider
|
79
79
|
"hmpowebchat.klick2contact.com",
|
80
80
|
# Allow connecting to Verify to check whether the user is logged in
|
81
|
-
"www.signin.service.gov.uk"
|
82
|
-
# Allow connection to Speedcurve's CDN for LUX - used for
|
83
|
-
# real user metrics on GOV.UK. This loads using an image
|
84
|
-
# (see image policy), but returns a JavaScript file -
|
85
|
-
# which is why this has to be added to the `connect-src`
|
86
|
-
# policy as well.
|
87
|
-
"lux.speedcurve.com"
|
81
|
+
"www.signin.service.gov.uk"
|
88
82
|
|
89
83
|
# Disallow all <object>, <embed>, and <applet> elements
|
90
84
|
#
|
@@ -0,0 +1,14 @@
|
|
1
|
+
module GovukPrometheusExporter
|
2
|
+
def self.configure
|
3
|
+
unless Rails.env == "test"
|
4
|
+
require "prometheus_exporter"
|
5
|
+
require "prometheus_exporter/server"
|
6
|
+
require "prometheus_exporter/middleware"
|
7
|
+
|
8
|
+
server = PrometheusExporter::Server::WebServer.new bind: "localhost", port: 9394
|
9
|
+
server.start
|
10
|
+
|
11
|
+
Rails.application.middleware.unshift PrometheusExporter::Middleware
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
data/lib/govuk_app_config.rb
CHANGED
@@ -8,6 +8,7 @@ require "govuk_app_config/govuk_i18n"
|
|
8
8
|
require "govuk_app_config/govuk_unicorn"
|
9
9
|
|
10
10
|
if defined?(Rails)
|
11
|
+
require "govuk_app_config/govuk_prometheus_exporter"
|
11
12
|
require "govuk_app_config/govuk_logging"
|
12
13
|
require "govuk_app_config/govuk_content_security_policy"
|
13
14
|
require "govuk_app_config/railtie"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: govuk_app_config
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- GOV.UK Dev
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-03-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: logstasher
|
@@ -30,6 +30,20 @@ dependencies:
|
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.2.0
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: prometheus_exporter
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: 2.0.2
|
40
|
+
type: :runtime
|
41
|
+
prerelease: false
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - "~>"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: 2.0.2
|
33
47
|
- !ruby/object:Gem::Dependency
|
34
48
|
name: puma
|
35
49
|
requirement: !ruby/object:Gem::Requirement
|
@@ -268,6 +282,7 @@ files:
|
|
268
282
|
- lib/govuk_app_config/govuk_healthcheck/sidekiq_redis.rb
|
269
283
|
- lib/govuk_app_config/govuk_i18n.rb
|
270
284
|
- lib/govuk_app_config/govuk_logging.rb
|
285
|
+
- lib/govuk_app_config/govuk_prometheus_exporter.rb
|
271
286
|
- lib/govuk_app_config/govuk_puma.rb
|
272
287
|
- lib/govuk_app_config/govuk_statsd.rb
|
273
288
|
- lib/govuk_app_config/govuk_unicorn.rb
|