Skip to content

Commit

Permalink
Merge pull request #558 from Nitrokey/release-180rc1
Browse files Browse the repository at this point in the history
Prepare release candidate 1.8.0
  • Loading branch information
sosthene-nitrokey authored Nov 20, 2024
2 parents 2296f58 + 5b53aa0 commit 709feb3
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 17 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

## Unreleased

- fido-authenticator: Implement the largeBlobKey extension and the largeBlobs command ([fido-authenticator#38][])

## v1.8.0-rc.1 (2024-11-07)

### Features

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

[admin-app#28]: https://github.com/Nitrokey/admin-app/issues/28
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ members = [
resolver = "2"

[workspace.package]
version = "1.7.2"
version = "1.8.0-rc.1"

[patch.crates-io]
# components
Expand Down
6 changes: 3 additions & 3 deletions components/apps/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ hex = "0.4"
# - all other optional apps require a Trussed client (+n)

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

# nkpk
nkpk = ["fido-authenticator", "factory-reset", "trussed/clients-2"]
Expand Down
5 changes: 0 additions & 5 deletions components/apps/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1079,15 +1079,10 @@ impl<R: Runner> App<R> for OpcardApp<R> {
use opcard::AllowedAlgorithms as Alg;
let algs = [
Alg::P_256,
#[cfg(feature = "nk3-test")]
Alg::P_384,
#[cfg(feature = "nk3-test")]
Alg::P_521,
#[cfg(feature = "nk3-test")]
Alg::BRAINPOOL_P256R1,
#[cfg(feature = "nk3-test")]
Alg::BRAINPOOL_P384R1,
#[cfg(feature = "nk3-test")]
Alg::BRAINPOOL_P512R1,
Alg::RSA_2048,
Alg::RSA_3072,
Expand Down

0 comments on commit 709feb3

Please sign in to comment.