Skip to content
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Enhanced action buttons responsiveness
- Streamlined Makefile with inline help
- Cleaned up startup log output
- Resolved open-ended gem versioning warnings by setting explicit minimum
versions for Faraday and its middleware dependencies.
- Updates Faraday follow_redirects to 0.4.0

### Removed

Expand Down
10 changes: 6 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,12 @@ gem 'haml-rails'
gem 'rubocop'
gem 'rubocop-rails'

gem 'faraday', '~> 2.13'
gem 'faraday-encoding', '>= 0.0.6'
gem 'faraday-follow_redirects', '>= 0.3.0'
gem 'faraday-retry', '>= 2.0'
# Faraday v2 requires individual middlewares to be specified
# Resolve open-ended gem versioning warnings by setting explicit version minimums
gem 'faraday', '~> 2.13', '>= 2.13.0'
gem 'faraday-encoding', '~> 0.0', '>= 0.0.6'
gem 'faraday-follow_redirects', '~> 0.3', '>= 0.3.0'
gem 'faraday-retry', '~> 2.0', '>= 2.0'

gem 'font-awesome-rails'
gem 'get_process_mem'
Expand Down
20 changes: 10 additions & 10 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ GEM
logger
faraday-encoding (0.0.6)
faraday
faraday-follow_redirects (0.3.0)
faraday-follow_redirects (0.4.0)
faraday (>= 1, < 3)
faraday-net_http (3.4.1)
net-http (>= 0.5.0)
Expand Down Expand Up @@ -514,11 +514,11 @@ GEM
GEM
remote: https://rubygems.pkg.github.com/epimorphics/
specs:
data_services_api (1.6.0)
faraday (~> 2.13)
faraday-encoding (~> 0.0.6)
faraday-follow_redirects (~> 0.3.0)
faraday-retry (~> 2.0)
data_services_api (1.6.1)
faraday (~> 2.13, >= 2.13.0)
faraday-encoding (~> 0.0, >= 0.0.6)
faraday-follow_redirects (~> 0.4, >= 0.4.0)
faraday-retry (~> 2.0, >= 2.0)
json (~> 2.0)
yajl-ruby (~> 1.4)
json_rails_logger (2.2.0)
Expand Down Expand Up @@ -559,10 +559,10 @@ DEPENDENCIES
data_services_api!
dotenv
execjs
faraday (~> 2.13)
faraday-encoding (>= 0.0.6)
faraday-follow_redirects (>= 0.3.0)
faraday-retry (>= 2.0)
faraday (~> 2.13, >= 2.13.0)
faraday-encoding (~> 0.0, >= 0.0.6)
faraday-follow_redirects (~> 0.3, >= 0.3.0)
faraday-retry (~> 2.0, >= 2.0)
flamegraph
font-awesome-rails
get_process_mem
Expand Down