Skip to content

Commit d5a497e

Browse files
release: bump version to v0.3.3 (#770)
- Bump ProgramVersion to 0.3.3 - Update periodic cleanup workflow to v0.3.3 - Add CHANGELOG entry for v0.3.3 (VPC NotFound fix) Signed-off-by: Carlos Eduardo Arango Gutierrez <eduardoa@nvidia.com>
1 parent babab84 commit d5a497e

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

.github/workflows/periodic.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
4040
- name: Clean up VPCs
4141
if: steps.identify-resources.outputs.AWS_VPC_IDS != ''
42-
uses: NVIDIA/holodeck@v0.3.2
42+
uses: NVIDIA/holodeck@v0.3.3
4343
with:
4444
action: cleanup
4545
vpc_ids: ${{ steps.identify-resources.outputs.AWS_VPC_IDS }}

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [v0.3.3] - 2026-04-01
6+
7+
### Bug Fixes
8+
9+
- **fix: treat InvalidVpcID.NotFound as success in VPC cleanup (#769)** — VPCs that no longer exist are now treated as successfully cleaned up instead of retrying and failing, fixing periodic cleanup failures caused by the Docker action's post-entrypoint re-running cleanup.
10+
511
## [v0.3.2] - 2026-03-31
612

713
### Bug Fixes

cmd/cli/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const (
4040
// ProgramName is the canonical name of this program
4141
ProgramName = "holodeck"
4242
// ProgramVersion is the current version of the program
43-
ProgramVersion = "0.3.2"
43+
ProgramVersion = "0.3.3"
4444
)
4545

4646
type config struct {

cmd/cli/main_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ func TestNewApp(t *testing.T) {
2626
log := logger.NewLogger()
2727
app := NewApp(log)
2828

29-
if app.Version != "0.3.2" {
30-
t.Errorf("expected app version %q, got %q", "0.3.2", app.Version)
29+
if app.Version != "0.3.3" {
30+
t.Errorf("expected app version %q, got %q", "0.3.3", app.Version)
3131
}
3232
if app.Name != "holodeck" {
3333
t.Errorf("expected app name %q, got %q", "holodeck", app.Name)

0 commit comments

Comments
 (0)