Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release Candidate 1.7.1 #376

Merged
merged 2 commits into from
Jun 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changes to the UKHPI app by version and date

## 1.7.1 - 2023-06-23

- (Jon) Updated the `data_service_api` gem to the latest 1.4.1 patch release
version.
- (Jon) Updated the `json_rails_logger` gem to the latest 1.0.3 patch release
- Also includes minor patch updates for other gems, please see the
`Gemfile.lock` for details.

## 1.7.0 - 2023-06-22

- (Jon) Added `NoMethodError` rescue clause set to `debug` level to reduce
Expand Down
14 changes: 7 additions & 7 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ GEM
ruby_parser (~> 3.5)
htmlentities (4.3.4)
http_accept_language (2.1.1)
i18n (1.12.0)
i18n (1.14.1)
concurrent-ruby (~> 1.0)
js-routes (1.4.14)
railties (>= 4)
Expand All @@ -171,9 +171,9 @@ GEM
activesupport (>= 4)
railties (>= 4)
request_store (~> 1.0)
loofah (2.20.0)
loofah (2.21.3)
crass (~> 1.0.2)
nokogiri (>= 1.5.9)
nokogiri (>= 1.12.0)
m (1.6.0)
method_source (>= 0.6.7)
rake (>= 0.9.2.2)
Expand All @@ -184,7 +184,7 @@ GEM
method_source (1.0.0)
mini_mime (1.1.2)
mini_portile2 (2.8.2)
minitest (5.18.0)
minitest (5.18.1)
minitest-rails (6.1.0)
minitest (~> 5.10)
railties (~> 6.1.0)
Expand All @@ -207,7 +207,7 @@ GEM
public_suffix (4.0.6)
puma (5.6.4)
nio4r (~> 2.0)
racc (1.6.2)
racc (1.7.1)
rack (2.2.7)
rack-proxy (0.7.6)
rack
Expand Down Expand Up @@ -351,11 +351,11 @@ GEM
GEM
remote: https://rubygems.pkg.github.com/epimorphics/
specs:
data_services_api (1.4.0)
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.1)
json_rails_logger (1.0.3)
json
lograge
railties
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 = 0
PATCH = 1
SUFFIX = nil
VERSION = "#{MAJOR}.#{MINOR}.#{PATCH}#{SUFFIX && ".#{SUFFIX}"}"
end