Skip to content

Commit 7a186de

Browse files
committed
Merge remote-tracking branch 'origin/main' into develop
2 parents 8635888 + 9894e8f commit 7a186de

4 files changed

Lines changed: 44 additions & 5 deletions

File tree

Yubico.NativeShims/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.15)
44
# Project version
55
#
66
if(NOT DEFINED PROJECT_VERSION)
7-
set(PROJECT_VERSION "1.14.0")
7+
set(PROJECT_VERSION "1.0.0")
88
endif()
99
set(VCPKG_MANIFEST_VERSION ${PROJECT_VERSION})
1010

Yubico.NativeShims/build-windows.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
param(
2-
[string]$Version
2+
[string]$Version = "1.0.0"
33
)
44

55
# Update to latest vcpkg baseline

build/Versions.props

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,17 @@ for external milestones.
3030

3131
<PropertyGroup Label="Versions for all projects">
3232

33-
<!--
34-
Common version for both projects. Can be overridden by the below properties if needed
33+
<!--
34+
Default development version. This value is used for local and automated CI builds
35+
(push, cron, PR). For release builds, the version is set via the workflow_dispatch
36+
input in build.yml, which overwrites this value at build time.
37+
38+
You do NOT need to update this file before a release.
39+
40+
Note: These versions do NOT affect Yubico.NativeShims, which is versioned independently
41+
via its own build pipeline (build-nativeshims.yml) and CMake configuration.
3542
-->
36-
<CommonVersion>1.15.2</CommonVersion>
43+
<CommonVersion>0.0.0-dev</CommonVersion>
3744

3845
<!--
3946
Yubico.Core project

docs/users-manual/getting-started/whats-new.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,38 @@ limitations under the License. -->
1616

1717
Here you can find all of the updates and release notes for published versions of the SDK.
1818

19+
## 1.16.x Releases
20+
21+
### 1.16.0
22+
23+
Release date: March 31st, 2026
24+
25+
Features:
26+
27+
- The FIDO2 application now supports SCP03 and SCP11 secure channels over USB CCID on YubiKeys with firmware version 5.8 and above. This enables encrypted communication with the FIDO2 application, matching the SCP support already available for PIV, OATH, OTP, and YubiHSM Auth. ([#428](https://github.com/Yubico/Yubico.NET.SDK/pull/428))
28+
29+
- ZLib compression and decompression support has been added via a new `ZlibStream` class. The `PivSession.KeyPairs` property now correctly handles compressed certificate formats. ([#417](https://github.com/Yubico/Yubico.NET.SDK/pull/417))
30+
31+
Bug Fixes:
32+
33+
- The MSVC C runtime is now statically linked in Yubico.NativeShims, removing the dependency on the Visual C++ Redistributable. **Additionally, `cmake_minimum_required` has been bumped to 3.15** for proper CMP0091 policy support, and an explicit `exit /b 0` has been added to prevent `findstr` exit codes from leaking into the build process. ([#427](https://github.com/Yubico/Yubico.NET.SDK/pull/427))
34+
35+
Documentation:
36+
37+
- NFC requirements and SCP usage examples have been added to the `Fido2Session` documentation. ([#428](https://github.com/Yubico/Yubico.NET.SDK/pull/428))
38+
39+
- Comments and logical grouping have been added to the NativeShims CMakeLists and readme. ([#427](https://github.com/Yubico/Yubico.NET.SDK/pull/427))
40+
41+
Miscellaneous:
42+
43+
- The Serilog dependency has been removed from integration tests and the sandbox app, simplifying the test project dependencies.
44+
45+
Dependencies:
46+
47+
- Several dependencies across the Yubico.Core, Yubico.YubiKey, and GitHub Actions workflows have been updated to newer versions. ([#424](https://github.com/Yubico/Yubico.NET.SDK/pull/424), [#429](https://github.com/Yubico/Yubico.NET.SDK/pull/429), [#430](https://github.com/Yubico/Yubico.NET.SDK/pull/430), [#432](https://github.com/Yubico/Yubico.NET.SDK/pull/432), [#433](https://github.com/Yubico/Yubico.NET.SDK/pull/433), [#435](https://github.com/Yubico/Yubico.NET.SDK/pull/435), [#436](https://github.com/Yubico/Yubico.NET.SDK/pull/436), [#437](https://github.com/Yubico/Yubico.NET.SDK/pull/437), [#438](https://github.com/Yubico/Yubico.NET.SDK/pull/438))
48+
49+
_________
50+
1951
## 1.15.x Releases
2052

2153
### 1.15.2

0 commit comments

Comments
 (0)