From 739c6fbec218e9b1ca29c2bb9148f87c824ec6eb Mon Sep 17 00:00:00 2001 From: "Sergey \"Shnatsel\" Davidoff" Date: Mon, 14 Oct 2024 16:41:13 +0100 Subject: [PATCH 1/2] update changelog for auditable-extract 0.3.5 --- auditable-extract/CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/auditable-extract/CHANGELOG.md b/auditable-extract/CHANGELOG.md index 84e3a19..0311174 100644 --- a/auditable-extract/CHANGELOG.md +++ b/auditable-extract/CHANGELOG.md @@ -5,12 +5,21 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.3.5] - 2024-10-14 + +### Changed + + - When extracting audit data from WASM, nested sections are now also checked for audit data. This makes extraction work for WebAssembly components. + ## [0.3.4] - 2024-05-08 ### Changed - Upgraded to `wasmparser` 0.207.0, removing nearly all dependencies with `unsafe` code in them - Enabled the `wasm` feature by default now that it doesn't pull in `unsafe` code + +### Added + - This changelog file ## [0.3.3] - 2024-05-03 From 611744aec24749acd71c8e70fbb4d518fb11b3b9 Mon Sep 17 00:00:00 2001 From: "Sergey \"Shnatsel\" Davidoff" Date: Mon, 14 Oct 2024 16:42:08 +0100 Subject: [PATCH 2/2] bump version --- Cargo.lock | 2 +- auditable-extract/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 304bf2d..e692d3f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -39,7 +39,7 @@ dependencies = [ [[package]] name = "auditable-extract" -version = "0.3.4" +version = "0.3.5" dependencies = [ "binfarce", "wasmparser", diff --git a/auditable-extract/Cargo.toml b/auditable-extract/Cargo.toml index b49e5c0..fcd17ff 100644 --- a/auditable-extract/Cargo.toml +++ b/auditable-extract/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "auditable-extract" -version = "0.3.4" +version = "0.3.5" authors = ["Sergey \"Shnatsel\" Davidoff "] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-secure-code/cargo-auditable"