Skip to content
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
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Changelog

## v0.11.0

### Breaking Changes
- **Helm v2 support removed** — all Helm v2 code and references have been dropped

### Features
- **Helm v4 support** — dual Helm v3/v4 API support using wrapper pattern with runtime version detection (#226)
- **arm64/aarch64 architecture support** added to builds and install script
- Separate plugin manifests for Helm v3 and v4, with install hook auto-detection

### Dependencies
- Go 1.25
- Helm v3.18.5 (#230)
- Helm v4.0.4
- cobra 1.8.1
- protobuf 1.33.0
- Removed unused `docker/docker` indirect dependency

### Fixes
- CVE-2023-2253 fixed in golang deps (#197)
- GoReleaser deprecation warning resolved

### Other
- README refactored for clearer install instructions (#214)
- Acceptance tests updated for Helm v3 and v4
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ $ helm plugin install https://github.com/chartmuseum/helm-push
This will download and install the appropriate release binary from GitHub. Upon successful installation, you should see output similar to:

```
Downloading and installing helm-push v0.10.1 ...
https://github.com/chartmuseum/helm-push/releases/download/v0.10.1/helm-push_0.10.1_darwin_amd64.tar.gz
Downloading and installing helm-push v0.11.0 ...
https://github.com/chartmuseum/helm-push/releases/download/v0.11.0/helm-push_0.11.0_darwin_amd64.tar.gz
Installed plugin: cm-push
```

Expand Down
Loading