From a7361ccc749d18cfae478a3a14df1033a48d7883 Mon Sep 17 00:00:00 2001 From: rvlb Date: Wed, 17 Dec 2025 17:11:38 -0300 Subject: [PATCH 1/2] 1.1.0 release --- CHANGELOG.md | 7 +++++++ demo/medplum-shl/package.json | 2 +- demo/shc/package.json | 2 +- demo/shl/package.json | 2 +- package.json | 2 +- 5 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 638869e..c624c25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.1.0] + +### Added + +- **Directories support**: `SHC` validation using `SHCReader` now supports the usage of directories for public key resolution and for revocation status check +- **Revocation identifier support**: `SHCIssuer` can now issue `SHC` with a `rid` (revocation identifier) value, which can be used to determine if that Smart Health Card has been revoked + ## [1.0.2] ### Fixed diff --git a/demo/medplum-shl/package.json b/demo/medplum-shl/package.json index c89744d..7864b9f 100644 --- a/demo/medplum-shl/package.json +++ b/demo/medplum-shl/package.json @@ -1,6 +1,6 @@ { "name": "shl-demo", - "version": "1.0.2", + "version": "1.1.0", "private": true, "type": "module", "scripts": { diff --git a/demo/shc/package.json b/demo/shc/package.json index d484509..88c5af8 100644 --- a/demo/shc/package.json +++ b/demo/shc/package.json @@ -1,6 +1,6 @@ { "name": "kill-the-clipboard-demo", - "version": "1.0.2", + "version": "1.1.0", "private": true, "description": "Demo application demonstrating SMART Health Cards QR code generation and scanning - FOR TESTING ONLY", "type": "module", diff --git a/demo/shl/package.json b/demo/shl/package.json index 082b723..d0de0d9 100644 --- a/demo/shl/package.json +++ b/demo/shl/package.json @@ -1,6 +1,6 @@ { "name": "shl-demo", - "version": "1.0.2", + "version": "1.1.0", "private": true, "type": "module", "scripts": { diff --git a/package.json b/package.json index 9a4c058..cb65bf6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "kill-the-clipboard", - "version": "1.0.2", + "version": "1.1.0", "description": "JavaScript/TypeScript universal (browser and node) library to generate QR codes containing medical records for patients to share with providers. Implements both the SMART Health Cards Framework and SMART Health Links Protocol for handling FHIR-based medical records.", "type": "module", "main": "./dist/index.cjs", From 3c83f9ccac0e974ba44bf1419e9490b47a1f5fa8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fl=C3=A1vio=20Juvenal?= Date: Thu, 18 Dec 2025 09:07:36 -0300 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c624c25..7ee25c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,8 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added -- **Directories support**: `SHC` validation using `SHCReader` now supports the usage of directories for public key resolution and for revocation status check -- **Revocation identifier support**: `SHCIssuer` can now issue `SHC` with a `rid` (revocation identifier) value, which can be used to determine if that Smart Health Card has been revoked +- **[VCI Directory](https://github.com/the-commons-project/vci-directory) support**: `SHC` validation using `SHCReader` now supports the usage of public directories for public key resolution and for revocation status check +- **Revocation identifier support**: `SHCIssuer` can now issue `SHC` with a `rid` (revocation identifier) value, which can be used to determine if that SMART Health Card has been revoked ## [1.0.2]