Skip to content

docs: Minor formatting changes to release notes #216

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

Merged
merged 4 commits into from
Apr 10, 2025
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
1 change: 1 addition & 0 deletions Yubico.Core/src/Yubico.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ limitations under the License. -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageReleaseNotes>https://github.com/Yubico/Yubico.NET.SDK/releases/latest</PackageReleaseNotes>

<!-- StrongName signing -->
<SignAssembly>true</SignAssembly>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public YubiKeySignatureGenerator(
}

// Return the public key as an instance of PublicKey.
protected override PublicKey BuildPublicKey()
protected override System.Security.Cryptography.X509Certificates.PublicKey BuildPublicKey()
{
return _defaultGenerator.PublicKey;
}
Expand Down
1 change: 1 addition & 0 deletions Yubico.YubiKey/src/Yubico.YubiKey.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ limitations under the License. -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageReleaseNotes>https://github.com/Yubico/Yubico.NET.SDK/releases/latest</PackageReleaseNotes>
<!-- StrongName signing -->
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\Yubico.NET.SDK.snk</AssemblyOriginatorKeyFile>
Expand Down
16 changes: 8 additions & 8 deletions docs/users-manual/getting-started/whats-new.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,30 +24,30 @@ Release date: April 9th, 2025

Features:

- Curve25519 support has been added for PIV [#210](https://github.com/Yubico/Yubico.NET.SDK/pull/210):
- Curve25519 support has been added for PIV [(#210)](https://github.com/Yubico/Yubico.NET.SDK/pull/210):

- Keys can now be imported or generated using the Ed25519 and X25519 algorithms.
- The key agreement operation can be performed with an X25519 key.
- Digital signatures can now be created with a Ed25519 key.
- New related unit tests have been added.

- Unit tests have been added for RSA-3072 and RSA-4096 keys [#197](https://github.com/Yubico/Yubico.NET.SDK/pull/197).
- Unit tests have been added for RSA-3072 and RSA-4096 keys. [(#197)](https://github.com/Yubico/Yubico.NET.SDK/pull/197)

- Support for large APDUs has been improved [#208](https://github.com/Yubico/Yubico.NET.SDK/pull/208):
- Support for large APDUs has been improved [(#208)](https://github.com/Yubico/Yubico.NET.SDK/pull/208):

- When sending large APDU commands to a YubiKey via the smartcard connection, the CommandChainingTransform will now throw an exception when the cumulative APDU data (sent in chunks of up to 255 bytes) exceeds the max APDU size for the given YubiKey (varies based on firmware version; see SmartCardMaxApduSizes).
- When sending large APDU commands to a YubiKey via the smartcard connection, the CommandChainingTransform will now throw an exception when the cumulative APDU data (sent in chunks of up to 255 bytes) exceeds the max APDU size for the given YubiKey (varies based on firmware version; see [SmartCardMaxApduSizes](xref:Yubico.YubiKey.SmartCardMaxApduSizes)).

- Support for Ed25519 and P384 credentials has been added for FIDO [#186](https://github.com/Yubico/Yubico.NET.SDK/pull/186).
- Support for Ed25519 and P384 credentials has been added for FIDO. [(#186)](https://github.com/Yubico/Yubico.NET.SDK/pull/186)

- Ubuntu runners have been upgraded from version 20.04 to 22.04 to support the compilation of Yubico.NativeShims [#188](https://github.com/Yubico/Yubico.NET.SDK/pull/188).
- Ubuntu runners have been upgraded from version 20.04 to 22.04 to support the compilation of Yubico.NativeShims. [(#188)](https://github.com/Yubico/Yubico.NET.SDK/pull/188)

Bug Fixes:

- The default logger now only writes output for the "Error" log level unless another level is specified [#185](https://github.com/Yubico/Yubico.NET.SDK/pull/185). Previously, the logger wrote output for all log levels, which could become overly long and difficult to evaluate.
- The default logger now only writes output for the "Error" log level unless another level is specified. Previously, the logger wrote output for all log levels, which could become overly long and difficult to evaluate. [(#185)](https://github.com/Yubico/Yubico.NET.SDK/pull/185)

Miscellaneous:

- The [License](https://github.com/Yubico/Yubico.NET.SDK/blob/develop/LICENSE.txt) was updated to remove the information for the AesCmac.cs file from the Bouncy Castle library [#196](https://github.com/Yubico/Yubico.NET.SDK/pull/196).
- The [License](https://github.com/Yubico/Yubico.NET.SDK/blob/develop/LICENSE.txt) was updated to remove the information for the AesCmac.cs file from the Bouncy Castle library. [(#196)](https://github.com/Yubico/Yubico.NET.SDK/pull/196)

## 1.12.x Releases

Expand Down