Skip to content

Commit 486c43d

Browse files
build: prepare new 3.1.0 release
1 parent 6a5d7e9 commit 486c43d

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## [v3.1.0] - 2023-12-26
4+
5+
### Added
6+
7+
- Add support for optional `authenticator_attachment` in `PublicKeyCredential`. #370 [@8ma10s]
8+
9+
### Fixed
10+
11+
- Fix circular require warning between `webauthn/relying_party` and `webauthn/credential`. #389 [@bdewater]
12+
- Correctly verify attestation that contains just a batch certificate that is present in the attestation root certificates. #406 [@santiagorodriguez96]
13+
14+
### Changed
15+
16+
- Inlined `base64` implementation. #402 [@olleolleolle]
17+
- Raise a more descriptive error if input `challenge` is `nil` when verifying the `PublicKeyCredential`. #413 [@soartec-lab]
18+
319
## [v3.0.0] - 2023-02-15
420

521
### Added
@@ -358,6 +374,7 @@ Note: Both additions should help making it compatible with Chrome for Android 70
358374
- `WebAuthn::AuthenticatorAttestationResponse.valid?` can be used to validate fido-u2f attestations returned by the browser
359375
- Works with ruby 2.5
360376

377+
[v3.1.0]: https://github.com/cedarcode/webauthn-ruby/compare/v3.0.0...v3.1.0/
361378
[v3.0.0]: https://github.com/cedarcode/webauthn-ruby/compare/2-stable...v3.0.0/
362379
[v3.0.0.alpha2]: https://github.com/cedarcode/webauthn-ruby/compare/2-stable...v3.0.0.alpha2/
363380
[v3.0.0.alpha1]: https://github.com/cedarcode/webauthn-ruby/compare/v2.3.0...v3.0.0.alpha1

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 = "3.0.0"
4+
VERSION = "3.1.0"
55
end

0 commit comments

Comments
 (0)