govuk_app_config 4.0.0.pre.4 → 4.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +18 -1
- data/lib/govuk_app_config/govuk_content_security_policy.rb +7 -1
- data/lib/govuk_app_config/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f8077ef6fb7147f51cfa723573145d8552deccc046e51fb7fa5870517b44c404
|
4
|
+
data.tar.gz: f172b22ff57d9a7c86a2a6cd9d25b5f27a5f207e714e82f40e031d3ba979aadf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 59bf46da65446015dd8521f505f01af02f04149490f8d653e6e3436fe9512a920637211054a3e6cfc75cc66f15e81036631a9921410b2226f3d5489cf6e65182
|
7
|
+
data.tar.gz: f70c89f913ead21b565f92a6150958b88469da6585166077c3e112cd60444377e5593d56f8d9881379e24e859406741668aad545a046c4d48744f6bbc08d6820
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,12 @@
|
|
1
|
+
# 4.0.0
|
2
|
+
|
3
|
+
- BREAKING: replaces deprecated `sentry-raven` with `sentry-ruby` and `sentry-rails`. Follow the **[migration guide](https://docs.sentry.io/platforms/ruby/migration/)** before upgrading to this version of govuk_app_config to ensure full compatibility with the new gems.
|
4
|
+
- BREAKING: `GovukError.configure` can only be called once, and non-Rails apps will have to manually call `GovukError.configure` in order to initialise Sentry.
|
5
|
+
- BREAKING: apps will no longer increment the `error_reports_failed` statsd if events fail to get sent to Sentry.
|
6
|
+
- BREAKING: the behaviour of `before_send` has changed, and the `should_capture` method is deprecated.
|
7
|
+
- See pre-release notes below for details.
|
8
|
+
- PR: [#212](https://github.com/alphagov/govuk_app_config/pull/212)
|
9
|
+
|
1
10
|
# 4.0.0.pre.4
|
2
11
|
|
3
12
|
- Fix Sentry client initialisation ([#205](https://github.com/alphagov/govuk_app_config/pull/205)).
|
@@ -16,9 +25,17 @@
|
|
16
25
|
# 4.0.0.pre.1
|
17
26
|
|
18
27
|
- BREAKING: upgrades Sentry gem from `sentry-raven` to `sentry-ruby` ([#199](https://github.com/alphagov/govuk_app_config/pull/199)). There is a **[migration guide](https://docs.sentry.io/platforms/ruby/migration/)** you should follow before upgrading to this version of govuk_app_config.
|
19
|
-
- This release also fixes the `data_sync_excluded_exceptions` behaviour that
|
28
|
+
- This release also fixes the `data_sync_excluded_exceptions` behaviour that was broken in v3.1.0 (later fixed in v3.3.0, which was released after 4.0.0.pre.1).
|
20
29
|
- Released as a pre-release to identify and fix any problems before a wider rollout.
|
21
30
|
|
31
|
+
# 3.3.0
|
32
|
+
|
33
|
+
- Revert the `should_capture`/`before_send` consolidation introduced in 3.1.0. This fixes the `data_sync_excluded_exceptions` behaviour that has been broken since v3.1.0. ([#211](https://github.com/alphagov/govuk_app_config/pull/211))
|
34
|
+
|
35
|
+
# 3.2.0
|
36
|
+
|
37
|
+
- Add Speedcurve's LUX to connect-src policy ([#206](https://github.com/alphagov/govuk_app_config/pull/206))
|
38
|
+
|
22
39
|
# 3.1.1
|
23
40
|
|
24
41
|
- Fix the new before_send behaviour & tests, and add documentation ([#197](https://github.com/alphagov/govuk_app_config/pull/197))
|
@@ -78,7 +78,13 @@ module GovukContentSecurityPolicy
|
|
78
78
|
# Allow JSON call to klick2contact - HMPO web chat provider
|
79
79
|
"gov.klick2contact.com",
|
80
80
|
# Allow connecting to Verify to check whether the user is logged in
|
81
|
-
"www.signin.service.gov.uk"
|
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"
|
82
88
|
|
83
89
|
# Disallow all <object>, <embed>, and <applet> elements
|
84
90
|
#
|
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.0.0
|
4
|
+
version: 4.0.0
|
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: 2021-
|
11
|
+
date: 2021-07-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: logstasher
|
@@ -274,9 +274,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
274
274
|
version: '2.6'
|
275
275
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
276
276
|
requirements:
|
277
|
-
- - "
|
277
|
+
- - ">="
|
278
278
|
- !ruby/object:Gem::Version
|
279
|
-
version:
|
279
|
+
version: '0'
|
280
280
|
requirements: []
|
281
281
|
rubygems_version: 3.0.3
|
282
282
|
signing_key:
|