Skip to content

Commit 9bf8809

Browse files
authored
der v0.7.9 (#1375)
* .cargo/audit.toml: ignore RUSTSEC-2023-0071 (#1276) It's not actionable until a new release of the `rsa` crate is available * der v0.7.9 Changed - make sure der is comptatible with potential language breaking changed (backport of #1374) - ignore RUSTSEC-2023-0071 (backport of #1276)
1 parent ee80c47 commit 9bf8809

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

.cargo/audit.toml

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
[advisories]
22
ignore = [
33
"RUSTSEC-2021-0127", # serde_cbor is unmaintained
4+
"RUSTSEC-2023-0071", # rsa: Marvin Attack: potential key recovery
45
]

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

der/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 0.7.9 (2024-04-01)
8+
### Changed
9+
- ignore RUSTSEC-2023-0071 (backport [#1276])
10+
- make sure der is comptatible with potential language breaking changed (backport [#1374])
11+
12+
[#1276]: https://github.com/RustCrypto/formats/pull/1276
13+
[#1374]: https://github.com/RustCrypto/formats/pull/1374
14+
715
## 0.7.8 (2023-08-07)
816
### Added
917
- `bytes` feature ([#1156])

der/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "der"
3-
version = "0.7.8"
3+
version = "0.7.9"
44
description = """
55
Pure Rust embedded-friendly implementation of the Distinguished Encoding Rules
66
(DER) for Abstract Syntax Notation One (ASN.1) as described in ITU X.690 with

0 commit comments

Comments
 (0)