From f2a3faa976d813f2e046e2aee013ce887f93831b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 13:02:49 +0000 Subject: [PATCH] Bump dfe-analytics from v1.15.1 to v1.15.3 (#10170) Bumps [dfe-analytics](https://github.com/DFE-Digital/dfe-analytics) from v1.15.1 to v1.15.3.
Changelog

Sourced from dfe-analytics's changelog.

v1.15.3 (2024-12-10)

Full Changelog

Merged pull requests:

v1.15.2 (2024-12-03)

Full Changelog

Fixed bugs:

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
--------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: David Young Co-authored-by: Daniel Dye --- Gemfile | 2 +- Gemfile.lock | 14 ++++++++------ spec/services/adviser/tracking_spec.rb | 2 +- spec/services/provider_interface/tracking_spec.rb | 2 +- 4 files changed, 11 insertions(+), 9 deletions(-) diff --git a/Gemfile b/Gemfile index f1a90a22826..b1584aaebea 100644 --- a/Gemfile +++ b/Gemfile @@ -149,7 +149,7 @@ gem 'colorize' gem 'rack-mini-profiler', require: ['prepend_net_http_patch'] # BigQuery -gem 'dfe-analytics', github: 'DFE-Digital/dfe-analytics', tag: 'v1.15.1' +gem 'dfe-analytics', github: 'DFE-Digital/dfe-analytics', tag: 'v1.15.3' # Azure Blob Storage gem 'azure-blob' diff --git a/Gemfile.lock b/Gemfile.lock index 51c85d87fa3..469adb62ce6 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,9 +1,9 @@ GIT remote: https://github.com/DFE-Digital/dfe-analytics.git - revision: 7618b23697e91ab1ababee5234faaa260f6c873e - tag: v1.15.1 + revision: 322a89542ae675e2e27b404ef9b3689966cb75c3 + tag: v1.15.3 specs: - dfe-analytics (1.15.1) + dfe-analytics (1.15.3) google-cloud-bigquery (~> 1.38) httparty (~> 0.21) multi_xml (~> 0.6.0) @@ -300,7 +300,7 @@ GEM csv (>= 3.0.0) globalid (1.2.1) activesupport (>= 6.1) - google-apis-bigquery_v2 (0.81.0) + google-apis-bigquery_v2 (0.82.0) google-apis-core (>= 0.15.0, < 2.a) google-apis-core (0.15.1) addressable (~> 2.5, >= 2.5.1) @@ -324,9 +324,11 @@ GEM google-cloud-env (2.2.1) faraday (>= 1.0, < 3.a) google-cloud-errors (1.4.0) - googleauth (1.11.2) + google-logging-utils (0.1.0) + googleauth (1.12.0) faraday (>= 1.0, < 3.a) - google-cloud-env (~> 2.1) + google-cloud-env (~> 2.2) + google-logging-utils (~> 0.1) jwt (>= 1.4, < 3.0) multi_json (~> 1.11) os (>= 0.9, < 2.0) diff --git a/spec/services/adviser/tracking_spec.rb b/spec/services/adviser/tracking_spec.rb index c54c8730adb..f0d36713501 100644 --- a/spec/services/adviser/tracking_spec.rb +++ b/spec/services/adviser/tracking_spec.rb @@ -10,7 +10,7 @@ original_fullpath: '/path', query_string: nil, referer: nil, - remote_ip: '1.2.3.4') + headers: { 'X-REAL-IP' => '1.2.3.4' }) end subject(:tracker) { described_class.new(current_user_double, request_double) } diff --git a/spec/services/provider_interface/tracking_spec.rb b/spec/services/provider_interface/tracking_spec.rb index ead26d05017..1e37f86bbf8 100644 --- a/spec/services/provider_interface/tracking_spec.rb +++ b/spec/services/provider_interface/tracking_spec.rb @@ -10,7 +10,7 @@ original_fullpath: '/path', query_string: nil, referer: nil, - remote_ip: '1.2.3.4') + headers: { 'X-REAL-IP' => '1.2.3.4' }) end subject(:tracker) { described_class.new(current_user_double, request_double) }