propel_rails 0.3.1.2 → 0.3.1.4
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 +30 -9
- data/lib/propel_rails.rb +1 -1
- 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: 4a996c32cd23d74f45dd85d71a77b29dacba039058396d8266a8e624dfedb7fe
|
4
|
+
data.tar.gz: c84c118865158d1134e85569b97f7de304d9d818d90297793dadb8283730a5f9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8e64ae8e5b2040190cb2625400123556050f4a5f9c2735725f5fd27e14b90d350bc08dfe2fd5f2797128e65b86839fbca595df7bd7ae7c7c9100d5d6a2d42fa4
|
7
|
+
data.tar.gz: 568a5b761d7d2c767b241cc7655151e031d60cb6255b95acc85821fda5ee2a264c24a19d21d02cb8a8174ed5bed31d174f95129decb4436a4d85c63572861e73
|
data/CHANGELOG.md
CHANGED
@@ -12,6 +12,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
12
12
|
- Cross-component integration patterns
|
13
13
|
- Advanced orchestration features
|
14
14
|
|
15
|
+
## [0.3.1.4] - 2025-09-11
|
16
|
+
|
17
|
+
### 🐛 Critical Bug Fixes
|
18
|
+
- **PropelApi Polymorphic Parents Regression**: Fixed critical regression affecting polymorphic generator usage
|
19
|
+
- Resolved `NoMethodError: undefined method 'strip' for Array` in polymorphic parent parsing
|
20
|
+
- **Root Cause**: Overcomplicated parsing logic incorrectly assumed Thor provides Arrays
|
21
|
+
- **Solution**: Reverted to original, simple parsing that works with Thor's actual String output
|
22
|
+
- Enhanced generator stability for polymorphic associations with `--parents` option
|
23
|
+
|
24
|
+
### 🔧 Dependency Updates
|
25
|
+
- **PropelApi 0.3.1.4**: Critical polymorphic parents parsing fix and enhanced documentation
|
26
|
+
- **PropelAuthentication 0.3.1.4**: Version synchronization
|
27
|
+
- **PropelFacets 0.3.1.4**: Version synchronization
|
28
|
+
|
29
|
+
## [0.3.1.3] - 2025-09-11
|
30
|
+
|
31
|
+
### 🐛 Bug Fixes & Improvements
|
32
|
+
- **Enhanced Test Reliability**: Coordinated improvements to test generation across the Propel ecosystem
|
33
|
+
- Better polymorphic association testing with proper facet includes
|
34
|
+
- Improved data integrity test reliability with realistic test data
|
35
|
+
- Fixed Schedule model and similar polymorphic association issues
|
36
|
+
|
37
|
+
### 🔧 Dependency Updates
|
38
|
+
- **PropelApi 0.3.1.3**: Polymorphic association facet fixes and improved test templates
|
39
|
+
- **PropelAuthentication 0.3.1.3**: HTTP status code consistency improvements
|
40
|
+
- **PropelFacets 0.3.1.3**: Enhanced polymorphic association facet rendering
|
41
|
+
|
15
42
|
## [0.3.1.2] - 2025-09-11
|
16
43
|
|
17
44
|
### 🎉 Enhanced JSON Field Management
|
@@ -21,15 +48,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
21
48
|
- Improved developer experience with predictable JSON field behavior
|
22
49
|
|
23
50
|
### 🔧 Dependency Updates
|
24
|
-
- **PropelApi 0.3.1.2**: Automatic JSON field defaults
|
25
|
-
- **PropelAuthentication 0.3.1.2**: Enhanced integration with JSON field defaults
|
26
|
-
- **PropelFacets 0.3.1.2**: Improved JSON field facet rendering
|
27
|
-
|
28
|
-
### 🐛 Bug Fixes & Improvements
|
29
|
-
- **Enhanced Test Reliability**: Coordinated improvements to test generation across the Propel ecosystem
|
30
|
-
- Better polymorphic association testing with proper facet includes
|
31
|
-
- Improved data integrity test reliability with realistic test data
|
32
|
-
- Enhanced HTTP status code consistency in authentication controllers
|
51
|
+
- **PropelApi 0.3.1.2**: Automatic JSON field defaults and PostgreSQL JSONB support
|
52
|
+
- **PropelAuthentication 0.3.1.2**: Enhanced integration with JSON field defaults
|
53
|
+
- **PropelFacets 0.3.1.2**: Improved JSON field facet rendering and serialization
|
33
54
|
|
34
55
|
### 🛠️ Installation & Configuration Improvements
|
35
56
|
- **Enhanced Generator Coordination**: Improved coordination of JSON field handling across all Propel components
|
data/lib/propel_rails.rb
CHANGED