easy_talk 1.0.2 → 1.0.3

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: af4342f13346bcfb1e54e16fc726f3de5f5630afe889b08a56ff7a5eda62cb18
4
+ data.tar.gz: 1552e1cf7890f7e51eb0fc05db52d6ba37328115c4c2369ada28f918ddc0848c
5
5
  SHA512:
6
- metadata.gz: ba14fb1e04f2cda11bff0d72f0f8f52e27b7a04c86f182cae43cc487b5e33369abae7b9d55d5af732063ca54ffe5bfcf97bc2a14344fb329d07199cef0a1b075
7
- data.tar.gz: 02ffbf919e5ab09eb253c055da2b1a787419dc5f0b9b6b60901176bac039cd323134482c6551a15730f1d9dd4a0268336a5bbce47803a7f348e85c2950f2c75e
6
+ metadata.gz: ed08994491f42ce37c8fdefd799f03ccf7508ec4812e3f3138b431cfafccfb53138a96068698adc8db062aa1b963010bf2230b9d953622756fa211f94def39dd
7
+ data.tar.gz: 8154bf2c094dd265a6f9f8579c7ef01f3896190a05ef42476b30e927efc500f8e5aeb5680be2a672b7a9ea7f5a40bd58401136282fa6666355df6513934f186e
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,24 @@
1
+ ## [1.0.3] - 2025-03-11
2
+ ### Added
3
+ - Unified schema generation for both plain Ruby classes and ActiveRecord models (#40)
4
+ - Single code path for generating schemas regardless of model type
5
+ - More consistent behavior between different model types
6
+ - Better handling of schema properties in ActiveRecord models
7
+
8
+ ### Changed
9
+ - Improved error handling throughout the library (#31)
10
+ - Added custom error types for better error classification
11
+ - More descriptive error messages for constraint violations
12
+ - Centralized validation of constraint values
13
+ - Better type checking for array properties
14
+
15
+ ### Developer Experience
16
+ - Removed unnecessary dependencies
17
+ - Removed dartsass-rails from development dependencies
18
+ - Code quality improvements
19
+ - Better test coverage for error conditions
20
+ - More consistent return values in builder methods
21
+
1
22
  ## [1.0.2] - 2024-13-01
2
23
  - Support "AdditionalProperties". see https://json-schema.org/understanding-json-schema/reference/object#additionalproperties
3
24
  You can now define a schema that allows any additional properties.