Skip to content

Commit 9544853

Browse files
committed
Bump gem version to v2.5.0
1 parent 2e46a40 commit 9544853

File tree

4 files changed

+22
-6
lines changed

4 files changed

+22
-6
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@
66

77
- Ability to define multiple relying parties with the introduction of the `WebAuthn::RelyingParty` class ([@padulafacundo], [@brauliomartinezlm])
88

9+
## [v2.5.0] - 2021-03-14
10+
11+
### Added
12+
13+
- Support 'apple' attestation statement format ([#343](https://github.com/cedarcode/webauthn-ruby/pull/343) / [@juanarias93], [@santiagorodriguez96])
14+
- Allow specifying an array of ids as `allow_credentials:` for `FakeClient#get` method ([#335](https://github.com/cedarcode/webauthn-ruby/pull/335) / [@kingjan1999])
15+
16+
### Removed
17+
18+
- No longer accept "removed from the WebAuthn spec" options `rp: { icon: }` and `user: { icon: }` for `WebAuthn::Credential.options_for_create` method ([#326](https://github.com/cedarcode/webauthn-ruby/pull/326) / [@santiagorodriguez96])
19+
920
## [v2.4.1] - 2021-02-15
1021

1122
### Fixed
@@ -314,6 +325,7 @@ Note: Both additions should help making it compatible with Chrome for Android 70
314325
- Works with ruby 2.5
315326

316327
[v3.0.0.alpha1]: https://github.com/cedarcode/webauthn-ruby/compare/2-stable...v3.0.0.alpha1/
328+
[v2.5.0]: https://github.com/cedarcode/webauthn-ruby/compare/v2.4.1...v2.5.0/
317329
[v2.4.1]: https://github.com/cedarcode/webauthn-ruby/compare/v2.4.0...v2.4.1/
318330
[v2.4.0]: https://github.com/cedarcode/webauthn-ruby/compare/v2.3.0...v2.4.0/
319331
[v2.3.0]: https://github.com/cedarcode/webauthn-ruby/compare/v2.2.1...v2.3.0/
@@ -353,3 +365,5 @@ Note: Both additions should help making it compatible with Chrome for Android 70
353365
[@padulafacundo]: https://github.com/padulafacundo
354366
[@santiagorodriguez96]: https://github.com/santiagorodriguez96
355367
[@lgarron]: https://github.com/lgarron
368+
[@juanarias93]: https://github.com/juanarias93
369+
[@kingjan1999]: https://github.com/@kingjan1999

SECURITY.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@
44

55
| Version | Supported |
66
| ------- | ------------------ |
7+
| 2.5.z | :white_check_mark: |
78
| 2.4.z | :white_check_mark: |
89
| 2.3.z | :white_check_mark: |
9-
| 2.2.z | :white_check_mark: |
10+
| 2.2.z | :x: |
1011
| 2.1.z | :x: |
1112
| 2.0.z | :x: |
1213
| 1.18.z | :white_check_mark: |

lib/webauthn/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module WebAuthn
4-
VERSION = "2.4.1"
4+
VERSION = "2.5.0"
55
end

spec/conformance/Gemfile.lock

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ../..
33
specs:
4-
webauthn (2.4.1)
4+
webauthn (2.5.0)
55
android_key_attestation (~> 0.3.0)
66
awrence (~> 1.1)
77
bindata (~> 2.4)
@@ -16,9 +16,9 @@ GEM
1616
remote: https://rubygems.org/
1717
specs:
1818
android_key_attestation (0.3.0)
19-
awrence (1.1.1)
19+
awrence (1.2.1)
2020
backports (3.15.0)
21-
bindata (2.4.7)
21+
bindata (2.4.8)
2222
byebug (11.0.1)
2323
cbor (0.5.9.6)
2424
cose (1.2.0)
@@ -31,7 +31,8 @@ GEM
3131
mustermann (1.1.0)
3232
ruby2_keywords (~> 0.0.1)
3333
openssl (2.2.0)
34-
openssl-signature_algorithm (1.0.0)
34+
openssl-signature_algorithm (1.1.1)
35+
openssl (~> 2.0)
3536
rack (2.0.8)
3637
rack-contrib (2.1.0)
3738
rack (~> 2.0)

0 commit comments

Comments
 (0)