From 050a566cd11747ab0a2359ac4bcf2895ba0d4622 Mon Sep 17 00:00:00 2001 From: "elastic-vault-github-plugin-prod[bot]" <150874479+elastic-vault-github-plugin-prod[bot]@users.noreply.github.com> Date: Tue, 23 Jun 2026 14:17:42 +0000 Subject: [PATCH] chore: release main --- .github/.release-please-manifest.json | 2 +- CHANGELOG.md | 20 ++++++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- src/cli.ts | 2 +- 5 files changed, 25 insertions(+), 5 deletions(-) diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json index 72d45f1d..91b1b846 100644 --- a/.github/.release-please-manifest.json +++ b/.github/.release-please-manifest.json @@ -1 +1 @@ -{".":"0.2.0","packages/config-resolver":"0.1.0","packages/es-schemas":"1.0.2"} +{".":"0.3.0","packages/config-resolver":"0.1.0","packages/es-schemas":"1.0.2"} diff --git a/CHANGELOG.md b/CHANGELOG.md index b5dfd6e6..ea17da8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [0.3.0](https://github.com/elastic/cli/compare/v0.2.0...v0.3.0) (2026-06-23) + + +### Features + +* **completion:** Complete context names for positional args ([#424](https://github.com/elastic/cli/issues/424)) ([3883800](https://github.com/elastic/cli/commit/388380053e4b56c15b7b18efda83d9a539ea6438)) + + +### Bug Fixes + +* Add explicit permissions to GitHub Actions workflows ([#414](https://github.com/elastic/cli/issues/414)) ([252fd44](https://github.com/elastic/cli/commit/252fd44953ffe86ae19a1af8f78fd65c07b3da04)) +* **ci:** Use node-version instead of missing .nvmrc ([8d84d45](https://github.com/elastic/cli/commit/8d84d4500e0e6a293da6357f0ecd63bc1ecdfbb7)) +* **cli:** Show banner on --help to match bare `elastic` output ([#391](https://github.com/elastic/cli/issues/391)) ([cb4becd](https://github.com/elastic/cli/commit/cb4becd1ef7818dbff23fe240e302402ee4e37aa)) +* **deps:** Update dependency commander to v15 ([#410](https://github.com/elastic/cli/issues/410)) ([7a8056f](https://github.com/elastic/cli/commit/7a8056ffd4c6d2b0ab3f81bd23658744cff97662)) + + +### Performance Improvements + +* Small tweaks and lazy-loading to improve --help performance ([#400](https://github.com/elastic/cli/issues/400)) ([223fdd3](https://github.com/elastic/cli/commit/223fdd345852e09e816f0d75feb87285a8335fb4)) + ## [0.2.0](https://github.com/elastic/cli/compare/v0.1.1...v0.2.0) (2026-05-29) diff --git a/package-lock.json b/package-lock.json index 34296a95..3021583d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@elastic/cli", - "version": "0.2.0", + "version": "0.3.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@elastic/cli", - "version": "0.2.0", + "version": "0.3.0", "bundleDependencies": [ "@elastic/config-resolver", "@elastic/es-schemas", diff --git a/package.json b/package.json index 592ff815..286606fe 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@elastic/cli", - "version": "0.2.0", + "version": "0.3.0", "description": "Interact with the Elastic Stack and Elastic Cloud from the command line.", "main": "dist/cli.js", "bin": { diff --git a/src/cli.ts b/src/cli.ts index 642091da..0c30b3d1 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -34,7 +34,7 @@ for (const arg of argv) { } // x-release-please-start-version -const VERSION = '0.2.0'; +const VERSION = '0.3.0'; // x-release-please-end const program = new Command()