active_type 2.6.0 → 2.6.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 970684d2b41b30fef4a53c0d4ab29ef2d25a7ca391be73a21295cfd07ef527a5
4
- data.tar.gz: 0d0b34b0af58796b9cb6d877470894da5484a1658ef3a4704d603b9cbbf45c57
3
+ metadata.gz: 4ea818b092133716848f5afefa6adbd282f6377a4ce2f02687b0e1fa25a2e9c6
4
+ data.tar.gz: 234893cb582d30e6fa5f048dac118c5298ccc7f6ab96b5c45f7a9ef2defd0cc9
5
5
  SHA512:
6
- metadata.gz: 24e437dc4e496c086c1789e01a0e47571541f9557f8585e822c53b9e5001b62d676a9ec1476ac075c6a1cd014584c1121a1d898cfeb09cb2a9b7ce1f20deb190
7
- data.tar.gz: 34a47671ac54c98464fd2ecdfd1d8ca528e2b43e29d571688e7a63d0d60b3f8848192d16c536fe16159ae1fc340ca37debc19a765786b335957c0fdb41c68e4e
6
+ metadata.gz: 28e54d2161217778d9cbd9876fe2689a56c46443070f1dbdeff33c1271bfcd19d63e38469b650aa95e466a86b5ceb2d19a75c1f1270a3d32512dd809d89a4840
7
+ data.tar.gz: 6f14bd7f4ffface250b451eeec8d865b0f36271ae168a89755f7fd090be017bd4c6297f63401acfe844aaea6dda924358683e9512fc536770fdeb9b4dc121099
data/CHANGELOG.md CHANGED
@@ -2,9 +2,14 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## 2.6.1 (2025-01-17)
6
+
7
+ * Fixed: Issue with `ActiveType::Object` when using has_many on Rails 7.2.
8
+ Thanks to @corableus.
9
+
5
10
  ## 2.6.0 (2024-12-20)
6
11
 
7
- * Dropped support for Rails < 6 and Ruby < 2.7.
12
+ * Drop support for Rails < 5, Ruby < 2.7.
8
13
 
9
14
  ## 2.5.1 (2024-08-14)
10
15
 
data/Gemfile.6.1.pg.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- active_type (2.6.0)
4
+ active_type (2.6.1)
5
5
  activerecord (>= 6.1)
6
6
 
7
7
  GEM
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- active_type (2.6.0)
4
+ active_type (2.6.1)
5
5
  activerecord (>= 6.1)
6
6
 
7
7
  GEM
data/Gemfile.7.1.pg.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- active_type (2.6.0)
4
+ active_type (2.6.1)
5
5
  activerecord (>= 6.1)
6
6
 
7
7
  GEM
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- active_type (2.6.0)
4
+ active_type (2.6.1)
5
5
  activerecord (>= 6.1)
6
6
 
7
7
  GEM
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- active_type (2.6.0)
4
+ active_type (2.6.1)
5
5
  activerecord (>= 6.1)
6
6
 
7
7
  GEM
data/Gemfile.7.2.pg.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- active_type (2.6.0)
4
+ active_type (2.6.1)
5
5
  activerecord (>= 6.1)
6
6
 
7
7
  GEM
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- active_type (2.6.0)
4
+ active_type (2.6.1)
5
5
  activerecord (>= 6.1)
6
6
 
7
7
  GEM
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- active_type (2.6.0)
4
+ active_type (2.6.1)
5
5
  activerecord (>= 6.1)
6
6
 
7
7
  GEM
@@ -124,6 +124,10 @@ module ActiveType
124
124
  @schema_cache = DummySchemaCache.new
125
125
  end
126
126
 
127
+ def self.quote_column_name(column_name)
128
+ column_name.to_s
129
+ end
130
+
127
131
  end
128
132
 
129
133
  module ClassMethods
@@ -1,3 +1,3 @@
1
1
  module ActiveType
2
- VERSION = '2.6.0'
2
+ VERSION = '2.6.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_type
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.0
4
+ version: 2.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tobias Kraze
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2024-12-20 00:00:00.000000000 Z
12
+ date: 2025-01-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -134,7 +134,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
134
134
  - !ruby/object:Gem::Version
135
135
  version: '0'
136
136
  requirements: []
137
- rubygems_version: 3.5.22
137
+ rubygems_version: 3.4.10
138
138
  signing_key:
139
139
  specification_version: 4
140
140
  summary: Make any Ruby object quack like ActiveRecord