Skip to content

Commit 8ddf2ca

Browse files
author
records-bot
committed
sync: monorepo @ validator 0.1.14 / validation-types 0.1.5
Snapshot of medvertical/records monorepo state, exported via oss:export-validator. Tracks the npm publication of: @records-fhir/validator@0.1.14 @records-fhir/validation-types@0.1.5 Run npm i @records-fhir/validator@0.1.14 for the matching distribution. The conformance evidence in conformance-results/ matches the published tarball.
1 parent 98932d9 commit 8ddf2ca

7 files changed

Lines changed: 30 additions & 10 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
For production CI, pin an immutable patch tag:
4747
4848
```yaml
49-
- uses: medvertical/records-fhir-validator@v0.1.13
49+
- uses: medvertical/records-fhir-validator@v0.1.14
5050
with:
5151
paths: resources/**/*.json
5252
profile-url: http://hl7.org/fhir/StructureDefinition/Patient
@@ -59,7 +59,7 @@ Action pinning:
5959
| Goal | Pin in `uses:` | Notes |
6060
|---|---|---|
6161
| Latest stable in current major | `medvertical/records-fhir-validator@v0` | Floating tag, force-moved on stable releases only |
62-
| Exact released version | `medvertical/records-fhir-validator@v0.1.13` | Immutable consumer tag |
62+
| Exact released version | `medvertical/records-fhir-validator@v0.1.14` | Immutable consumer tag |
6363
| Bit-exact reproducibility | `medvertical/records-fhir-validator@<commit-sha>` | Best for audit and forensics |
6464

6565
The `validator-v<semver>` tag is the npm mirror/release-page tag. Use
@@ -68,7 +68,7 @@ The `validator-v<semver>` tag is the npm mirror/release-page tag. Use
6868
### npm Package
6969

7070
```sh
71-
npm install @records-fhir/validator@0.1.13 @records-fhir/validation-types@0.1.4
71+
npm install @records-fhir/validator@0.1.14 @records-fhir/validation-types@0.1.5
7272
```
7373

7474
Run the CLI against one file or a folder:
@@ -115,8 +115,8 @@ includes `file`, `resourceType`, `profileUrl`, and `issues`.
115115

116116
## What Is Included
117117

118-
- `@records-fhir/validator` 0.1.13 - Apache-2.0 validation engine.
119-
- `@records-fhir/validation-types` 0.1.4 - Apache-2.0 validation-domain types.
118+
- `@records-fhir/validator` 0.1.14 - Apache-2.0 validation engine.
119+
- `@records-fhir/validation-types` 0.1.5 - Apache-2.0 validation-domain types.
120120
- Composite GitHub Action at repository root.
121121
- Standalone examples under `packages/validator/examples/`.
122122
- Boundary audit and smoke-test scripts.

packages/validation-types/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,15 @@ captures changes that affect type-package consumers directly.
1111

1212
## [Unreleased]
1313

14+
## [0.1.5] — 2026-06-23
15+
16+
Released alongside `@records-fhir/validator` 0.1.14.
17+
18+
### Surface
19+
20+
- Published the issue-identity helper exports, including
21+
`computeValidationIssueId`, required by the validator runtime and CLI.
22+
1423
## [0.1.4] — 2026-05-28
1524

1625
Released alongside `@records-fhir/validator` 0.1.10.

packages/validation-types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@records-fhir/validation-types",
3-
"version": "0.1.4",
3+
"version": "0.1.5",
44
"description": "Validation-domain TypeScript types for the Records FHIR validator: ValidationIssue, ValidationSettings, ValidationResult, advisor rules, fix suggestions. No runtime code, no DB coupling.",
55
"type": "module",
66
"license": "Apache-2.0",

packages/validator/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,17 @@ ship together; package-only changes are noted under each release.
1010

1111
## [Unreleased]
1212

13+
## [0.1.14] — 2026-06-23
14+
15+
Runtime patch release for the standalone CLI package. Released with
16+
`@records-fhir/validation-types` 0.1.5.
17+
18+
### Fixes
19+
20+
- Pinned the validator runtime dependency to `@records-fhir/validation-types`
21+
0.1.5 so npm installs include the issue-identity helper exports required by
22+
the CLI and validation engine.
23+
1324
## [0.1.13] — 2026-06-23
1425

1526
Public usability polish for the standalone validator package and public mirror.

packages/validator/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ depending on your trade-off between freshness and stability:
8989
| Goal | Pin in `uses:` | Notes |
9090
|---|---|---|
9191
| Always-latest within current major | `medvertical/records-fhir-validator@v0` | Force-moved on every stable release; never advances onto a prerelease |
92-
| Specific minor/patch (recommended for production CI) | `medvertical/records-fhir-validator@v0.1.13` | Immutable once published |
92+
| Specific minor/patch (recommended for production CI) | `medvertical/records-fhir-validator@v0.1.14` | Immutable once published |
9393
| Bit-exact reproducibility | `medvertical/records-fhir-validator@<commit-sha>` | For audit / forensic builds |
9494

9595
The `validator-v<semver>` tag you may see on the public repo's release

packages/validator/examples/github-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
fhir-version: R4
2929
fail-on: error
3030
# Pin the validator version for reproducible CI:
31-
# validator-version: '0.1.13'
31+
# validator-version: '0.1.14'
3232
# Default `warn` keeps CI output focused on validation
3333
# annotations; raise to `info` or `debug` when troubleshooting:
3434
# log-level: warn

packages/validator/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@records-fhir/validator",
3-
"version": "0.1.13",
3+
"version": "0.1.14",
44
"description": "Pure-TypeScript FHIR R4/R5/R6 validation engine. Validates resources against StructureDefinitions, terminology, references, and custom rules with no database required.",
55
"type": "module",
66
"license": "Apache-2.0",
@@ -121,7 +121,7 @@
121121
"pack:dry": "npm pack --dry-run"
122122
},
123123
"dependencies": {
124-
"@records-fhir/validation-types": "^0.1.4",
124+
"@records-fhir/validation-types": "^0.1.5",
125125
"axios": "^1.16.1",
126126
"date-fns": "^4.4.0",
127127
"fhirpath": "^4.11.0",

0 commit comments

Comments
 (0)