diff --git a/CHANGELOG.md b/CHANGELOG.md index e5315713..2958c35f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [v2.4.1] - 2021-02-15 + +### Fixed + +- Fix verification of new credential if no attestation provided and 'None' type is not among configured `acceptable_attestation_types`. I.e. reject it instead of letting it go through. + ## [v2.4.0] - 2020-09-03 ### Added @@ -301,6 +307,7 @@ Note: Both additions should help making it compatible with Chrome for Android 70 - `WebAuthn::AuthenticatorAttestationResponse.valid?` can be used to validate fido-u2f attestations returned by the browser - Works with ruby 2.5 +[v2.4.1]: https://github.com/cedarcode/webauthn-ruby/compare/v2.4.0...v2.4.1/ [v2.4.0]: https://github.com/cedarcode/webauthn-ruby/compare/v2.3.0...v2.4.0/ [v2.3.0]: https://github.com/cedarcode/webauthn-ruby/compare/v2.2.1...v2.3.0/ [v2.2.1]: https://github.com/cedarcode/webauthn-ruby/compare/v2.2.0...v2.2.1/ diff --git a/lib/webauthn/version.rb b/lib/webauthn/version.rb index dc99df9a..946b4a5e 100644 --- a/lib/webauthn/version.rb +++ b/lib/webauthn/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module WebAuthn - VERSION = "2.4.0" + VERSION = "2.4.1" end diff --git a/spec/conformance/Gemfile.lock b/spec/conformance/Gemfile.lock index 971910c2..ff5d04ee 100644 --- a/spec/conformance/Gemfile.lock +++ b/spec/conformance/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../.. specs: - webauthn (2.4.0) + webauthn (2.4.1) android_key_attestation (~> 0.3.0) awrence (~> 1.1) bindata (~> 2.4)