Skip to content

Commit

Permalink
Bump gem version to v2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
grzuy committed Dec 30, 2019
1 parent 1a42551 commit e01cf4d
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [v2.1.0] - 2019-12-30

### Added

- Ability to convert stored credential public key back to a ruby object with `WebAuthn::PublicKey.deserialize(stored_public_key)`, included the validation during de-serialization ([@ssuttner], [@padulafacundo])
- Improved TPM attestation validation by checking "Subject Alternative Name" ([@bdewater])
- Improved SafetyNet attestation validation by checking timestamp ([@padulafacundo])
- [EXPERIMENTAL] Ability to optionally "Assess the attestation trustworthiness" during registration by setting `acceptable_attestation_types` and `attestation_root_certificates_finders` configuration values ([@padulafacundo])
- Ruby 2.7 support without warnings

Note: Expect possible breaking changes for "EXPERIMENTAL" features.

This comment has been minimized.

Copy link
@bdewater

bdewater Dec 30, 2019

Collaborator

Needs a cherry-pick to master :)

This comment has been minimized.

Copy link
@grzuy

grzuy Dec 30, 2019

Author Contributor

👀

Thanks

This comment has been minimized.

Copy link
@grzuy

grzuy Dec 30, 2019

Author Contributor

Done

## [v2.0.0] - 2019-10-03

### Added
Expand Down Expand Up @@ -261,6 +273,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.1.0]: https://github.com/cedarcode/webauthn-ruby/compare/v2.0.0...v2.1.0/
[v2.0.0]: https://github.com/cedarcode/webauthn-ruby/compare/v1.18.0...v2.0.0/
[v1.18.0]: https://github.com/cedarcode/webauthn-ruby/compare/v1.17.0...v1.18.0/
[v1.17.0]: https://github.com/cedarcode/webauthn-ruby/compare/v1.16.0...v1.17.0/
Expand Down Expand Up @@ -289,3 +302,5 @@ Note: Both additions should help making it compatible with Chrome for Android 70
[@kalebtesfay]: https://github.com/kalebtesfay
[@MaximeNdutiye]: https://github.com/MaximeNdutiye
[@sorah]: https://github.com/sorah
[@ssuttner]: https://github.com/ssuttner
[@padulafacundo]: https://github.com/padulafacundo
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@

| Version | Supported |
| ------- | ------------------ |
| 2.1.z | :white_check_mark: |
| 2.0.z | :white_check_mark: |
| 1.18.z | :white_check_mark: |
| 1.17.z | :white_check_mark: |
| 1.16.z | :white_check_mark: |
| < 1.16 | :x: |
| < 1.17 | :x: |

## Reporting a Vulnerability

Expand Down
2 changes: 1 addition & 1 deletion lib/webauthn/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module WebAuthn
VERSION = "2.0.0"
VERSION = "2.1.0"
end
2 changes: 1 addition & 1 deletion spec/conformance/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ../..
specs:
webauthn (2.0.0)
webauthn (2.1.0)
awrence (~> 1.1)
bindata (~> 2.4)
cbor (~> 0.5.9)
Expand Down

0 comments on commit e01cf4d

Please sign in to comment.