Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable support for rails 7.1 #77

Closed
wants to merge 4 commits into from
Closed
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
20 changes: 10 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,39 +53,39 @@ jobs:
environment:
CONTAINER_RUBY_VERSION: 2.7
CONTAINER_PG_VERSION: 10
RAILS_VERSIONS: "5.2 6.0 6.1 7.0"
RAILS_VERSIONS: "5.2 6.0 6.1 7.0 7.1"

build-ruby-2.7-pg-11:
<<: *shared_config

environment:
CONTAINER_RUBY_VERSION: 2.7
CONTAINER_PG_VERSION: 11
RAILS_VERSIONS: "5.2 6.0 6.1 7.0"
RAILS_VERSIONS: "5.2 6.0 6.1 7.0 7.1"

build-ruby-2.7-pg-12:
<<: *shared_config

environment:
CONTAINER_RUBY_VERSION: 2.7
CONTAINER_PG_VERSION: 12
RAILS_VERSIONS: "5.2 6.0 6.1 7.0"
RAILS_VERSIONS: "5.2 6.0 6.1 7.0 7.1"

build-ruby-2.7-pg-13:
<<: *shared_config

environment:
CONTAINER_RUBY_VERSION: 2.7
CONTAINER_PG_VERSION: 13
RAILS_VERSIONS: "5.2 6.0 6.1 7.0"
RAILS_VERSIONS: "5.2 6.0 6.1 7.0 7.1"

build-ruby-2.7-pg-14:
<<: *shared_config

environment:
CONTAINER_RUBY_VERSION: 2.7
CONTAINER_PG_VERSION: 14
RAILS_VERSIONS: "5.2 6.0 6.1 7.0"
RAILS_VERSIONS: "5.2 6.0 6.1 7.0 7.1"
UPLOAD_COVERAGE: true

build-ruby-latest-pg-10:
Expand All @@ -94,39 +94,39 @@ jobs:
environment:
CONTAINER_RUBY_VERSION: latest
CONTAINER_PG_VERSION: 10
RAILS_VERSIONS: "6.0 6.1 7.0"
RAILS_VERSIONS: "6.0 6.1 7.0 7.1"

build-ruby-latest-pg-11:
<<: *shared_config

environment:
CONTAINER_RUBY_VERSION: latest
CONTAINER_PG_VERSION: 11
RAILS_VERSIONS: "6.0 6.1 7.0"
RAILS_VERSIONS: "6.0 6.1 7.0 7.1"

build-ruby-latest-pg-12:
<<: *shared_config

environment:
CONTAINER_RUBY_VERSION: latest
CONTAINER_PG_VERSION: 12
RAILS_VERSIONS: "6.0 6.1 7.0"
RAILS_VERSIONS: "6.0 6.1 7.0 7.1"

build-ruby-latest-pg-13:
<<: *shared_config

environment:
CONTAINER_RUBY_VERSION: latest
CONTAINER_PG_VERSION: 13
RAILS_VERSIONS: "6.0 6.1 7.0"
RAILS_VERSIONS: "6.0 6.1 7.0 7.1"

build-ruby-latest-pg-14:
<<: *shared_config

environment:
CONTAINER_RUBY_VERSION: latest
CONTAINER_PG_VERSION: 14
RAILS_VERSIONS: "6.0 6.1 7.0"
RAILS_VERSIONS: "6.0 6.1 7.0 7.1"

workflows:
version: 2
Expand Down
5 changes: 5 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,8 @@ appraise "ar-7.0" do
gem "activerecord", "~> 7.0.0"
gem "pg", "~> 1.1"
end

appraise "ar-7.1" do
gem "activerecord", "~> 7.1.0"
gem "pg", "~> 1.1"
end
8 changes: 8 additions & 0 deletions gemfiles/ar_7.1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "activerecord", "~> 7.1"
gem "pg", "~> 1.1"

gemspec path: "../"
2 changes: 1 addition & 1 deletion pg_party.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Gem::Specification.new do |spec|

spec.require_paths = ["lib"]

spec.add_runtime_dependency "activerecord", ">= 5.2", "< 7.1"
spec.add_runtime_dependency "activerecord", ">= 5.2", "< 7.2"
spec.add_runtime_dependency "ruby2_keywords", "~> 0.0.2"
spec.add_runtime_dependency "parallel", "~> 1.0"

Expand Down