easy_talk 1.0.2 → 1.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d7f671ab545b8ab502b6bc9412855fa8a5c5fd45a55034e1c7eb6dba000539cc
4
- data.tar.gz: 7243055ab896f4a7d73da4c6b2c9e425d71651815d1cca9cab1a23b4c5159497
3
+ metadata.gz: 365a704ac1e34ef3ae2796712c0eb13a15030bb9f6184578dc17ac9b2611c2d2
4
+ data.tar.gz: 94b6ed4d70c16a1ff74b519dfcf6833eb00573a5dc532d6ec7bb3565dc39d208
5
5
  SHA512:
6
- metadata.gz: ba14fb1e04f2cda11bff0d72f0f8f52e27b7a04c86f182cae43cc487b5e33369abae7b9d55d5af732063ca54ffe5bfcf97bc2a14344fb329d07199cef0a1b075
7
- data.tar.gz: 02ffbf919e5ab09eb253c055da2b1a787419dc5f0b9b6b60901176bac039cd323134482c6551a15730f1d9dd4a0268336a5bbce47803a7f348e85c2950f2c75e
6
+ metadata.gz: 1af20c3dffdc153ac5b251f6170280b46c5ee1d9d068cea2ab74f4a3a585110c820ea4d1b831eee3e0adda974ac0f10f33d7e424df4174b94246c722c0ed9119
7
+ data.tar.gz: aab1c378d3a1bacbeed497b5613f3e9a45d75a4a7288788ca5b6628aad19b27411895f8c414ff92734920018e87618f70af1a20ac61b6090981764c6c332fec6
data/.rubocop.yml CHANGED
@@ -4,9 +4,12 @@ require:
4
4
 
5
5
  AllCops:
6
6
  TargetRubyVersion: 3.2
7
-
8
- RSpec/FilePath:
9
- SpecSuffixOnly: true
7
+
8
+ RSpec/SpecFilePathFormat:
9
+ Enabled: true
10
+
11
+ RSpec/SpecFilePathSuffix:
12
+ Enabled: true
10
13
 
11
14
  RSpec/ExampleLength:
12
15
  Max: 10
data/CHANGELOG.md CHANGED
@@ -1,3 +1,35 @@
1
+ ## [1.0.4] - 2024-03-12
2
+ ### Changed
3
+ - Combined composition builders into a single file (#47)
4
+ - Improved code organization and maintainability
5
+ - Refactored internal builder implementation
6
+
7
+ ### Fixed
8
+ - Added support for nilable properties when database column is null (#45)
9
+ - Better handling of nullable database columns
10
+ - More accurate schema generation for ActiveRecord models
11
+
12
+ ## [1.0.3] - 2025-03-11
13
+ ### Added
14
+ - Unified schema generation for both plain Ruby classes and ActiveRecord models (#40)
15
+ - Single code path for generating schemas regardless of model type
16
+ - More consistent behavior between different model types
17
+ - Better handling of schema properties in ActiveRecord models
18
+
19
+ ### Changed
20
+ - Improved error handling throughout the library (#31)
21
+ - Added custom error types for better error classification
22
+ - More descriptive error messages for constraint violations
23
+ - Centralized validation of constraint values
24
+ - Better type checking for array properties
25
+
26
+ ### Developer Experience
27
+ - Removed unnecessary dependencies
28
+ - Removed dartsass-rails from development dependencies
29
+ - Code quality improvements
30
+ - Better test coverage for error conditions
31
+ - More consistent return values in builder methods
32
+
1
33
  ## [1.0.2] - 2024-13-01
2
34
  - Support "AdditionalProperties". see https://json-schema.org/understanding-json-schema/reference/object#additionalproperties
3
35
  You can now define a schema that allows any additional properties.