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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
with:
ruby-version: 3.3
bundler-cache: true
rubygems: '3.6.9'
rubygems: '3.7.2'

- name: Switch to SSH remotes for the Git repository
run: git-ssh-remotes
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fail-fast: false
matrix:
ruby: ['3.3', '3.4', '4.0']
rails: ['7.2', '8.0', '8.1']
rails: ['8.0', '8.1']
env:
BUNDLE_GEMFILE: 'gemfiles/rails_${{ matrix.rails }}.gemfile'
steps:
Expand All @@ -36,7 +36,7 @@ jobs:
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
rubygems: '3.6.9'
rubygems: '3.7.2'

- name: Run the gem tests
run: make test
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ AllCops:
SuggestExtensions: false
DisplayCopNames: true
TargetRubyVersion: 3.3
TargetRailsVersion: 7.2
TargetRailsVersion: 8.0
Exclude:
- bin/**/*
- vendor/**/*
Expand Down
6 changes: 0 additions & 6 deletions Appraisals
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
# frozen_string_literal: true

appraise 'rails-7.2' do
gem 'activejob', '~> 7.2.0'
gem 'activerecord', '~> 7.2.0'
gem 'activesupport', '~> 7.2.0'
end

appraise 'rails-8.0' do
gem 'activejob', '~> 8.0.0'
gem 'activerecord', '~> 8.0.0'
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### next

* TODO: Replace this bullet point with an actual description of a change.
* Dropped Rails 7.1 support (#22)

### 2.6.0 (19 January 2026)

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM hausgold/ruby:3.3
LABEL org.opencontainers.image.authors="[email protected]"

# Update system gem
RUN gem update --system '3.4.22'
RUN gem update --system '3.7.2'

# Install system packages and the latest bundler
RUN apt-get update -yqqq && \
Expand All @@ -11,7 +11,7 @@ RUN apt-get update -yqqq && \
ca-certificates \
bash-completion inotify-tools && \
echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen && /usr/sbin/locale-gen && \
gem install bundler -v '~> 2.6.9' --no-document --no-prerelease
gem install bundler -v '~> 2.7.2' --no-document --no-prerelease

# Add new web user
RUN mkdir /app && \
Expand Down
2 changes: 1 addition & 1 deletion countless.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Gem::Specification.new do |spec|

spec.required_ruby_version = '>= 3.3'

spec.add_dependency 'activesupport', '>= 7.2'
spec.add_dependency 'activesupport', '>= 8.0'
spec.add_dependency 'ostruct', '>= 0.6'
spec.add_dependency 'zeitwerk', '~> 2.6'
end
21 changes: 0 additions & 21 deletions gemfiles/rails_7.2.gemfile

This file was deleted.