diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json index acf688bf..13353ad7 100644 --- a/.github/.release-please-manifest.json +++ b/.github/.release-please-manifest.json @@ -1 +1 @@ -{".":"0.4.0","packages/config-resolver":"0.1.1"} +{".":"0.5.0","packages/config-resolver":"0.1.1"} diff --git a/CHANGELOG.md b/CHANGELOG.md index b614596c..071f08da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [0.5.0](https://github.com/elastic/cli/compare/v0.4.0...v0.5.0) (2026-09-02) + + +### Features + +* Upgrade @elastic/schemas to 0.7.2 ([#605](https://github.com/elastic/cli/issues/605)) ([eb991a6](https://github.com/elastic/cli/commit/eb991a6b1fa51eb0529d6d010db69f4f33970cbc)) + + +### Bug Fixes + +* Add missing organization_id param to some Kibana APIs ([eb991a6](https://github.com/elastic/cli/commit/eb991a6b1fa51eb0529d6d010db69f4f33970cbc)) +* Bump @elastic/schemas to 0.7.1 ([#571](https://github.com/elastic/cli/issues/571)) ([75f7f6a](https://github.com/elastic/cli/commit/75f7f6a5a4511166228ec0154c237d4904398114)) +* Decode yaml and ndjson kb responses ([#602](https://github.com/elastic/cli/issues/602)) ([763634d](https://github.com/elastic/cli/commit/763634dcec05a592196759576368c03bf0077061)) +* **kibana:** Allow same-origin request redirects ([#565](https://github.com/elastic/cli/issues/565)) ([f892744](https://github.com/elastic/cli/commit/f892744f10985b7824e9dd158f1fc5cfb9b1a40e)) +* **kibana:** Send an empty object when no body is provided on POST, PUT, PATCH and DELETE ([#586](https://github.com/elastic/cli/issues/586)) ([8917ae5](https://github.com/elastic/cli/commit/8917ae599ddb916953128b75991ae7c988a3d5cb)) +* Point cloud ci at public qa api ([#583](https://github.com/elastic/cli/issues/583)) ([a1f92bd](https://github.com/elastic/cli/commit/a1f92bdc1db4c7d90b8ecd234215d896afd6c175)) +* Support YAML as a possible response content-type ([#565](https://github.com/elastic/cli/issues/565)) ([f892744](https://github.com/elastic/cli/commit/f892744f10985b7824e9dd158f1fc5cfb9b1a40e)) +* Use correct names for Kibana Cases API commands ([eb991a6](https://github.com/elastic/cli/commit/eb991a6b1fa51eb0529d6d010db69f4f33970cbc)) +* Wrap scalar array flags ([#598](https://github.com/elastic/cli/issues/598)) ([e52eae8](https://github.com/elastic/cli/commit/e52eae8375467e97acad8fb591f1f14df8da6152)) + ## [0.4.0](https://github.com/elastic/cli/compare/v0.3.0...v0.4.0) (2026-08-21) diff --git a/docs/cli/schema.json b/docs/cli/schema.json index 0c9eb267..5a544ba8 100644 --- a/docs/cli/schema.json +++ b/docs/cli/schema.json @@ -1,7 +1,7 @@ { "schemaVersion": 1, "name": "elastic", - "version": "0.4.0", + "version": "0.5.0", "reservedMetaCommands": [ "cli-schema" ], diff --git a/package-lock.json b/package-lock.json index 09ba9224..c2c49c0f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@elastic/cli", - "version": "0.4.0", + "version": "0.5.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@elastic/cli", - "version": "0.4.0", + "version": "0.5.0", "bundleDependencies": [ "@elastic/config-resolver" ], diff --git a/package.json b/package.json index 10fed625..c2a91b96 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@elastic/cli", - "version": "0.4.0", + "version": "0.5.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 74b0dcd3..fc697233 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -24,7 +24,7 @@ for (const arg of argv) { } // x-release-please-start-version -const VERSION = '0.4.0'; +const VERSION = '0.5.0'; // x-release-please-end const program = new Command() diff --git a/src/lib/meta.ts b/src/lib/meta.ts index 8ffb318f..42f2c017 100644 --- a/src/lib/meta.ts +++ b/src/lib/meta.ts @@ -6,7 +6,7 @@ import os from 'node:os' // x-release-please-start-version -const cliVersion = '0.4.0' +const cliVersion = '0.5.0' // x-release-please-end /**