Skip to content

Commit 191d716

Browse files
authoredNov 22, 2024
Merge branch 'citusdata:master' into master
2 parents 1346bb1 + 3b21347 commit 191d716

File tree

6 files changed

+19
-6
lines changed

6 files changed

+19
-6
lines changed
 

‎.github/workflows/active-record-multi-tenant-tests.yml

+2
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,13 @@ jobs:
5454
- rails-7.0
5555
- rails-7.1
5656
- rails-7.2
57+
- rails-8.0
5758
- active-record-6.0
5859
- active-record-6.1
5960
- active-record-7.0
6061
- active-record-7.1
6162
- active-record-7.2
63+
- active-record-8.0
6264
citus_version:
6365
- '10'
6466
- '11'

‎Appraisals

+8
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ appraise 'rails-7.2' do
2020
gem 'rails', '~> 7.2.0'
2121
end
2222

23+
appraise 'rails-8.0' do
24+
gem 'rails', '~> 8.0.0'
25+
end
26+
2327
appraise 'active-record-6.0' do
2428
gem 'activerecord', '~> 6.0.3'
2529
end
@@ -39,3 +43,7 @@ end
3943
appraise 'active-record-7.2' do
4044
gem 'activerecord', '~> 7.2.0'
4145
end
46+
47+
appraise 'active-record-8.0' do
48+
gem 'activerecord', '~> 8.0.0'
49+
end

‎lib/activerecord-multi-tenant/model_extensions.rb

+5-2
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,11 @@ def inherited(subclass)
6666

6767
# Create an implicit belongs_to association only if tenant class exists
6868
if MultiTenant.tenant_klass_defined?(tenant_name, options)
69-
belongs_to tenant_name, **options.slice(:class_name, :inverse_of, :optional)
70-
.merge(foreign_key: options[:partition_key])
69+
belongs_to(
70+
tenant_name,
71+
**options.slice(:class_name, :inverse_of, :optional),
72+
foreign_key: options[:partition_key]
73+
)
7174
end
7275

7376
# New instances should have the tenant set

‎lib/activerecord-multi-tenant/query_rewriter.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ def relations_from_node_join(node_join)
375375
ActiveRecord::QueryMethods.prepend(MultiTenant::QueryMethodsExtensions)
376376

377377
module MultiTenantFindBy
378-
if ActiveRecord::VERSION::MAJOR >= 7 && ActiveRecord::VERSION::MINOR >= 2
378+
if ActiveRecord.gem_version >= Gem::Version.create('7.2.0')
379379
def cached_find_by_statement(connection, key, &block)
380380
return super unless respond_to?(:scoped_by_tenant?) && scoped_by_tenant?
381381

‎lib/activerecord-multi-tenant/relation_extension.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def update_all(updates)
2121

2222
stmt = Arel::UpdateManager.new
2323
stmt.table(table)
24-
stmt.set Arel.sql(@klass.send(:sanitize_sql_for_assignment, updates))
24+
stmt.set Arel.sql(klass.send(:sanitize_sql_for_assignment, updates))
2525
stmt.wheres = [generate_in_condition_subquery]
2626

2727
klass.connection.update(stmt, "#{klass} Update All").tap { reset }
@@ -39,7 +39,7 @@ def generate_in_condition_subquery
3939
# Build an Arel query
4040
arel = if eager_loading?
4141
apply_join_dependency.arel
42-
elsif ActiveRecord::VERSION::MAJOR >= 7 && ActiveRecord::VERSION::MINOR >= 2
42+
elsif ActiveRecord.gem_version >= Gem::Version.create('7.2.0')
4343
build_arel(klass.connection)
4444
else
4545
build_arel

‎spec/activerecord-multi-tenant/model_extensions_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def self.name
132132
end
133133

134134
describe 'inspect method filters senstive column values' do
135-
if ActiveRecord::VERSION::MAJOR >= 7 && ActiveRecord::VERSION::MINOR >= 2
135+
if ActiveRecord.gem_version >= Gem::Version.create('7.2.0')
136136
# related: https://github.com/rails/rails/pull/49765
137137
around do |example|
138138
prev = Account.attributes_for_inspect

0 commit comments

Comments
 (0)