Skip to content

Commit

Permalink
feat: Add faraday 2.0 to test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
jgraichen committed Feb 29, 2024
1 parent 67178b4 commit 18ec6d4
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
suite:
- core
- faraday-1.0
- faraday-2.0
- msgr
- rack
- rails-6.1
Expand All @@ -36,6 +37,9 @@ jobs:
- suite: faraday-1.0
spec: --tag probe:faraday
gemfile: gemfiles/faraday_10.gemfile
- suite: faraday-2.0
spec: --tag probe:faraday
gemfile: gemfiles/faraday_20.gemfile
- suite: msgr
spec: --tag probe:msgr
gemfile: gemfiles/core.gemfile
Expand Down
8 changes: 8 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@ appraise 'faraday-10' do
end
end

appraise 'faraday-20' do
remove_gem 'rubocop'

group :test do
gem 'faraday', '~> 2.0'
end
end

appraise 'rails-71' do
remove_gem 'rubocop'

Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- Dropped support for Sidekiq < 6.0
- Dropped support for Faraday < 1.0

### Added

- Added Faraday 2.0 to test matrix

## [1.17.0] - 2023-11-28

### Added
Expand Down
28 changes: 28 additions & 0 deletions gemfiles/faraday_20.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "rake", "~> 13.0"

group :test do
gem "rspec", "~> 3.6"
gem "timecop", "~> 0.9.1"
gem "faraday", "~> 2.0"
gem "msgr"
gem "rails"
gem "redis"
gem "redis-client"
gem "restify"
gem "sidekiq"
gem "sqlite3"
gem "webmock"
end

group :development do
gem "appraisal"
gem "rake-release", "~> 1.3.0"
gem "pry", require: false
gem "pry-byebug", require: false
end

gemspec path: "../"

0 comments on commit 18ec6d4

Please sign in to comment.