hoardable 0.14.2 → 0.16.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: befa1333fe9f96fa12949d58483241b3ea576cd21503cfb47586b22dbaf36fe4
4
- data.tar.gz: '02390d38824b7fe05d5f8ffd9c8e0714d27da5b35d5fe4c2fee9e3f7775125fd'
3
+ metadata.gz: 8c41a6c69f62f7e2a99fefe00229a7244f5cd0dcb9ed3b0d243db9adf9cabd98
4
+ data.tar.gz: 30dc9d7a551c29331a7736f7b825c0b5f9db83bf5c5cd537d5d2910908f683ff
5
5
  SHA512:
6
- metadata.gz: 83d0cb32b0363b0a1387e041301c6ddf9d55e40a8aa3d1c1d6c40416bdfb3c90115a0a37af25238474b96c0a54d9816f06ad5747b8f5d279d6af5aec09602e49
7
- data.tar.gz: 2c8ca8c336cca19bc9f4e7199d6da3474df932415e6a481c1f6868df8b440e60820a68837bda8e137bd55922401950b646b0a8be94e4b0208854022befafff6e
6
+ metadata.gz: ad46ae05e3241052089aaf432016b906f648051fae6405e2ce4a90c7f247942a09a011d2fc35e6558695814949ef37a0398d36baaa71500f2c31d33436a7eac7
7
+ data.tar.gz: b3307392cdff1b14a37192cd1a004099c5d99d7dd0ce3d0f8fe230c1dac4b59697c4708f5859cb7b2b831f45f1a3a6489cdce2eaf464fef2d9e135bd902e4f26
data/.streerc ADDED
@@ -0,0 +1 @@
1
+ --print-width=100
data/.tool-versions CHANGED
@@ -1,2 +1,2 @@
1
- ruby 3.2.1
2
- postgres 14.4
1
+ ruby 3.3.0
2
+ postgres 16.1
data/CHANGELOG.md CHANGED
@@ -1,3 +1,22 @@
1
+ ## 0.16.0
2
+
3
+ - Rails 8 support introduced
4
+
5
+ ## 0.15.0
6
+
7
+ - *Breaking Change* - Support for Ruby 2.7 and Rails 6.1 is dropped
8
+ - *Breaking Change* - The default scoping clause that controls the inherited table SQL construction
9
+ changes from a where clause using `tableoid`s to using `FROM ONLY`
10
+ - Fixes an issue for Rails 7.1 regarding accessing version table columns through aliased attributes
11
+ - Fixes an issue where `Hoardable::RichText` couldn’t be loaded if `ActionText::RichText` wasn’t yet
12
+ loaded
13
+ - Supports dumping `INHERITS (table_name)` options to `schema.rb` and ensures the inherited tables
14
+ are dumped after their parents
15
+
16
+ ## 0.14.3
17
+
18
+ - The migration template is updated to make the primary key on the versions table its actual primary key
19
+
1
20
  ## 0.14.2
2
21
 
3
22
  - Fixes an eager loading issue regarding `ActionText::EncryptedRichText`
data/Gemfile CHANGED
@@ -1,15 +1,14 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- source 'https://rubygems.org'
3
+ source "https://rubygems.org"
4
4
 
5
- gem 'benchmark-ips', '~> 2.10'
6
- gem 'debug', '~> 1.6'
7
- gem 'minitest', '~> 5.0'
8
- gem 'rails', '>= 6.1'
9
- gem 'rake', '~> 13.0'
10
- gem 'rubocop', '~> 1.21'
11
- gem 'rubocop-minitest', '~> 0.20'
12
- gem 'rubocop-rake', '~> 0.6'
13
- gem 'yard', '~> 0.9'
5
+ gem "debug"
6
+ if (rails_version = ENV["RAILS_VERSION"])
7
+ gem "rails", "~> #{rails_version}"
8
+ else
9
+ gem "rails"
10
+ end
11
+ gem "syntax_tree"
12
+ gem "typeprof"
14
13
 
15
14
  gemspec