store_base_sti_class 3.4.0 → 3.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d70181898de30199ef2126e47928e8d2e0c9d921df8a401151d97c82e587876c
4
- data.tar.gz: a3f936d3c3651ad27471763d4ae2912a84458c11e070ea6a8d682bce1f618a37
3
+ metadata.gz: ad592da787a32e5adc3eb24522fc05352698091b7ceb1d6a3c86c1d30f93de73
4
+ data.tar.gz: 69baecba2d440bec800d7397785889d6b68695953d841c27411af9baa84be280
5
5
  SHA512:
6
- metadata.gz: b5eb49473524cf3d97aa12b7df4efc2b11ecf629f39bbd4e7c75bc8935955040f2317cd6190f6c2ed14380373842245beddd81346ebe4421d55174f8aafc7b92
7
- data.tar.gz: 1ac72aa032744498042bb4ca9eee636f7e736b6001f0ee3b0f3d60ecd5a677005e5b043df53a10ba05f7342b85ce1e08f273876c8bf5bcf71a6a4baf35a004d7
6
+ metadata.gz: e34656acb69780f3bf6769949271551f3cc9f495b8314b4064e791ae603a9973686ac5e22353bfa4e3f23be462ebf73bef9b081509130106a876482ed8e001d9
7
+ data.tar.gz: 82e6db138216e5970e965b62a0a6e87ea9beba65d8704f57c115d7adbc1e0297e38df80ba088c2b03d98478a6d27d3f88660fcc3091ccbb53f7f4c3a27d4be0d
@@ -1,3 +1,3 @@
1
1
  module StoreBaseSTIClass
2
- VERSION = '3.4.0'.freeze
2
+ VERSION = '3.5.0'.freeze
3
3
  end
@@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
15
15
  compatibility.'
16
16
  MSG
17
17
  spec.summary = <<~MSG
18
- Modifies ActiveRecord 6.1.x - 7.2.x with the ability to store the actual class (instead of the base class) in
18
+ Modifies ActiveRecord 7.2.x - 8.1.x with the ability to store the actual class (instead of the base class) in
19
19
  polymorhic _type columns when using STI.
20
20
  MSG
21
21
  spec.homepage = 'https://github.com/appfolio/store_base_sti_class'
@@ -26,5 +26,5 @@ Gem::Specification.new do |spec|
26
26
  spec.required_ruby_version = Gem::Requirement.new('< 3.5')
27
27
  spec.metadata['allowed_push_host'] = 'https://rubygems.org'
28
28
 
29
- spec.add_dependency('activerecord', ['>= 7', '< 8.1'])
29
+ spec.add_dependency('activerecord', ['>= 7.2', '< 8.2'])
30
30
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: store_base_sti_class
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.4.0
4
+ version: 3.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - AppFolio
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-05-02 00:00:00.000000000 Z
10
+ date: 2025-11-14 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: activerecord
@@ -15,20 +15,20 @@ dependencies:
15
15
  requirements:
16
16
  - - ">="
17
17
  - !ruby/object:Gem::Version
18
- version: '7'
18
+ version: '7.2'
19
19
  - - "<"
20
20
  - !ruby/object:Gem::Version
21
- version: '8.1'
21
+ version: '8.2'
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
25
25
  requirements:
26
26
  - - ">="
27
27
  - !ruby/object:Gem::Version
28
- version: '7'
28
+ version: '7.2'
29
29
  - - "<"
30
30
  - !ruby/object:Gem::Version
31
- version: '8.1'
31
+ version: '8.2'
32
32
  description: |
33
33
  ActiveRecord has always stored the base class in polymorphic _type columns when using STI. This can have non-trivial
34
34
  performance implications in certain cases. This gem adds the 'store_base_sti_class' configuration option which
@@ -64,6 +64,6 @@ required_rubygems_version: !ruby/object:Gem::Requirement
64
64
  requirements: []
65
65
  rubygems_version: 3.6.3
66
66
  specification_version: 4
67
- summary: Modifies ActiveRecord 6.1.x - 7.2.x with the ability to store the actual
67
+ summary: Modifies ActiveRecord 7.2.x - 8.1.x with the ability to store the actual
68
68
  class (instead of the base class) in polymorhic _type columns when using STI.
69
69
  test_files: []