Skip to content

Commit

Permalink
UKHPI: updates ruby version and alpine version
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielCouzens committed Oct 7, 2024
1 parent a5c2da0 commit 58e3644
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.6.6
2.7.8
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changes to the UKHPI app by version and date

## 1.7.6 - 2024-10

- (Dan) Updates ruby version to 2.7.8 and alpine version to 3.16 [GH-455](https://github.com/epimorphics/ukhpi/issues/455)

## 1.7.5 - 2024-09

- (Jon) Moved all mirrored configuration settings from individual environments
Expand Down
26 changes: 14 additions & 12 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
GEM
remote: https://rubygems.org/
remote: https://rubygems.pkg.github.com/epimorphics/
specs:
actioncable (6.1.5)
actionpack (= 6.1.5)
Expand Down Expand Up @@ -83,6 +84,10 @@ GEM
childprocess (4.1.0)
concurrent-ruby (1.2.2)
crass (1.0.6)
data_services_api (1.4.1.1)
faraday_middleware (~> 1.2.0)
json (~> 2.6.1)
yajl-ruby (~> 1.4.1)
docile (1.4.0)
ebnf (2.3.1)
amazing_print (~> 1.4)
Expand Down Expand Up @@ -165,6 +170,10 @@ GEM
railties (>= 4)
json (2.6.3)
json_expressions (0.9.0)
json_rails_logger (1.0.3)
json
lograge
railties
link_header (0.0.8)
lograge (0.12.0)
actionpack (>= 4)
Expand All @@ -183,6 +192,7 @@ GEM
matrix (0.4.2)
method_source (1.0.0)
mini_mime (1.1.2)
mini_portile2 (2.8.7)
minitest (5.18.1)
minitest-rails (6.1.0)
minitest (~> 5.10)
Expand All @@ -195,6 +205,9 @@ GEM
mocha (1.13.0)
multipart-post (2.3.0)
nio4r (2.5.9)
nokogiri (1.13.10)
mini_portile2 (~> 2.8.0)
racc (~> 1.4)
nokogiri (1.13.10-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.13.10-x86_64-linux)
Expand Down Expand Up @@ -351,19 +364,8 @@ GEM
yajl-ruby (1.4.3)
zeitwerk (2.6.8)

GEM
remote: https://rubygems.pkg.github.com/epimorphics/
specs:
data_services_api (1.4.1.1)
faraday_middleware (~> 1.2.0)
json (~> 2.6.1)
yajl-ruby (~> 1.4.1)
json_rails_logger (1.0.3)
json
lograge
railties

PLATFORMS
ruby
x86_64-darwin-21
x86_64-linux

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.PHONY: assets check clean image lint publish realclean run tag test vars

ACCOUNT?=$(shell aws sts get-caller-identity | jq -r .Account)
ALPINE_VERSION?=3.13
ALPINE_VERSION?=3.16
AWS_REGION?=eu-west-1
BUNDLER_VERSION?=$(shell tail -1 Gemfile.lock | tr -d ' ')
ECR?=${ACCOUNT}.dkr.ecr.eu-west-1.amazonaws.com
Expand Down
2 changes: 1 addition & 1 deletion app/lib/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Version
MAJOR = 1
MINOR = 7
PATCH = 5
PATCH = 6
SUFFIX = nil
VERSION = "#{MAJOR}.#{MINOR}.#{PATCH}#{SUFFIX && ".#{SUFFIX}"}"
end

0 comments on commit 58e3644

Please sign in to comment.