fhir-persistence 0.6.0 → 0.6.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.
package/CHANGELOG.md CHANGED
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.6.1] - 2025-03-18
9
+
10
+ ### Changed
11
+
12
+ - **`fhir-runtime` dependency** — Upgraded from `^0.8.1` to `^0.10.0` to align with fhir-runtime v0.10.0 (STAGE-7: Profile Slicing & Choice Type utilities)
13
+ - No code changes required — `FhirRuntimeProvider` uses structural typing and is fully compatible with the new fhir-runtime API surface
14
+
15
+ ### Notes
16
+
17
+ - fhir-runtime v0.10.0 adds: Slicing API (`matchSlice`, `countSliceInstances`, `generateSliceSkeleton`), Choice Type utilities, BackboneElement helpers, and `inferComplexType` bug fix
18
+ - These new APIs are available to consumers via fhir-runtime but do not affect fhir-persistence internals
19
+
8
20
  ## [0.6.0] - 2025-03-17
9
21
 
10
22
  ### Added
package/README.md CHANGED
@@ -5,7 +5,7 @@ Embedded FHIR R4 persistence layer — CRUD, search, indexing, and schema migrat
5
5
  [![npm version](https://img.shields.io/npm/v/fhir-persistence)](https://www.npmjs.com/package/fhir-persistence)
6
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](./LICENSE)
7
7
 
8
- > **v0.6.0** — Full-text search (SQLite FTS5 + PostgreSQL tsvector/GIN), reindex progress callbacks, conditional operations API
8
+ > **v0.6.1** — Dependency upgrade: fhir-runtime ^0.10.0 (Profile Slicing & Choice Type support)
9
9
 
10
10
  ## Features
11
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fhir-persistence",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "Embedded FHIR R4 persistence layer — CRUD, search, indexing, schema migration over SQLite and PostgreSQL",
5
5
  "homepage": "https://github.com/medxaidev/fhir-persistence#readme",
6
6
  "license": "MIT",
@@ -67,7 +67,7 @@
67
67
  "dependencies": {
68
68
  "better-sqlite3": "^12.6.2",
69
69
  "fhir-definition": "^0.5.0",
70
- "fhir-runtime": "^0.8.1"
70
+ "fhir-runtime": "^0.10.0"
71
71
  },
72
72
  "devDependencies": {
73
73
  "@microsoft/api-extractor": "^7.57.7",