shale-builder 0.8.0 → 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 +4 -4
- data/CHANGELOG.md +14 -0
- data/Gemfile.lock +1 -1
- data/lib/shale/builder/nested_validations.rb +1 -1
- data/lib/shale/builder/version.rb +1 -1
- data/lib/tapioca/dsl/compilers/shale.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d988ec578eade2878ce88bdbfc837a556244c0af4524be6f987619955fcb0adb
|
|
4
|
+
data.tar.gz: ab4dc705445e863fbef158967abcc98b102c5c19372e5795ec1e278769dcd048
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 64b0a0f0ad4935758302b2998d9b6694eb499ea8f1f8a4ba0530ebb2e8f3c00b24945e8c2bc78ef1ca02228f8d53ea7629f4cd1e925b5c3d53ca55c48779941b
|
|
7
|
+
data.tar.gz: 3edee07298c79fa6bc48c7364581b41b212a75f365c29910729294c41dafa0c03c5233b58be4f9ce51e2c7c2ffa4a9b8f7101f7e910fdc7e1369a307de3cbb49
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,20 @@ 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.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
|
|
16
|
+
|
|
17
|
+
[Diff](https://github.com/Verseth/ruby-shale-builder/compare/v0.8.0...v0.8.1)
|
|
18
|
+
|
|
19
|
+
### Changes
|
|
20
|
+
- Change `Shale::Type::Value` generated type from `Object` to `T.untyped`
|
|
21
|
+
|
|
8
22
|
## [0.8.0] - 2025-10-24
|
|
9
23
|
|
|
10
24
|
[Diff](https://github.com/Verseth/ruby-shale-builder/compare/v0.7.1...v0.8.0)
|
data/Gemfile.lock
CHANGED
|
@@ -156,7 +156,7 @@ module Tapioca
|
|
|
156
156
|
# Maps Shale return types to Sorbet types
|
|
157
157
|
SHALE_RETURN_TYPES_MAP = T.let(
|
|
158
158
|
{
|
|
159
|
-
::Shale::Type::Value =>
|
|
159
|
+
::Shale::Type::Value => T.untyped,
|
|
160
160
|
::Shale::Type::String => String,
|
|
161
161
|
::Shale::Type::Float => Float,
|
|
162
162
|
::Shale::Type::Integer => Integer,
|
|
@@ -172,7 +172,7 @@ module Tapioca
|
|
|
172
172
|
# Maps Shale setter types to Sorbet types
|
|
173
173
|
SHALE_SETTER_TYPES_MAP = T.let(
|
|
174
174
|
{
|
|
175
|
-
::Shale::Type::Value =>
|
|
175
|
+
::Shale::Type::Value => T.untyped,
|
|
176
176
|
::Shale::Type::String => String,
|
|
177
177
|
::Shale::Type::Float => Float,
|
|
178
178
|
::Shale::Type::Integer => Integer,
|