Skip to content

Commit

Permalink
build: bump version to v3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
santiagorodriguez96 committed Nov 13, 2024
1 parent ae3f1fe commit f81eec1
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## [v3.2.0] - 2024-11-13

### Added

- Added `AuthenticatorAttestationResponse#transports` for accessing the response's `transports` value. #421 [@santiagorodriguez96]
- `WebAuthn::AuthenticatorAssertionResponse#verify` and `WebAuthn::AuthenticatorAttestationResponse#verify`,
as well as `RelyingParty#verify_registration` and `RelyingParty#verify_authentication` now accept a `user_presence`
keyword arg in order to be able to skip the user presence check for specific attestation and assertion verifications.
By default, user presence will be checked unless `silent_authentication` is enabled for the Relying Party (as it was before).
#432, #434, #435 ([@nov](https://github.com/nov), [@santiagorodriguez96])
- `WebAuthn::FakeClient#create` and `WebAuthn::FakeAuthenticator#make_credential` now support a `credential_algorithm` and
`algorithm` param (respectively) for choosing the algorithm to use for creating the credential.
Supported values are: 'ES256', 'RSA256' and 'EdDSA'. #400, #437 [@santiagorodriguez96]
- Remove `awrence` dependency. #436 [@npezza](https://github.com/npezza93)
- Run tests with Ruby 3.3. #416 [@santiagorodriguez96]
- Run tests with Ruby 3.4.0-preview2. #436 [@npezza](https://github.com/npezza93)

### Changed

- Remove unused class `AttestationTrustworthinessVerificationError`. #412 [@soartec-lab]

## [v3.1.0] - 2023-12-26

### Added
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 = "3.1.0"
VERSION = "3.2.0"
end

0 comments on commit f81eec1

Please sign in to comment.