diff --git a/CHANGELOG.md b/CHANGELOG.md index 5fac4b1..9970363 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 The floating `v1` tag tracks the latest `1.x` release. Consumers pinning `microsoft/apm-action@v1` receive minor and patch updates automatically. +## [1.7.3] - 2026-05-11 + +### Changed + +- **`apm-version` default bumped to `0.13.0`** (was `0.12.4`). Picks up the v0.13.0 release: zero-config private-package auth via the `gh` CLI on github.com/`*.ghe.com`/GHES, `apm install --frozen` for CI-safe read-only installs, GitLab marketplace and install support, target-agnostic local bundles (`apm install ` resolves the consumer target from project context), `apm install` accepts the YAML list form under `target:`, and several install correctness fixes. The action only invokes `apm install`, `apm compile`, `apm pack`, and `apm audit` -- none of which have breaking changes in v0.13.0. Consumers pinning `apm-version` explicitly are unaffected. + ## [1.7.2] - 2026-05-07 ### Changed diff --git a/action.yml b/action.yml index 7e53957..3175495 100644 --- a/action.yml +++ b/action.yml @@ -12,12 +12,12 @@ inputs: default: '.' apm-version: description: | - APM CLI version to install (e.g. "0.12.4"). Defaults to a pinned, known-good release. + APM CLI version to install (e.g. "0.13.0"). Defaults to a pinned, known-good release. The default is intentionally NOT "latest": pinning the action to a specific APM version prevents downstream workflows from being broken by an unrelated APM release. Pass "latest" explicitly to opt in to floating, or pin to a different tag for reproducibility. required: false - default: '0.12.4' + default: '0.13.0' script: description: 'APM script to run after install (optional — by default only install runs)' required: false