Skip to content

NEWS: add 1.16.0 blurb #868

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

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
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
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ option(BUILD_STATIC_LIBS "Build a static library" ON)
option(BUILD_TOOLS "Build tool programs" ON)
option(FUZZ "Enable fuzzing instrumentation" OFF)
option(USE_HIDAPI "Use hidapi as the HID backend" OFF)
option(USE_PCSC "Enable experimental PCSC support" ON)
option(USE_PCSC "Enable experimental PCSC support" OFF)
option(USE_WINHELLO "Abstract Windows Hello as a FIDO device" ON)
option(NFC_LINUX "Enable NFC support on Linux" ON)

Expand Down
10 changes: 10 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
* Version 1.16.0 (unreleased)
** Added support for enterprise attestation.
** Improved handling of invalid key handles in U2F key lookup; gh#819.
** Fixed issue where storing small CTAP 2.1 largeBlobs failed; gh#826.
** Fixed APDU chaining issues for certain authenticators; gh#818, gh#855.
** Improved documentation and examples.
** New API calls:
- fido_cred_entattest;
- fido_cred_set_entattest.

* Version 1.15.0 (2024-06-13)
** 1.15.0 will be the last release to support OpenSSL 1.1.
** bio, credman: improved CTAP 2.1 support.
Expand Down
9 changes: 5 additions & 4 deletions windows/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,6 @@ if (-Not (Test-Path $GPG)) {
if ($Arch -eq "ARM" -and [string]::IsNullOrEmpty($WinSDK)) {
$WinSDK = '10.0.22621.0'
}
# Override Windows SDK version if $WinSDK is set.
if (-Not ([string]::IsNullOrEmpty($WinSDK))) {
$Arch = "$Arch,version=$WinSDK"
}

Write-Host "WinSDK: $WinSDK"
Write-Host "Config: $Config"
Expand Down Expand Up @@ -112,6 +108,11 @@ New-Item -Type Directory "${OUTPUT}" -Force
New-Item -Type Directory "${OUTPUT}\${Arch}" -Force
New-Item -Type Directory "${OUTPUT}\${Arch}\${Type}" -force

# Override Windows SDK version if $WinSDK is set.
if (-Not ([string]::IsNullOrEmpty($WinSDK))) {
$Arch = "$Arch,version=$WinSDK"
}

# Fetch and verify dependencies.
Push-Location ${BUILD}
try {
Expand Down
Loading