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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.6.0",
"version": "0.7.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.5.0';
export const VERSION = '0.7.0';

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