odata_duty 0.30.0 → 0.30.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 +66 -0
- data/LICENSE +21 -0
- data/README.md +1 -1
- metadata +9 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 24b2763892ae6cc0088ab89de9281a39c0ecf100406950f6263e8a364bdd2abc
|
|
4
|
+
data.tar.gz: 185bee55b726314b02f5add982464b0b949189a592fcff7a1ba9f6b33939b2b7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b3490f5fb35ca308175a3c08e3bc0fdcbc822b80334b1642ff073c02281e0d54d60b78a8c9155efac8c713ca1b3b4e66fb67ac99233497bd542620369e25b446
|
|
7
|
+
data.tar.gz: 92f65ccdb8c6efb24fcea1f39af2e16651f7b4e937e7304998f56e26cccdcf2c19a7d36d84013b314f53f2bf6689d78958b3c144e3a1233aed781a5ae3f45501
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project are documented here. The format is based on
|
|
4
|
+
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to
|
|
5
|
+
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
+
|
|
7
|
+
## [Unreleased]
|
|
8
|
+
|
|
9
|
+
## [0.30.1] - 2026-08-02
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- `CHANGELOG.md` and a `changelog_uri` gem metadata entry.
|
|
13
|
+
- `spec.homepage` and `spec.license = 'MIT'` in the gemspec.
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
- Gemspec metadata: `homepage_uri` and `source_code_uri` were previously discarded
|
|
17
|
+
because `spec.metadata` was reassigned after being set; all entries are now merged
|
|
18
|
+
into a single hash.
|
|
19
|
+
- `spec.files` now references the packaged files that actually exist (`LICENSE`,
|
|
20
|
+
`CHANGELOG.md`) instead of a non-existent `LICENSE.txt`.
|
|
21
|
+
|
|
22
|
+
## [0.30.0] - 2026-08-02
|
|
23
|
+
|
|
24
|
+
### Added
|
|
25
|
+
- Expose MCP read operations as tools in a tools-only server: `list_/get_/count_<Set>`
|
|
26
|
+
inferred from the read hooks (#60).
|
|
27
|
+
- CORS header on the `$oas2` endpoint for Power Automate compatibility (#58).
|
|
28
|
+
|
|
29
|
+
## [0.21.4] - 2026-07-26
|
|
30
|
+
|
|
31
|
+
### Changed
|
|
32
|
+
- Mutation-tested and hardened the Schema entry-point API, `Executor`, `$oas2` renderer,
|
|
33
|
+
`$search` parser, entity keys, enum types, and the builder DSL; shrank the `.mutant.yml`
|
|
34
|
+
ratchet accordingly (#50–#56, #59).
|
|
35
|
+
|
|
36
|
+
### Documentation
|
|
37
|
+
- Documented nested mutability and typed-input accessor errors (#47).
|
|
38
|
+
|
|
39
|
+
## [0.21.3] - 2026-07-05
|
|
40
|
+
|
|
41
|
+
### Added
|
|
42
|
+
- Mutation testing with `mutant`; fixed recursive-type crashes it surfaced (#46).
|
|
43
|
+
|
|
44
|
+
### Documentation
|
|
45
|
+
- Documented the SimpleCov coverage workflow (#45).
|
|
46
|
+
|
|
47
|
+
## [0.21.0] - 2026-06-30
|
|
48
|
+
|
|
49
|
+
### Added
|
|
50
|
+
- `:non_insertable` property mutability value (#43).
|
|
51
|
+
|
|
52
|
+
### Documentation
|
|
53
|
+
- Documented per-operation `$oas2` request bodies (#44).
|
|
54
|
+
- Documented the `mutability:` axis and `:immutable` (#42).
|
|
55
|
+
|
|
56
|
+
## Earlier releases
|
|
57
|
+
|
|
58
|
+
See the [git tags](https://github.com/NEXL-LTS/odata_duty-ruby/tags) for the history of
|
|
59
|
+
releases prior to 0.21.0.
|
|
60
|
+
|
|
61
|
+
[Unreleased]: https://github.com/NEXL-LTS/odata_duty-ruby/compare/v0.30.1...HEAD
|
|
62
|
+
[0.30.1]: https://github.com/NEXL-LTS/odata_duty-ruby/compare/v0.30.0...v0.30.1
|
|
63
|
+
[0.30.0]: https://github.com/NEXL-LTS/odata_duty-ruby/compare/v0.21.4...v0.30.0
|
|
64
|
+
[0.21.4]: https://github.com/NEXL-LTS/odata_duty-ruby/compare/v0.21.3...v0.21.4
|
|
65
|
+
[0.21.3]: https://github.com/NEXL-LTS/odata_duty-ruby/compare/v0.21.0...v0.21.3
|
|
66
|
+
[0.21.0]: https://github.com/NEXL-LTS/odata_duty-ruby/compare/v0.20.1...v0.21.0
|
data/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 Nexl
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
data/README.md
CHANGED
|
@@ -11,7 +11,7 @@ It’s designed around the principle of _"define once, serve everywhere"_: you m
|
|
|
11
11
|
- ✅ Define your data model and logic in plain Ruby
|
|
12
12
|
- ✅ Support schema-based APIs (OpenAPI/Swagger)
|
|
13
13
|
- ✅ Avoid repeating business logic in multiple layers or formats
|
|
14
|
-
- ✅ Build for humans and
|
|
14
|
+
- ✅ Build for humans and work with reporting tools, automation tools, and LLMs simultaneously
|
|
15
15
|
|
|
16
16
|
---
|
|
17
17
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: odata_duty
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.30.
|
|
4
|
+
version: 0.30.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Grant Petersen-Speelman
|
|
@@ -92,6 +92,8 @@ executables: []
|
|
|
92
92
|
extensions: []
|
|
93
93
|
extra_rdoc_files: []
|
|
94
94
|
files:
|
|
95
|
+
- CHANGELOG.md
|
|
96
|
+
- LICENSE
|
|
95
97
|
- README.md
|
|
96
98
|
- lib/generators/odata_duty/entity_set/entity_set_generator.rb
|
|
97
99
|
- lib/generators/odata_duty/entity_set/templates/entity_set.rb.erb
|
|
@@ -141,9 +143,13 @@ files:
|
|
|
141
143
|
- lib/odata_duty/schema_builder/entity_type.rb
|
|
142
144
|
- lib/odata_duty/schema_builder/enum_type.rb
|
|
143
145
|
- lib/odata_duty/set_resolver.rb
|
|
144
|
-
homepage:
|
|
145
|
-
licenses:
|
|
146
|
+
homepage: https://github.com/NEXL-LTS/odata_duty-ruby
|
|
147
|
+
licenses:
|
|
148
|
+
- MIT
|
|
146
149
|
metadata:
|
|
150
|
+
homepage_uri: https://github.com/NEXL-LTS/odata_duty-ruby
|
|
151
|
+
source_code_uri: https://github.com/NEXL-LTS/odata_duty-ruby
|
|
152
|
+
changelog_uri: https://github.com/NEXL-LTS/odata_duty-ruby/blob/main/CHANGELOG.md
|
|
147
153
|
rubygems_mfa_required: 'true'
|
|
148
154
|
post_install_message:
|
|
149
155
|
rdoc_options: []
|