fhirpath 0.2.0.pre2 → 0.2.0.pre3
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 +7 -0
- data/docs/feature-matrix.md +1 -1
- data/docs/release-checklist.md +2 -2
- data/docs/support-matrix.md +1 -1
- data/lib/fhirpath/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 55816199de3a062086023e1a40abdf4bf5496eab085f56d09c40348f3ef12099
|
|
4
|
+
data.tar.gz: e1a22be7cd54908b7824217559b82211feed90eda7884fe898341734875e05d8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 40667a9301563b5e7b8112234fcaaa13e9838efb83f5350b3aa5cd0aeb7ff40417320c8d296152c42a401873c857c5492ef20b3950434a525b4e36f46888d280
|
|
7
|
+
data.tar.gz: 166e58f9d11b4abe1c6ce4f646b367b1ff6da7f7273983d10442c40bc8757bc70b859fc02097ac657185e1d01df27cd6efd7d996684c24f9ac1a06116d542730
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,13 @@ All notable changes to this project are documented here. The project is pre-1.0;
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [0.2.0.pre3] - 2026-09-06
|
|
8
|
+
- Same library content as `0.2.0.pre2`. Version bumped because the earlier
|
|
9
|
+
`0.2.0.pre2` tag was pushed to RubyGems by a partial release run before the
|
|
10
|
+
workflow fix landed in PR #50, and RubyGems rejects repushing the same
|
|
11
|
+
version. Library code, capability set, and feature matrix are unchanged
|
|
12
|
+
from `0.2.0.pre2`; only the gem version and this changelog entry differ.
|
|
13
|
+
|
|
7
14
|
## [0.2.0.pre2] - 2026-09-06
|
|
8
15
|
- Add the `ofType()` function to the standard registry. Filters the receiver
|
|
9
16
|
collection to items whose runtime type matches the specified type identifier
|
data/docs/feature-matrix.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Feature and capability matrix
|
|
2
2
|
|
|
3
|
-
Status: `0.2.0.
|
|
3
|
+
Status: `0.2.0.pre3`; target release: FHIRPath `2.0.0`; publication contract: [`support-matrix.md`](support-matrix.md)
|
|
4
4
|
|
|
5
5
|
This matrix is deliberately conservative. `Supported` means the behavior is exercised by the Ruby test suite or the checked-in vector corpus. `Deferred` means callers should expect a structured unsupported/unknown error. `Host-dependent` requires an adapter or injected service that is not shipped here.
|
|
6
6
|
|
data/docs/release-checklist.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
This checklist is the gate for a reusable public release. It is intentionally explicit because a successful gem build is not the same as a legally releasable or conformant package.
|
|
4
4
|
|
|
5
|
-
## Current assessment (`0.2.0.
|
|
5
|
+
## Current assessment (`0.2.0.pre3`)
|
|
6
6
|
|
|
7
7
|
| Criterion | Status | Evidence / rationale |
|
|
8
8
|
|---|---|---|
|
|
@@ -44,7 +44,7 @@ Verification on Homebrew Ruby 4.0.4 (the repository's local bundle contains nati
|
|
|
44
44
|
- `bundle exec rake test`: 50 runs, 191 assertions, 0 failures, 0 errors, 0 skips;
|
|
45
45
|
- `bundle exec rubocop`: 31 files inspected, no offenses;
|
|
46
46
|
- `bundle exec rake vectors`: 8 total, 8 pass, 0 defect, 0 unsupported, 0 host-dependent, 0 not-run;
|
|
47
|
-
- `bundle exec rake build`: `pkg/fhirpath-0.2.0.
|
|
47
|
+
- `bundle exec rake build`: `pkg/fhirpath-0.2.0.pre3.gem` built;
|
|
48
48
|
- `script/verify_gem_install.sh`: clean isolated install and `1 + 2` smoke test passed;
|
|
49
49
|
- `COVERAGE=1 bundle exec rake test` plus `script/check_coverage.rb`: 88.9% (829/932 executable lines); and
|
|
50
50
|
- `git diff --check`: passed.
|
data/docs/support-matrix.md
CHANGED
data/lib/fhirpath/version.rb
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
module FHIRPath
|
|
4
|
-
VERSION = '0.2.0.
|
|
4
|
+
VERSION = '0.2.0.pre3'
|
|
5
5
|
# A stable release requires the complete release gate to be deliberately
|
|
6
6
|
# promoted. Keep pre-release status explicit while the shared-suite and
|
|
7
7
|
# model-adapter work remains incomplete.
|