Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release: v0.11.0 Pull Request #513

Merged
merged 1 commit into from
Jan 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,55 @@
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.

- - -
## v0.11.0 - 2025-01-22
#### Bug Fixes
- **(action)** add coreboot blobs into GetSources - (0f0a9a6) - AtomicFS
- **(ci)** stop scheduled docker container builds - (8617665) - AtomicFS
- **(cmd)** passing coreboot version into container - (38c7b20) - AtomicFS
- **(docker)** downgrade NodeJS for udk2017 - (23c8d31) - AtomicFS
- **(docker)** install newer NodeJS into edk2 containers - (52d5cd8) - AtomicFS
- create subgraph when multiple roots present - (942bc1b) - Marvin Drees
- undefined variable in Taskfile - (bbc46be) - AtomicFS
#### Build system
- **(deps)** bump github.com/go-playground/validator/v10 - (c90f456) - dependabot[bot]
- **(deps)** bump golang.org/x/crypto from 0.31.0 to 0.32.0 in /action - (5ac5e4a) - dependabot[bot]
- **(deps)** bump github.com/alecthomas/kong in /action - (943d480) - dependabot[bot]
- **(deps)** update anyio requirement in /.dagger-ci/daggerci - (3d6789e) - dependabot[bot]
- **(deps)** bump github.com/go-git/go-git/v5 in /action - (cb6d824) - dependabot[bot]
- **(deps)** bump docs/src/firmware-action-example - (f60fd1d) - dependabot[bot]
- **(deps)** bump github.com/go-git/go-git/v5 in /action - (e1ec222) - dependabot[bot]
#### Continuous Integration
- tweak release-prepare - (5d8cef1) - AtomicFS
#### Documentation
- fix changelog headline - (4fa835d) - AtomicFS
- fix dates in changelog - (01261dc) - AtomicFS
- unify firmare-action name in README - (c948e47) - AtomicFS
- update firmware-action installation instruction - (c760068) - AtomicFS
- update remaining '/action' reference - (1d6a465) - Marvin Drees
- add golang installation instructions - (ec9bbd1) - AtomicFS
#### Features
- **(cmd)** pass env vars into coreboot container - (16085ab) - AtomicFS
- **(cmd)** add functions to help with passing env vars into container - (1cefcf7) - AtomicFS
- **(cmd)** add functions for handling git describe - (2aebc88) - AtomicFS
#### Miscellaneous Chores
- **(action)** move golang code - (94b500f) - AtomicFS
- **(cmd)** unify assert parameters - (586199f) - AtomicFS
- **(docker)** bump coreboot docker containers from jammy to noble - (4ec7b9f) - AtomicFS
- **(linter)** cspell - (990ce12) - AtomicFS
- sort .gitignore alphabetically - (fcd2bf6) - AtomicFS
- change go mod path and imports - (be9a59a) - Marvin Drees
- cleanup after moving golang code - (07a5942) - AtomicFS
#### Refactoring
- **(cmd)** use DIY cache in /tmp for coreboot tests - (abdab2c) - AtomicFS
- **(cmd/test)** according to review - (6c14e86) - AtomicFS
- **(cmd/test)** use /tmp for cache in all tests - (4ef189c) - AtomicFS
- **(test)** test embedded coreboot version in compiled binary - (88ba083) - AtomicFS
#### Tests
- **(cmd)** passing of git describe into container - (1ccd2d4) - AtomicFS
- **(cmd)** orphaned node break DAG - (402447e) - AtomicFS

- - -


## v0.10.2 - 2024-12-19
#### Build system
Expand Down
2 changes: 1 addition & 1 deletion Taskfile.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
version: '3'
vars:
SEMVER: 'v0.10.2'
SEMVER: 'v0.11.0'
GOLANG_CODE_PATH: 'cmd/firmware-action'

includes:
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ runs:
steps:
- id: version
shell: bash
run: echo "version=v0.10.2" >> "${GITHUB_OUTPUT}"
run: echo "version=v0.11.0" >> "${GITHUB_OUTPUT}"

- id: arch
# This ARCH is used to fetch correct executable of firmware-action
Expand Down
2 changes: 1 addition & 1 deletion cmd/firmware-action/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func main() {
}
}

const firmwareActionVersion = "v0.10.2"
const firmwareActionVersion = "v0.11.0"

// CLI (Command Line Interface) holds data from environment
var CLI struct {
Expand Down
Loading