From cc450b75f70479410f6e6301dc0d6346b4bdccd3 Mon Sep 17 00:00:00 2001 From: JamieDanielson Date: Wed, 16 Oct 2024 17:41:10 -0400 Subject: [PATCH 1/3] rel: prep v0.12.0 --- CHANGELOG.md | 13 +++++++++++++ RELEASING.md | 26 +++++++++++++++++++++++--- 2 files changed, 36 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 76ad201..ed4566c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # buildevents-orb changelog +## [0.12.0] - 2024-10-17 + +### Enhancements + +- feat(w3c): partially implement w3c tracecontext (#110) | [Liz Fong-Jones](https://github.com/lizthegrey) + +### Maintenance + +- maint(deps): upgrade buildevents binary (#111) | [Liz Fong-Jones](https://github.com/lizthegrey) +- docs: update vulnerability reporting process (#109) | [Robb Kidd](https://github.com/robbkidd) +- maint: update repo for pipeline team ownership (#108) | [Jamie Danielson](https://github.com/JamieDanielson) +- change codeowners to pipeline (#107) | [Brooke Sargent](https://github.com/brookesargent) + ## [0.11.1] - 2024-03-19 ### Fixed diff --git a/RELEASING.md b/RELEASING.md index 763e52e..97994d5 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -1,8 +1,28 @@ # Releasing -- Update `CHANGELOG.md` with the changes since the last release. Consider automating with a command such as these two: - - `git log $(git describe --tags --abbrev=0)..HEAD --no-merges --oneline > new-in-this-release.log` - - `git log --pretty='%C(green)%d%Creset- %s | [%an](https://github.com/)'` +- Update `CHANGELOG.md` with the changes since the last release. + - Use below command to get a list of all commits since last release + + ```sh + git log ..HEAD --pretty='%Creset- %s | [%an](https://github.com/%an)' + ``` + + - Copy the output from the command above into the top of [changelog](./CHANGELOG.md) + - fix each `https://github.com/` to point to the correct github username + (the `git log` command can't do this automatically) + - organize each commit based on their prefix into below three categories: + + ```sh + ### Features + - + + ### Fixes + - + + ### Maintenance + - + ``` + - Commit changes, push, and open a release preparation pull request for review. - Once the pull request is merged, fetch the updated `main` branch. - Apply a tag for the new version on the merged commit (e.g. `git tag -a v2.3.1 -m "v2.3.1"`) From f832919fda1f4a5077fa8ec8ba162b69d1947388 Mon Sep 17 00:00:00 2001 From: JamieDanielson Date: Wed, 16 Oct 2024 17:58:38 -0400 Subject: [PATCH 2/3] example should also be updated --- RELEASING.md | 1 + src/examples/example.yml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/RELEASING.md b/RELEASING.md index 97994d5..cb64369 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -1,5 +1,6 @@ # Releasing +- Update [example](./src/examples/example.yml) with new version to be released. - Update `CHANGELOG.md` with the changes since the last release. - Use below command to get a list of all commits since last release diff --git a/src/examples/example.yml b/src/examples/example.yml index fb6b357..3e0b249 100644 --- a/src/examples/example.yml +++ b/src/examples/example.yml @@ -2,7 +2,7 @@ description: Basic usage of the buildevents-orb. usage: version: 2.1 orbs: - buildevents: honeycombio/buildevents@0.11.0 + buildevents: honeycombio/buildevents@0.12.0 shellcheck: circleci/shellcheck@3.2.0 workflows: ci: From 7ab1dacd157967851d6fa6fcfdeb5589f83f2112 Mon Sep 17 00:00:00 2001 From: JamieDanielson Date: Thu, 17 Oct 2024 13:35:17 -0400 Subject: [PATCH 3/3] add traceid and traceparent feat --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ed4566c..e3b9b9c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ ### Enhancements - feat(w3c): partially implement w3c tracecontext (#110) | [Liz Fong-Jones](https://github.com/lizthegrey) +- feat(w3c): add BE trace_id and TRACEPARENT to env (#114) | [Liz Fong-Jones](https://github.com/lizthegrey) ### Maintenance