Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโ€™ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PM-12278] Upgrade SDK to fix EncString type downgrades #952

Merged
merged 2 commits into from
Sep 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ class MockClientFido2Client: ClientFido2ClientProtocol {
)

func authenticate(
origin: String,
origin: BitwardenSdk.Origin,
request: String,
clientData: BitwardenSdk.ClientData
) async throws -> BitwardenSdk.PublicKeyCredentialAuthenticatorAssertionResponse {
try authenticateResult.get()
}

func register(
origin: String,
origin: BitwardenSdk.Origin,
request: String,
clientData: BitwardenSdk.ClientData
) async throws -> BitwardenSdk.PublicKeyCredentialAuthenticatorAttestationResponse {
Expand Down
2 changes: 1 addition & 1 deletion project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ settings:
packages:
BitwardenSdk:
url: https://github.com/bitwarden/sdk-swift
revision: a09d0dc8f3ef3e27bc45407d58d4df89e61d438e
revision: b5853c98f31ff9230c5eff83888081ea34c76afe
Firebase:
url: https://github.com/firebase/firebase-ios-sdk
exactVersion: 10.24.0
Expand Down
Loading