From 018cdbeecac44cee8c774d731bb9d959231dbebc Mon Sep 17 00:00:00 2001 From: "Jon R. Humphrey" Date: Mon, 27 Nov 2023 11:07:02 +0000 Subject: [PATCH 1/3] build: update `lr_common_styles` gem version Updated the `lr_common_styles` gem to the latest 1.9.3 patch release. --- Gemfile | 4 ++-- Gemfile.lock | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Gemfile b/Gemfile index 6390177..8528736 100644 --- a/Gemfile +++ b/Gemfile @@ -74,11 +74,11 @@ end # TODO: While running the rails app locally for testing you can set gems to your local path # ! These "local" paths do not work with a docker image - use the repo instead # gem 'json_rails_logger', '~> 1.0.0', path: '~/Epimorphics/shared/json-rails-logger/' -# gem 'lr_common_styles', '~> 1.9.2', path: '~/Epimorphics/clients/land-registry/projects/lr_common_styles/' +# gem 'lr_common_styles', '~> 1.9.3', path: '~/Epimorphics/clients/land-registry/projects/lr_common_styles/' # rubocop:enable Layout/LineLength # TODO: In production you want to set this to the gem from the epimorphics package repo source 'https://rubygems.pkg.github.com/epimorphics' do gem 'json_rails_logger', '~> 1.0.0' - gem 'lr_common_styles', '~> 1.9.2' + gem 'lr_common_styles', '~> 1.9.3' end diff --git a/Gemfile.lock b/Gemfile.lock index ab7a213..1b02430 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -364,7 +364,7 @@ GEM json lograge railties - lr_common_styles (1.9.2) + lr_common_styles (1.9.3) bootstrap-sass (~> 3.4.0) font-awesome-rails (~> 4.7.0.1) govuk_elements_rails (~> 2.0.0) @@ -402,7 +402,7 @@ DEPENDENCIES json_rails_logger (~> 1.0.0)! leaflet-rails libv8-node (>= 16.10.0.0) - lr_common_styles (~> 1.9.2)! + lr_common_styles (~> 1.9.3)! minitest-rails-capybara minitest-reporters minitest-spec-rails From 7c944cc9bf54521fb2c748619c11274b86d7ac72 Mon Sep 17 00:00:00 2001 From: "Jon R. Humphrey" Date: Mon, 27 Nov 2023 11:07:46 +0000 Subject: [PATCH 2/3] Incremented version cadence of app from `v1.5.1` to `v1.5.2` to reflect the changes made to the included gem --- app/lib/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/version.rb b/app/lib/version.rb index cc3e0f1..3fc1fa7 100644 --- a/app/lib/version.rb +++ b/app/lib/version.rb @@ -3,7 +3,7 @@ module Version MAJOR = 1 MINOR = 5 - PATCH = 1 + PATCH = 2 SUFFIX = nil VERSION = "#{MAJOR}.#{MINOR}.#{PATCH}#{SUFFIX && ".#{SUFFIX}"}" end From 985fb6f5a6a2cca5bffeffa5664c1724a52d7fc2 Mon Sep 17 00:00:00 2001 From: "Jon R. Humphrey" Date: Mon, 27 Nov 2023 11:07:59 +0000 Subject: [PATCH 3/3] docs: Updated CHANGELOG --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8cc5cdb..9b05aad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Standard Reports UI: change log +## 1.5.2 - 2023-11-27 + +- (Jon) Updated the `lr_common_styles` gem to the latest 1.9.3 patch release. + ## 1.5.1 - 2023-11-23 - (Jon) Updated the `lr_common_styles` gem to the latest 1.9.2 patch release.