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

## v0.11.1

### Fixes
- **Fix plugin manifest compatibility for Helm v3 and v4** — ship `plugin.yaml` in Helm 3 (legacy) format so both versions can parse it; the install hook swaps to the Helm 4 manifest when needed (#234, #235, #237)

### Tests
- Add plugin manifest compatibility tests that validate YAML against both Helm v3 and v4 parsing logic, preventing future regressions

## v0.11.0

### Breaking Changes
Expand Down
2 changes: 1 addition & 1 deletion plugin.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: "cm-push"
version: "0.11.0"
version: "0.11.1"
usage: "Please see https://github.com/chartmuseum/helm-push for usage"
description: "Push chart package to ChartMuseum"
command: "$HELM_PLUGIN_DIR/bin/helm-cm-push"
Expand Down
2 changes: 1 addition & 1 deletion testdata/plugin-helm3.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: "cm-push"
version: "0.11.0"
version: "0.11.1"
usage: "Please see https://github.com/chartmuseum/helm-push for usage"
description: "Push chart package to ChartMuseum"
command: "$HELM_PLUGIN_DIR/bin/helm-cm-push"
Expand Down
2 changes: 1 addition & 1 deletion testdata/plugin-helm4.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: "cm-push"
version: "0.11.0"
version: "0.11.1"
apiVersion: v1
type: cli/v1
runtime: subprocess
Expand Down
Loading