Skip to content

Commit 709feb3

Browse files
Merge pull request #558 from Nitrokey/release-180rc1
Prepare release candidate 1.8.0
2 parents 2296f58 + 5b53aa0 commit 709feb3

File tree

5 files changed

+14
-17
lines changed

5 files changed

+14
-17
lines changed

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22

33
## Unreleased
44

5+
- fido-authenticator: Implement the largeBlobKey extension and the largeBlobs command ([fido-authenticator#38][])
6+
7+
## v1.8.0-rc.1 (2024-11-07)
8+
59
### Features
610

7-
- fido-authenticator: Implement the largeBlobKey extension and the largeBlobs command ([fido-authenticator#38][])
8-
- piv: Fix crash when changing PUK ([piv-authenticator#38][])
911
- OpenPGP: add support for additional curves when using the se050 backend: ([#524][])
1012
- NIST P-384
1113
- NIST P-521
@@ -14,7 +16,7 @@
1416
- brainpoolp512r1
1517
- admin-app: Add command to list all supported config fields ([admin-app#28][])
1618
- admin-app: Add `opcard.disabled` configuration option to disable OpenPGP ([#539][])
17-
- piv: Use SE050 and encrypt data on external flash ([#534][])
19+
- piv: Add support for PIV, powered by the SE050 secure element ([#534][])
1820
- Improve external flash mounting to decrease startup time ([#440][])
1921

2022
[admin-app#28]: https://github.com/Nitrokey/admin-app/issues/28

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ members = [
1010
resolver = "2"
1111

1212
[workspace.package]
13-
version = "1.7.2"
13+
version = "1.8.0-rc.1"
1414

1515
[patch.crates-io]
1616
# components

components/apps/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ hex = "0.4"
5757
# - all other optional apps require a Trussed client (+n)
5858

5959
# nk3
60-
nk3 = ["fido-authenticator", "ndef-app", "secrets-app", "opcard", "factory-reset", "trussed/clients-4"]
61-
nk3-test = ["nk3", "piv-authenticator", "trussed/clients-5"]
62-
nk3-provisioner = ["nk3", "provisioner-app", "trussed/clients-5"]
60+
nk3 = ["fido-authenticator", "ndef-app", "secrets-app", "opcard", "piv-authenticator", "factory-reset", "trussed/clients-5"]
61+
nk3-test = ["nk3", "trussed/clients-5"]
62+
nk3-provisioner = ["nk3", "provisioner-app", "trussed/clients-6"]
6363

6464
# nkpk
6565
nkpk = ["fido-authenticator", "factory-reset", "trussed/clients-2"]

components/apps/src/lib.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1079,15 +1079,10 @@ impl<R: Runner> App<R> for OpcardApp<R> {
10791079
use opcard::AllowedAlgorithms as Alg;
10801080
let algs = [
10811081
Alg::P_256,
1082-
#[cfg(feature = "nk3-test")]
10831082
Alg::P_384,
1084-
#[cfg(feature = "nk3-test")]
10851083
Alg::P_521,
1086-
#[cfg(feature = "nk3-test")]
10871084
Alg::BRAINPOOL_P256R1,
1088-
#[cfg(feature = "nk3-test")]
10891085
Alg::BRAINPOOL_P384R1,
1090-
#[cfg(feature = "nk3-test")]
10911086
Alg::BRAINPOOL_P512R1,
10921087
Alg::RSA_2048,
10931088
Alg::RSA_3072,

0 commit comments

Comments
 (0)