xmi 0.7.1 → 0.7.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 +4 -4
- data/CHANGELOG.md +29 -0
- data/lib/xmi/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a22cfc924ac43626705d0adc35d932bff62d935001a2bde676ec3f0b639cf3fb
|
|
4
|
+
data.tar.gz: 35f16dfcc225665a88cf70d3fc1a9c5720c5fe4a1c64e3f7973b6fdb47197ead
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c4d7b2c9e3b50521736fe7f44afe34a1f6340e201673516d83fe2067433043da4aa5e136ad6f9a9b62ba1d21d708b8e67c48bac1dda25392da20de755bdfbcaf
|
|
7
|
+
data.tar.gz: 87aeb1af821d63b69b037d35db8018e61e4398280ed8879d73de31efcd8195d59a89f2860464272cb107443190eeeb67d52342e84de40e4f07c8cdc4bd923f12
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,35 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Gemspec: restore the optimistic `~> 0.8.17` constraint on
|
|
13
|
+
`lutaml-model`. The `< 0.8.20` cap added in 0.7.2 protected against
|
|
14
|
+
the 0.8.20 release, but that release has been yanked from
|
|
15
|
+
RubyGems — the cap is obsolete. A regression test in
|
|
16
|
+
`spec/xmi_gemspec_spec.rb` pins the constraint so the cap does not
|
|
17
|
+
silently come back
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
|
|
21
|
+
- Spec coverage for `Xmi::Sparx::Element::ExtendedProperties` (schema,
|
|
22
|
+
`associationclass` round-trip, literal EA attribute spelling)
|
|
23
|
+
|
|
24
|
+
## [0.7.1] - 2026-08-25
|
|
25
|
+
|
|
26
|
+
### Added
|
|
27
|
+
|
|
28
|
+
- `ExtendedProperties#associationclass` — parses EA's literal
|
|
29
|
+
`associationclass="EAID_…"` reference on connector
|
|
30
|
+
`<extendedProperties>`, linking a connector to its association class
|
|
31
|
+
|
|
32
|
+
### Changed
|
|
33
|
+
|
|
34
|
+
- RuboCop directive style migrated from disable/enable blocks to
|
|
35
|
+
next-line directives across spec files and `version_registry.rb`
|
|
36
|
+
|
|
37
|
+
## [0.7.0] - 2026-08-25
|
|
38
|
+
|
|
10
39
|
### Added
|
|
11
40
|
|
|
12
41
|
- `PackagedElement#nested_classifier` with `<nestedClassifier>` mapping
|
data/lib/xmi/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: xmi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ribose Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-08-
|
|
11
|
+
date: 2026-08-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: lutaml-model
|