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
15 changes: 6 additions & 9 deletions .github/workflows/specs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,20 +45,17 @@ jobs:
name: Rails Specs
strategy:
matrix:
rails: ['7.0', '7.1', '7.2', '8.0']
rails: ['7.2', '8.0', '8.1']
include:
- rails: '7.0'
ruby: '3.1'
gemfile: gemfiles/rails_7_0.gemfile
- rails: '7.1'
ruby: '3.2'
gemfile: gemfiles/rails_7_1.gemfile
- rails: '7.2'
ruby: '3.3'
ruby: '3.2'
gemfile: gemfiles/rails_7_2.gemfile
- rails: '8.0'
ruby: '3.4'
ruby: '3.3'
gemfile: gemfiles/rails_8_0.gemfile
- rails: '8.1'
ruby: '3.4'
gemfile: gemfiles/rails_8_1.gemfile
runs-on: ubuntu-latest
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
Expand Down
18 changes: 6 additions & 12 deletions Appraisals
Original file line number Diff line number Diff line change
@@ -1,15 +1,3 @@
appraise 'rails_7_0' do
group :test do
gem 'activejob', '~> 7.0'
end
end

appraise 'rails_7_1' do
group :test do
gem 'activejob', '~> 7.1'
end
end

appraise 'rails_7_2' do
group :test do
gem 'activejob', '~> 7.2'
Expand All @@ -21,3 +9,9 @@ appraise 'rails_8_0' do
gem 'activejob', '~> 8.0'
end
end

appraise 'rails_8_1' do
group :test do
gem 'activejob', '~> 8.1'
end
end
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
## [7.0.0] - Unreleased
- Breaking: Remove support for Rails versions older than 7.2
- Rails 7.0 and 7.1 have reached end-of-life and are no longer supported
- Supported versions: Rails 7.2, 8.0, and 8.1
- Users on older Rails versions should upgrade or remain on Shoryuken 6.x

- Enhancement: Replace Concurrent::AtomicFixnum with pure Ruby AtomicCounter
- Removes external dependency on concurrent-ruby for atomic fixnum operations
- Introduces Shoryuken::Helpers::AtomicCounter as a thread-safe alternative using Mutex
Expand Down
19 changes: 0 additions & 19 deletions gemfiles/rails_7_0.gemfile

This file was deleted.

19 changes: 0 additions & 19 deletions gemfiles/rails_7_1.gemfile

This file was deleted.

20 changes: 10 additions & 10 deletions gemfiles/rails_7_2.gemfile
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# This file was generated by Appraisal

source 'https://rubygems.org'
source "https://rubygems.org"

group :test do
gem 'activejob', '~> 7.2'
gem 'httparty'
gem 'multi_xml'
gem 'simplecov'
gem 'warning'
gem "activejob", "~> 7.2"
gem "httparty"
gem "multi_xml"
gem "simplecov"
gem "warning"
end

group :development do
gem 'appraisal', git: 'https://github.com/thoughtbot/appraisal.git'
gem 'pry-byebug'
gem 'rubocop'
gem "appraisal", git: "https://github.com/thoughtbot/appraisal.git"
gem "pry-byebug"
gem "rubocop"
end

gemspec path: '../'
gemspec path: "../"
20 changes: 10 additions & 10 deletions gemfiles/rails_8_0.gemfile
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# This file was generated by Appraisal

source 'https://rubygems.org'
source "https://rubygems.org"

group :test do
gem 'activejob', '~> 8.0'
gem 'httparty'
gem 'multi_xml'
gem 'simplecov'
gem 'warning'
gem "activejob", "~> 8.0"
gem "httparty"
gem "multi_xml"
gem "simplecov"
gem "warning"
end

group :development do
gem 'appraisal', git: 'https://github.com/thoughtbot/appraisal.git'
gem 'pry-byebug'
gem 'rubocop'
gem "appraisal", git: "https://github.com/thoughtbot/appraisal.git"
gem "pry-byebug"
gem "rubocop"
end

gemspec path: '../'
gemspec path: "../"
19 changes: 19 additions & 0 deletions gemfiles/rails_8_1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# This file was generated by Appraisal

source "https://rubygems.org"

group :test do
gem "activejob", "~> 8.1"
gem "httparty"
gem "multi_xml"
gem "simplecov"
gem "warning"
end

group :development do
gem "appraisal", git: "https://github.com/thoughtbot/appraisal.git"
gem "pry-byebug"
gem "rubocop"
end

gemspec path: "../"