From f5f2dfcd6987b539aca6a33ee254fe3c39e3428d Mon Sep 17 00:00:00 2001 From: Jeffrey Huynh Date: Wed, 4 Oct 2023 11:20:37 -0700 Subject: [PATCH] =?UTF-8?q?Adding=20new=20changelog=20for=20v0.3.0.=20Vers?= =?UTF-8?q?ion=20bump=20in=20cargo.toml.=20Update=20r=E2=80=A6=20(#137)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 9 +++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- docs/dev/README.md | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e4e7dc35..80aed3d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## v0.3.0 + +Features: +- Broker is able to toggle if users want to scan branches, as well as being able to target specific branches to scan. Broker is also + able to toggle scanning tags. +- Broker checks for early network misconfigurations with preflight checks +- Broker fix surfaces failing integration scans +- Broker now does not fail fatally if `fossa analyze` returns an error, and instead just reports the errors as a warning +- Broker now detects unknown fields in config and returns errors ## v0.2.3 diff --git a/Cargo.lock b/Cargo.lock index 98bb9275..c3a03001 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -263,7 +263,7 @@ dependencies = [ [[package]] name = "broker" -version = "0.3.0-pre" +version = "0.3.0" dependencies = [ "aho-corasick 0.7.20", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 9758fa6b..21c876f2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "broker" -version = "0.3.0-pre" +version = "0.3.0" edition = "2021" description = "The bridge between FOSSA and internal DevOps services" readme = "README.md" diff --git a/docs/dev/README.md b/docs/dev/README.md index f24f45be..3b852089 100644 --- a/docs/dev/README.md +++ b/docs/dev/README.md @@ -149,7 +149,7 @@ matching the `version` field, with a `v` prefix. In the future, the plan is to automate the release process with `make release`. -**It is recommended** to instead use `cargo release`, which automates much of this process and has +**It is recommended** to instead use `cargo release` (`cargo install cargo-release` for installation), which automates much of this process and has some safety checks (for example it ensures you're tagging on `main`): ```