sorbet-schema 0.1.0 → 0.1.1
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/sorbet-schema/version.rb +1 -1
- data/lib/typed/deserialize_error.rb +11 -0
- data/release-please-config.json +14 -0
- data/release-please-manifest.json +3 -0
- metadata +9 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a84e583349600c869258e039e2e77f14dad713fb1c3a8d60c8759d962ff4eaef
|
|
4
|
+
data.tar.gz: 67658459bd944e7118b45cb2fcfd5abbaea9c212153edec253d5d329519d772c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8ac735414ed3ed8668384f68d49c666abf8426410adabcdae115d533dd9110f4cdda2eaf5bc8c85f60797101a8d1dc3723b9fd52740144f639ff390abded0719
|
|
7
|
+
data.tar.gz: fd4877530222a722f9a3e719bb592d06ae9d6b979b5b22aac7638a80a678779e0d9408a014ed857cba938fe3e0410d6af1f542c865b843462427e6b2467c3813
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.1.1](https://github.com/maxveldink/sorbet-schema/compare/v0.1.0...v0.1.1) (2024-03-08)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* adds `to_h` and `to_json` methods to Deserialize errors ([#28](https://github.com/maxveldink/sorbet-schema/issues/28)) ([bf5f770](https://github.com/maxveldink/sorbet-schema/commit/bf5f770bc3ca176f18146dd780ad7ccd7fcb05b0))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* Add release-please config ([#30](https://github.com/maxveldink/sorbet-schema/issues/30)) ([b311c28](https://github.com/maxveldink/sorbet-schema/commit/b311c2840d4929776e0133b061e531ae9d1f453f))
|
|
18
|
+
* Downgrade release-please action and publish gem through there ([#31](https://github.com/maxveldink/sorbet-schema/issues/31)) ([4ef9881](https://github.com/maxveldink/sorbet-schema/commit/4ef988120c73f42fdfa749d67b5ca0bafc4e52ce))
|
|
19
|
+
* update release-please permissions ([#33](https://github.com/maxveldink/sorbet-schema/issues/33)) ([b5d866c](https://github.com/maxveldink/sorbet-schema/commit/b5d866ca304879fc92c8d20ca2b303a3fcdd27c3))
|
|
20
|
+
|
|
7
21
|
## 0.1.0 (2024-03-05)
|
|
8
22
|
|
|
9
23
|
### Features
|
data/Gemfile.lock
CHANGED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"release-type": "ruby",
|
|
3
|
+
"packages": {
|
|
4
|
+
".": {
|
|
5
|
+
"monorepo-tags": false,
|
|
6
|
+
"include-component-in-tag": false,
|
|
7
|
+
"prerelease": false,
|
|
8
|
+
"bump-minor-pre-major": true,
|
|
9
|
+
"bump-patch-for-minor-pre-major": true,
|
|
10
|
+
"package-name": "sorbet-schema",
|
|
11
|
+
"version-file": "lib/sorbet-schema/version.rb"
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sorbet-schema
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Max VelDink
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-03-
|
|
11
|
+
date: 2024-03-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: sorbet-result
|
|
@@ -66,7 +66,7 @@ dependencies:
|
|
|
66
66
|
- - "~>"
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: '2.6'
|
|
69
|
-
description:
|
|
69
|
+
description:
|
|
70
70
|
email:
|
|
71
71
|
- maxveldink@gmail.com
|
|
72
72
|
executables: []
|
|
@@ -111,6 +111,8 @@ files:
|
|
|
111
111
|
- lib/typed/validations/validated_value.rb
|
|
112
112
|
- lib/typed/validations/validation_error.rb
|
|
113
113
|
- lib/typed/validations/validation_results.rb
|
|
114
|
+
- release-please-config.json
|
|
115
|
+
- release-please-manifest.json
|
|
114
116
|
- sorbet/config
|
|
115
117
|
- sorbet/rbi/annotations/rainbow.rbi
|
|
116
118
|
- sorbet/rbi/gems/.gitattributes
|
|
@@ -169,7 +171,7 @@ metadata:
|
|
|
169
171
|
homepage_uri: https://github.com/maxveldink/sorbet-schema
|
|
170
172
|
source_code_uri: https://github.com/maxveldink/sorbet-schema
|
|
171
173
|
changelog_uri: https://github.com/maxveldink/sorbet-schema/blob/main/CHANGELOG.md
|
|
172
|
-
post_install_message:
|
|
174
|
+
post_install_message:
|
|
173
175
|
rdoc_options: []
|
|
174
176
|
require_paths:
|
|
175
177
|
- lib
|
|
@@ -184,8 +186,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
184
186
|
- !ruby/object:Gem::Version
|
|
185
187
|
version: '0'
|
|
186
188
|
requirements: []
|
|
187
|
-
rubygems_version: 3.5.
|
|
188
|
-
signing_key:
|
|
189
|
+
rubygems_version: 3.5.3
|
|
190
|
+
signing_key:
|
|
189
191
|
specification_version: 4
|
|
190
192
|
summary: Serialization and deserialization library into Sorbet structs.
|
|
191
193
|
test_files: []
|