Skip to content

1.5.20

Compare
Choose a tag to compare
@stevehu stevehu released this 05 Oct 12:24
· 564 commits to master since this release

1.5.20 (2018-10-05)

Full Changelog

Closed issues:

  • Handler needs to properly escape characters in the Status description #60
  • update default validator.yml and security.yml to framework specific #59
  • schema validation does not work for boolean query parameter #57

Upgrade Guidelines:

  • This is a release to fix defects and add new features so it is backward compatible.
  • A bug has been fixed in json-schema-validator, please upgrade it to version 0.1.23
  • For this release, we have introduced the framework specific security configuration to enable/disable JwtVerifyHandler. Depending on which framework you are using it might be swagger-security.yml or openapi-security.yml and here is an example.
# Enable JWT verification flag.
enableVerifyJwt: true

# Enable JWT scope verification. Only valid when enableVerifyJwt is true.
enableVerifyScope: true

The old security.yml is still in use to control how JwtHelper will behave. It also set enableVerifyJwt to true for backward compatibility if framework specific security config is not there.