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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
strategy:
fail-fast: false
matrix:
activerecord: [ '6.1', '7.0', '7.1', '7.2', '8.0' ]
activerecord: [ '6.1', '7.0', '7.1', '7.2', '8.0', '8.1' ]
ruby: [ '3.2', '3.3', '3.4' ]
exclude:
- activerecord: '6.1'
Expand Down
4 changes: 4 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,7 @@ end
appraise "activerecord_8.0" do
gem "activerecord", ">= 8.0.0", "< 8.1"
end

appraise "activerecord_8.1" do
gem "activerecord", ">= 8.1.0", "< 8.2"
end
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# activerecord-postgres_pub_sub

## v3.4.0
- Add support for ActiveRecord 8.1

## v3.3.0
- Remove support for Ruby 3.0 and 3.1
- Switch to using RubyGems trusted publishing instead of manual releases
Expand Down
2 changes: 1 addition & 1 deletion activerecord-postgres_pub_sub.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Gem::Specification.new do |spec|
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 3.2.0"

spec.add_runtime_dependency "activerecord", "> 6.0", "< 8.1"
spec.add_runtime_dependency "activerecord", "> 6.0", "< 8.2"
spec.add_runtime_dependency "pg", "~> 1.1"
spec.add_runtime_dependency "private_attr"
spec.add_runtime_dependency "with_advisory_lock"
Expand Down
7 changes: 7 additions & 0 deletions gemfiles/activerecord_8.1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "activerecord", ">= 8.1.0", "< 8.2"

gemspec path: "../"
2 changes: 1 addition & 1 deletion lib/activerecord/postgres_pub_sub/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module ActiveRecord
module PostgresPubSub
VERSION = "3.3.0"
VERSION = "3.4.0"
end
end