shale-builder 0.8.1 → 0.8.2

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: 7ee9219ef795c936cc3572d0eef8bed6c18f5dec8b16de794a931ca2dab3a3ec
4
- data.tar.gz: 74a674e79493cbb9e44cea7fc37e7463fb476aaf4ce49b717bac00996c1069ea
3
+ metadata.gz: d988ec578eade2878ce88bdbfc837a556244c0af4524be6f987619955fcb0adb
4
+ data.tar.gz: ab4dc705445e863fbef158967abcc98b102c5c19372e5795ec1e278769dcd048
5
5
  SHA512:
6
- metadata.gz: e811406ab6d236c1e226b7d1c3bc9ea2936be56befd48bae227e0a64e51ea304bc5e7baa7e73157b56826a2cb1874fe321e6842cae5a39af746126813ac97683
7
- data.tar.gz: ec643d1f6f39439c7d8393b32c963ce42dbc85d0ca23e7055a738b2d02f6d575ec4178fe3b9f3a3465a8c14fc1b34fb52f3660b1b77f5e341711bb253e7cb009
6
+ metadata.gz: 64b0a0f0ad4935758302b2998d9b6694eb499ea8f1f8a4ba0530ebb2e8f3c00b24945e8c2bc78ef1ca02228f8d53ea7629f4cd1e925b5c3d53ca55c48779941b
7
+ data.tar.gz: 3edee07298c79fa6bc48c7364581b41b212a75f365c29910729294c41dafa0c03c5233b58be4f9ce51e2c7c2ffa4a9b8f7101f7e910fdc7e1369a307de3cbb49
data/CHANGELOG.md CHANGED
@@ -5,7 +5,14 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
- ## [0.8.0] - 2025-10-24
8
+ ## [0.8.2] - 2025-10-24
9
+
10
+ [Diff](https://github.com/Verseth/ruby-shale-builder/compare/v0.8.1...v0.8.2)
11
+
12
+ ### Changes
13
+ - Fix infinite recursion in `Shale::Builder::NestedValidations#validatable_attribute_names`
14
+
15
+ ## [0.8.1] - 2025-10-24
9
16
 
10
17
  [Diff](https://github.com/Verseth/ruby-shale-builder/compare/v0.8.0...v0.8.1)
11
18
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- shale-builder (0.8.1)
4
+ shale-builder (0.8.2)
5
5
  booleans (>= 0.1)
6
6
  shale (< 2.0)
7
7
  sorbet-runtime (> 0.5)
@@ -40,7 +40,7 @@ module Shale
40
40
 
41
41
  #: -> Array[Symbol]
42
42
  def validatable_attribute_names
43
- validatable_attribute_names.keys
43
+ validatable_attributes.keys
44
44
  end
45
45
  end
46
46
  mixes_in_class_methods ClassMethods
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Shale
4
4
  module Builder
5
- VERSION = '0.8.1'
5
+ VERSION = '0.8.2'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shale-builder
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.1
4
+ version: 0.8.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mateusz Drewniak