Skip to content
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
2 changes: 1 addition & 1 deletion Yubico.NativeShims/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
"name": "yubico-nativeshims",
"version": "1.12.0",
"version": "1.13.2",
"dependencies": [
"openssl"
]
Expand Down
9 changes: 7 additions & 2 deletions build/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ for external milestones.

<PropertyGroup Label="Versions for all projects">

<!--
Common version for both projects. Can be overridden by the below properties if needed
-->
<CommonVersion>1.13.2</CommonVersion>

<!--
Yubico.Core project

Expand All @@ -43,7 +48,7 @@ for external milestones.

This project can, and should, use pre-release suffixes for development milestones.
-->
<YubicoCoreVersion>1.13.1</YubicoCoreVersion>
<YubicoCoreVersion>$(CommonVersion)</YubicoCoreVersion>

<!--
Yubico.Authenticator project
Expand All @@ -57,6 +62,6 @@ for external milestones.

This project can, and should, use pre-release suffixes for development milestones.
-->
<YubicoYubiKeyVersion>1.13.1</YubicoYubiKeyVersion>
<YubicoYubiKeyVersion>$(CommonVersion)</YubicoYubiKeyVersion>
</PropertyGroup>
</Project>
33 changes: 33 additions & 0 deletions docs/users-manual/getting-started/whats-new.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,39 @@ Here you can find all of the updates and release notes for published versions of

## 1.13.x Releases

### 1.13.2

Release date: July 3, 2025

This release introduces several new features for developers, including new version qualifiers for testing purposes, and raw access to the authenticators `MakeCredential` response message via `Fido2.MakeCredentialData.RawData`. It also includes method renamings for improved clarity. The documentation site has been significantly enhanced with light/dark mode, search functionality, and improved navigation. This version also addresses key bugs related to DLL resolution, attestation certificates, and PIV private key imports, and updates Nuget dependencies.

Features:
- New version qualifiers [#240](https://github.com/Yubico/Yubico.NET.SDK/pull/240)
- Raw access to MakeCredential response message [#225](https://github.com/Yubico/Yubico.NET.SDK/pull/225)
- Method renaming, e.g. RsaPublicKey.CreateFromPkcs8 to RsaPublicKey.CreateFromSubjectPublicKeyInfo [#243](https://github.com/Yubico/Yubico.NET.SDK/pull/243)

Documentation:
- Light/Dark Mode [#241](https://github.com/Yubico/Yubico.NET.SDK/pull/241)
- Search functionality [#241](https://github.com/Yubico/Yubico.NET.SDK/pull/241)
- Navigational improvements [#241](https://github.com/Yubico/Yubico.NET.SDK/pull/241)
- Improved docs surrounding YubiKey Bio Multiprotocol [#237](https://github.com/Yubico/Yubico.NET.SDK/pull/237)
- Fixed discrepancy in docs on attestation statement generation [#236](https://github.com/Yubico/Yubico.NET.SDK/pull/236)
- Changed wording for default management key value and algorithm [#233](https://github.com/Yubico/Yubico.NET.SDK/pull/233)
- Fix docs about encodings for PIV signing command [#239](https://github.com/Yubico/Yubico.NET.SDK/pull/239)

_(Docs can be found https://docs.yubico.com/yesdk/index.html)_

Bug fixes:
- Fixed issues related to DLL resolution and MacOS framework path [#255](https://github.com/Yubico/Yubico.NET.SDK/pull/255), [#211](https://github.com/Yubico/Yubico.NET.SDK/pull/211)
- Fixed issues related to attestation certs [#230](https://github.com/Yubico/Yubico.NET.SDK/pull/230)
- Fixed a problem related to PIV private key imports [#231](https://github.com/Yubico/Yubico.NET.SDK/pull/231)

Dependencies:
- Updated Nuget dependenices [#256](https://github.com/Yubico/Yubico.NET.SDK/pull/256), [#254](https://github.com/Yubico/Yubico.NET.SDK/pull/254), [#250](https://github.com/Yubico/Yubico.NET.SDK/pull/250)

Deprecations:
- Marked PivEccPublic, PivEccPrivateKey, PivRsaPublic, and PivRsaPrivateKey as obsolete, encouraging the use of ECPublicKey, ECPrivateKey, RSAPublicKey, and similar implementations instead [#231](https://github.com/Yubico/Yubico.NET.SDK/pull/231)

### 1.13.1

Release date: April 28th, 2025
Expand Down