Skip to content
Draft
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
2 changes: 1 addition & 1 deletion .github/.release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{".":"0.4.0","packages/config-resolver":"0.1.1"}
{".":"0.4.1","packages/config-resolver":"0.1.2"}
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## [0.4.1](https://github.com/elastic/cli/compare/v0.4.0...v0.4.1) (2026-09-02)


### Bug Fixes

* Bump @elastic/schemas to 0.7.1 ([#571](https://github.com/elastic/cli/issues/571)) ([75f7f6a](https://github.com/elastic/cli/commit/75f7f6a5a4511166228ec0154c237d4904398114))
* **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))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @elastic/config-resolver bumped from 0.1.1 to 0.1.2

## [0.4.0](https://github.com/elastic/cli/compare/v0.3.0...v0.4.0) (2026-08-21)


Expand Down
2 changes: 1 addition & 1 deletion NOTICE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ THE SOFTWARE.


------------------------------------------------------------------------
@elastic/config-resolver@0.1.1
@elastic/config-resolver@0.1.2
License: UNLICENSED
------------------------------------------------------------------------

Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elastic/cli",
"version": "0.4.0",
"version": "0.4.1",
"description": "Interact with the Elastic Stack and Elastic Cloud from the command line.",
"main": "dist/cli.js",
"bin": {
Expand Down Expand Up @@ -60,7 +60,7 @@
},
"dependencies": {
"@cli-schema/spec": "^0.2.0",
"@elastic/config-resolver": "0.1.1",
"@elastic/config-resolver": "0.1.2",
"@elastic/schemas": "^0.7.1",
"ajv": "^6.14.0",
"cli-table3": "^0.6.5",
Expand Down
8 changes: 8 additions & 0 deletions packages/config-resolver/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [0.1.2](https://github.com/elastic/cli/compare/config-resolver-v0.1.1...config-resolver-v0.1.2) (2026-09-02)


### Bug Fixes

* **kibana:** Allow same-origin request redirects ([#565](https://github.com/elastic/cli/issues/565)) ([f892744](https://github.com/elastic/cli/commit/f892744f10985b7824e9dd158f1fc5cfb9b1a40e))
* Support YAML as a possible response content-type ([#565](https://github.com/elastic/cli/issues/565)) ([f892744](https://github.com/elastic/cli/commit/f892744f10985b7824e9dd158f1fc5cfb9b1a40e))

## [0.1.1](https://github.com/elastic/cli/compare/config-resolver-v0.1.0...config-resolver-v0.1.1) (2026-08-10)


Expand Down
2 changes: 1 addition & 1 deletion packages/config-resolver/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@elastic/config-resolver",
"version": "0.1.1",
"version": "0.1.2",
"description": "Expression resolver for the Elastic CLI config pipeline. Resolves $(name:params) references from sources like env vars, files, and OS keychains.",
"license": "Apache-2.0",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ for (const arg of argv) {
}

// x-release-please-start-version
const VERSION = '0.4.0';
const VERSION = '0.4.1';
// x-release-please-end

const program = new Command()
Expand Down
2 changes: 1 addition & 1 deletion src/lib/meta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import os from 'node:os'

// x-release-please-start-version
const cliVersion = '0.4.0'
const cliVersion = '0.4.1'
// x-release-please-end

/**
Expand Down