Skip to content

Latest commit

 

History

History
75 lines (54 loc) · 1.97 KB

File metadata and controls

75 lines (54 loc) · 1.97 KB

Changelog

[Unreleased]

Breaking Changes

  • Configuration Refactoring: Migrated to centralized key_config using pki.KeyConfig across all services. All signing key configurations now use the unified PKI package structure. Existing configurations will fail validation without these updates.

    Migration: Update your configuration files with the new key_config structure:

    Issuer (see issuer section in config.yaml):

    issuer:
      key_config:
        private_key_path: "/pki/signing_ec_private.pem"
        chain_path: "/pki/signing_ec_chain.pem"

    Verifier (see verifier section in config.yaml):

    verifier:
      # Shared signing key configuration used for OAuth metadata, OIDC, and OpenID4VP
      key_config:
        private_key_path: "/pki/signing_ec_private.pem"
        chain_path: "/pki/signing_ec_chain.pem"

    Registry (see registry.token_status_lists section in config.yaml):

    registry:
      token_status_lists:
        key_config:
          private_key_path: "/pki/signing_ec_private.pem"
          chain_path: "/pki/signing_ec_chain.pem"

    APIGW (see apigw section in config.yaml):

    apigw:
      registry_external_url: "http://registry.example.com:8080"  # New required field
      key_config:
        private_key_path: "/pki/signing_ec_private.pem"
        chain_path: "/pki/signing_ec_chain.pem"

    See complete examples in config.yaml.

[0.3.2] - 2024-04-29

Change

[0.3.1] - 2024-04-24

Changed

  • Change iso3166-1-alpha-3 to iso3166-1-alpha-2

[0.3.0] - 2024-04-22

Added

  • Add sd-jwt PDA1 and EHIC creation in Issuer #43
  • add Tracing #21
  • Add TLS to http server #25
  • Add async communication to surrounding system
  • Add Swagger endpoint

Changed

  • Fixed API version 2.4 #39
  • Got rid of haproxy

Fixed