mirror of
https://github.com/str4d/rage.git
synced 2025-04-04 11:27:43 +03:00
v0.7.1
This commit is contained in:
parent
a23763cbc3
commit
7a2ff3ad4f
11 changed files with 40 additions and 15 deletions
8
Cargo.lock
generated
8
Cargo.lock
generated
|
@ -45,7 +45,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "age"
|
name = "age"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aes",
|
"aes",
|
||||||
"age-core",
|
"age-core",
|
||||||
|
@ -90,7 +90,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "age-core"
|
name = "age-core"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64",
|
"base64",
|
||||||
"chacha20poly1305",
|
"chacha20poly1305",
|
||||||
|
@ -105,7 +105,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "age-plugin"
|
name = "age-plugin"
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"age-core",
|
"age-core",
|
||||||
"bech32",
|
"bech32",
|
||||||
|
@ -1767,7 +1767,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rage"
|
name = "rage"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"age",
|
"age",
|
||||||
"chrono",
|
"chrono",
|
||||||
|
|
|
@ -8,6 +8,16 @@ to 1.0.0 are beta releases.
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.7.1] - 2021-12-27
|
||||||
|
### Fixed
|
||||||
|
- In 0.7.0, Base64 decoding was moved to the `AgeStanza::body` method, with the
|
||||||
|
stanza parser only checking for valid Base64 characters. This caused the
|
||||||
|
parser to start accepting stanzas with non-canonical last body lines (where
|
||||||
|
the Base64 encoding would have trailing bits that could not be decoded into
|
||||||
|
full bytes); calling `AgeStanza::body` on these stanzas would cause a panic.
|
||||||
|
This release fixes the parser to reject non-canonical last body lines, turning
|
||||||
|
the panic back into an error.
|
||||||
|
|
||||||
## [0.7.0] - 2021-10-18
|
## [0.7.0] - 2021-10-18
|
||||||
### Added
|
### Added
|
||||||
- `age_core::secrecy`, which re-exports the `secrecy` crate.
|
- `age_core::secrecy`, which re-exports the `secrecy` crate.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "age-core"
|
name = "age-core"
|
||||||
description = "[BETA] Common functions used across the age crates"
|
description = "[BETA] Common functions used across the age crates"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
authors = ["Jack Grigg <thestr4d@gmail.com>"]
|
authors = ["Jack Grigg <thestr4d@gmail.com>"]
|
||||||
repository = "https://github.com/str4d/rage"
|
repository = "https://github.com/str4d/rage"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
|
@ -10,6 +10,11 @@ to 1.0.0 are beta releases.
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.2.1] - 2021-12-27
|
||||||
|
### Fixed
|
||||||
|
- Bumped `age-core` to 0.7.1 to fix a bug where non-canonical recipient stanza
|
||||||
|
bodies in an age file header would cause a panic instead of being rejected.
|
||||||
|
|
||||||
## [0.2.0] - 2021-10-18
|
## [0.2.0] - 2021-10-18
|
||||||
### Changed
|
### Changed
|
||||||
- MSRV is now 1.51.0.
|
- MSRV is now 1.51.0.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "age-plugin"
|
name = "age-plugin"
|
||||||
description = "[BETA] API for writing age plugins."
|
description = "[BETA] API for writing age plugins."
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
authors = ["Jack Grigg <thestr4d@gmail.com>"]
|
authors = ["Jack Grigg <thestr4d@gmail.com>"]
|
||||||
repository = "https://github.com/str4d/rage"
|
repository = "https://github.com/str4d/rage"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
age-core = { version = "0.7.0", path = "../age-core", features = ["plugin"] }
|
age-core = { version = "0.7.1", path = "../age-core", features = ["plugin"] }
|
||||||
bech32 = "0.8"
|
bech32 = "0.8"
|
||||||
chrono = "0.4"
|
chrono = "0.4"
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,11 @@ to 1.0.0 are beta releases.
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.7.1] - 2021-12-27
|
||||||
|
### Fixed
|
||||||
|
- Bumped `age-core` to 0.7.1 to fix a bug where non-canonical recipient stanza
|
||||||
|
bodies in an age file header would cause a panic instead of being rejected.
|
||||||
|
|
||||||
## [0.7.0] - 2021-10-18
|
## [0.7.0] - 2021-10-18
|
||||||
### Added
|
### Added
|
||||||
- `age::encrypted::Identity`, for decrypting files with passphrase-encrypted
|
- `age::encrypted::Identity`, for decrypting files with passphrase-encrypted
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "age"
|
name = "age"
|
||||||
description = "[BETA] A simple, secure, and modern encryption library."
|
description = "[BETA] A simple, secure, and modern encryption library."
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
authors = ["Jack Grigg <thestr4d@gmail.com>"]
|
authors = ["Jack Grigg <thestr4d@gmail.com>"]
|
||||||
repository = "https://github.com/str4d/rage"
|
repository = "https://github.com/str4d/rage"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
@ -14,7 +14,7 @@ edition = "2018"
|
||||||
maintenance = { status = "experimental" }
|
maintenance = { status = "experimental" }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
age-core = { version = "0.7.0", path = "../age-core" }
|
age-core = { version = "0.7.1", path = "../age-core" }
|
||||||
|
|
||||||
# Dependencies required by the age specification:
|
# Dependencies required by the age specification:
|
||||||
# - Base64 from RFC 4648
|
# - Base64 from RFC 4648
|
||||||
|
|
4
fuzz-afl/Cargo.lock
generated
4
fuzz-afl/Cargo.lock
generated
|
@ -30,7 +30,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "age"
|
name = "age"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"age-core",
|
"age-core",
|
||||||
"base64",
|
"base64",
|
||||||
|
@ -56,7 +56,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "age-core"
|
name = "age-core"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64",
|
"base64",
|
||||||
"chacha20poly1305",
|
"chacha20poly1305",
|
||||||
|
|
4
fuzz/Cargo.lock
generated
4
fuzz/Cargo.lock
generated
|
@ -17,7 +17,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "age"
|
name = "age"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"age-core",
|
"age-core",
|
||||||
"base64",
|
"base64",
|
||||||
|
@ -43,7 +43,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "age-core"
|
name = "age-core"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64",
|
"base64",
|
||||||
"chacha20poly1305",
|
"chacha20poly1305",
|
||||||
|
|
|
@ -10,6 +10,11 @@ to 1.0.0 are beta releases.
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.7.1] - 2021-12-27
|
||||||
|
### Fixed
|
||||||
|
- Fixed a bug in 0.7.0 where non-canonical recipient stanza bodies in an age
|
||||||
|
file header would cause `rage` to crash instead of being rejected.
|
||||||
|
|
||||||
## [0.7.0] - 2021-10-18
|
## [0.7.0] - 2021-10-18
|
||||||
### Added
|
### Added
|
||||||
- `-i/--identity` now accepts passphrase-encrypted age identity files.
|
- `-i/--identity` now accepts passphrase-encrypted age identity files.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "rage"
|
name = "rage"
|
||||||
description = "[BETA] A simple, secure, and modern encryption tool."
|
description = "[BETA] A simple, secure, and modern encryption tool."
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
authors = ["Jack Grigg <thestr4d@gmail.com>"]
|
authors = ["Jack Grigg <thestr4d@gmail.com>"]
|
||||||
repository = "https://github.com/str4d/rage"
|
repository = "https://github.com/str4d/rage"
|
||||||
readme = "../README.md"
|
readme = "../README.md"
|
||||||
|
@ -43,7 +43,7 @@ maintenance = { status = "experimental" }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# rage and rage-keygen dependencies
|
# rage and rage-keygen dependencies
|
||||||
age = { version = "0.7.0", path = "../age", features = ["armor", "cli-common", "plugin"] }
|
age = { version = "0.7.1", path = "../age", features = ["armor", "cli-common", "plugin"] }
|
||||||
chrono = "0.4"
|
chrono = "0.4"
|
||||||
console = { version = "0.15", default-features = false }
|
console = { version = "0.15", default-features = false }
|
||||||
env_logger = "0.9"
|
env_logger = "0.9"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue