From 8ac49d339e5620cd3da6a01e76a83aa001158013 Mon Sep 17 00:00:00 2001 From: Akos Foldesi Date: Sat, 25 Apr 2026 11:47:14 +0200 Subject: [PATCH] EID-133 chore: bump @openeudi/core to 0.7.0 (sync with openid4vp@0.7.0) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Synchronized-versioning rule: @openeudi/core releases in lockstep with @openeudi/openid4vp. The companion 0.7.0 ships signed authorization requests (JAR / x509_san_dns), encrypted direct_post.jwt response handling, and the OpenID4VP 1.0 ยง8.1 envelope verifier; this is a metadata-only bump to keep the two packages aligned. Touches four version sites: - package.json: 0.6.0 โ†’ 0.7.0 - package-lock.json: 0.4.0 โ†’ 0.7.0 (also caught the 0.5.0 + 0.6.0 bumps which had skipped the lockfile) - src/index.ts VERSION constant: 0.5.0 โ†’ 0.7.0 (similarly caught up) - CHANGELOG.md: new [0.7.0] entry plus backfilled [0.6.0] entry (matches the existing 0.3.0/0.4.0/0.5.0 version-sync convention) Verify: 90/90 tests, type-check + build + pack clean, @openeudi/core@0.7.0 in pack metadata. ๐Ÿค– Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- CHANGELOG.md | 16 ++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- src/index.ts | 2 +- 4 files changed, 20 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae29984..9986c06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/), and this project adheres to [Semantic Versioning](https://semver.org/). +## [0.7.0] โ€” 2026-04-25 + +### Changed + +- Paired version bump with `@openeudi/openid4vp@0.7.0` (synchronized-versioning rule). No API change in `@openeudi/core` this release โ€” the openid4vp companion adds signed authorization requests (JAR / `x509_san_dns`), encrypted `direct_post.jwt` response handling, and the OpenID4VP 1.0 ยง8.1 envelope verifier; this bump keeps the two packages on parallel release cadences. + +[0.7.0]: https://github.com/openeudi/core/releases/tag/v0.7.0 + +## [0.6.0] โ€” 2026-04-24 + +### Changed + +- Paired version bump with `@openeudi/openid4vp@0.6.0` (synchronized-versioning rule). No API change in `@openeudi/core` โ€” the openid4vp companion surfaces dcql-native `value_mismatch` reasons after the dcql 0.2.0 upgrade. + +[0.6.0]: https://github.com/openeudi/core/releases/tag/v0.6.0 + ## [0.5.0] โ€” 2026-04-23 ### Changed diff --git a/package-lock.json b/package-lock.json index 861b600..49846fb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@openeudi/core", - "version": "0.4.0", + "version": "0.7.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@openeudi/core", - "version": "0.4.0", + "version": "0.7.0", "license": "Apache-2.0", "dependencies": { "uuid": "^11.1.0" diff --git a/package.json b/package.json index c8d4f72..400c5b7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@openeudi/core", - "version": "0.6.0", + "version": "0.7.0", "description": "Framework-agnostic EUDI Wallet verification protocol engine", "license": "Apache-2.0", "type": "module", diff --git a/src/index.ts b/src/index.ts index 8764ab9..8a25a29 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,5 @@ // @openeudi/core -- EUDI Wallet verification protocol engine -export const VERSION = '0.5.0'; +export const VERSION = '0.7.0'; // Types export { VerificationType, VerificationStatus } from './types/index.js';