Skip to content

4.1.0

Compare
Choose a tag to compare
@github-actions github-actions released this 15 Nov 13:23
· 2433 commits to main since this release
7c9f660

Added

  • IRS can now check the readiness of external services. Use the new management.health.dependencies.enabled config entry to determine if external dependencies health checks should be checked (false by default).
    • The map of external services healthcheck endpoints can be configured with management.health.dependencies.urls property, eg. service_name: http://service_name_host/health

Changed

  • Changed name of spring's OAuth2 client registration from 'keycloak' to 'common' like below:
    spring:
      security:
        oauth2:
          client:
            registration:
              keycloak:
                authorization-grant-type: client_credentials
                client-id: 
                client-secret: 
            provider:
              keycloak:
                token-uri:
    
    to:
    spring:
      security:
        oauth2:
          client:
            registration:
              common:
                authorization-grant-type: client_credentials
                client-id: 
                client-secret: 
            provider:
              common:
                token-uri:
    
  • Update IRS API Swagger documentation to match AAS 3.0.0

Full Changelog: 4.0.1...4.1.0