Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ 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.8.0] — 2026-04-26

### Changed

- Paired version bump with `@openeudi/openid4vp@0.8.0` (synchronized-versioning rule). No API change in `@openeudi/core` this release — the openid4vp companion adds an ID3-compatibility `client_metadata` bridge in `createSignedAuthorizationRequest`, an opt-in `ParseOptions.trustedIssuerJwks` trust path for SD-JWT VCs without `x5c`, and a transitive SD-JWT disclosure-hash check (fix for false-rejection of PID-style VCs); this bump keeps the two packages on parallel release cadences.

[0.8.0]: https://github.com/openeudi/core/releases/tag/v0.8.0

## [0.7.0] — 2026-04-25

### Changed
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openeudi/core",
"version": "0.7.0",
"version": "0.8.0",
"description": "Framework-agnostic EUDI Wallet verification protocol engine",
"license": "Apache-2.0",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// @openeudi/core -- EUDI Wallet verification protocol engine
export const VERSION = '0.7.0';
export const VERSION = '0.8.0';

// Types
export { VerificationType, VerificationStatus } from './types/index.js';
Expand Down