-
Notifications
You must be signed in to change notification settings - Fork 0
Create v5.0.0.md #110
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
Merged
Merged
Create v5.0.0.md #110
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
9320d6a
Create v5.0.0.md
keroxp c070791
Update v5.0.0.md
keroxp 8315ac2
Update v5.0.0.md
keroxp 8c5ca81
Update README.md
keroxp e785cb4
Merge branch 'main' into v5-release
keroxp 224557a
Merge branch 'main' into v5-release
keroxp df0a024
write
keroxp 8b9376a
Merge branch 'main' into v5-release
keroxp d578492
Update README.md
keroxp 6cebb53
Update changelogs/v5.0.0.md
keroxp 3f0af56
Update v5.0.0.md
keroxp c9a4275
Update v5.0.0.md
keroxp d7920d3
Update changelogs/v5.0.0.md
keroxp 263c072
Update changelogs/v5.0.0.md
keroxp d57ea08
Update v5.0.0.md
keroxp 7ab687e
Update changelogs/v5.0.0.md
keroxp 6599219
Update v5.0.0.md
keroxp 5b7eb07
Merge branch 'v5-release' of https://github.com/loilo-inc/canarycage …
keroxp be8a440
Update v5.0.0.md
keroxp File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,67 @@ | ||
| # canarycage v5.0.0 Release Notes | ||
|
|
||
| ## description | ||
|
|
||
| Released at 2026/02/16 by [@keroxp](https://github.com/keroxp) | ||
|
|
||
| This is the fifth major release since the first release in 2018. | ||
|
|
||
| Canarycage v5 introduces a brand-new, powerful command `cage audit` that finds CVEs inside containers running in an ECS service. | ||
|
|
||
|
|
||
| ## cage audit command | ||
|
|
||
| In short, `cage audit` is like `npm audit`. It does: | ||
|
|
||
| - Scan a specified ECS service in a cluster. | ||
| - Collect container image identifiers (tag, digest) described in Task Definition. | ||
| - Query ECR for vulnerabilities. | ||
| - Print the results in the CLI. | ||
|
|
||
| It's simple, but ECS users haven't had an equivalent feature. | ||
|
|
||
| ### Usage | ||
|
|
||
| ```bash | ||
| $ cage audit --region us-east-1 --cluster default --service my-service | ||
| ``` | ||
|
|
||
| where `./.deploy/service` is a directory containing `service.json` with `cluster` and `serviceName` fields defined. | ||
|
|
||
| ```bash | ||
| $ cage audit --region us-east-1 ./.deploy/service | ||
| ``` | ||
|
|
||
| The `--json` option generates structured audit results. | ||
|
|
||
| ```bash | ||
| $ cage audit --region us-east-1 --cluster default --service my-service --json | ||
| ``` | ||
|
|
||
| ```bash | ||
| $ cage audit --region us-east-1 --json ./.deploy/service | ||
| ``` | ||
|
|
||
| ### Github Actions | ||
|
|
||
| - https://github.com/loilo-inc/actions-audit-cage | ||
|
|
||
| ## misc changes | ||
|
|
||
| - Version number format has been changed to include `v` (4.3.1 to v5.0.0). | ||
| - This aligns with Go module version rules. | ||
| - `github.com/apex/log` is now retired. | ||
| - `golang.org/x/xerrors` is now retired. | ||
| - Added `--no-color` global option. | ||
|
|
||
| ## breaking changes | ||
| ### Newer version detection of upgrade command | ||
|
|
||
| - Canarycage's version number format has changed to include `v` prefix. | ||
| - Older cage binaries cannot detect newer releases with the `v` prefix. | ||
| - Reinstall canarycage using: `go install github.com/loilo-inc/canarycage/cli/cage@v5.0.0` | ||
|
|
||
| ## project structure changes | ||
|
|
||
| - Most CLI-related code is now placed inside `cli/cage/` | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.