From 71e09a53082f45bb86583ee9a5585bf0165d0381 Mon Sep 17 00:00:00 2001 From: Brad Larsen Date: Tue, 14 May 2024 13:07:09 -0400 Subject: [PATCH 1/2] Used bugfix in gix-date --- CHANGELOG.md | 2 ++ Cargo.lock | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f581955d..475bdf192 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -53,6 +53,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### Fixes +- A rare crash when parsing malformed Git commit timestamps has been fixed by updating the `gix-date` dependency. + - Upon `noseyparker` startup, if resource limits cannot be adjusted, instead of crashing, a warning is printed and the process attempts to continue ([#170](https://github.com/praetorian-inc/noseyparker/issues/170)). - The prepackaged releases and binaries produced by the default settings of `cargo build` should now be more portable across microarchitectures ([#175](https://github.com/praetorian-inc/noseyparker/pull/175)). diff --git a/Cargo.lock b/Cargo.lock index 5c5f6eb7f..b933ce24c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1160,9 +1160,9 @@ dependencies = [ [[package]] name = "gix-date" -version = "0.8.5" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "180b130a4a41870edfbd36ce4169c7090bca70e195da783dea088dd973daa59c" +checksum = "367ee9093b0c2b04fd04c5c7c8b6a1082713534eab537597ae343663a518fa99" dependencies = [ "bstr", "itoa", From 75a4b84fe907ae6c52785106d72dec701eafa68b Mon Sep 17 00:00:00 2001 From: Brad Larsen Date: Tue, 14 May 2024 13:09:24 -0400 Subject: [PATCH 2/2] Add PR link to changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 475bdf192..8a555e0d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -53,7 +53,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### Fixes -- A rare crash when parsing malformed Git commit timestamps has been fixed by updating the `gix-date` dependency. +- A rare crash when parsing malformed Git commit timestamps has been fixed by updating the `gix-date` dependency ([#185](https://github.com/praetorian-inc/noseyparker/pull/185)). - Upon `noseyparker` startup, if resource limits cannot be adjusted, instead of crashing, a warning is printed and the process attempts to continue ([#170](https://github.com/praetorian-inc/noseyparker/issues/170)).