Skip to content

Commit 08e401d

Browse files
chore: release main
1 parent f892744 commit 08e401d

8 files changed

Lines changed: 33 additions & 9 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{".":"0.4.0","packages/config-resolver":"0.1.1"}
1+
{".":"0.4.1","packages/config-resolver":"0.1.2"}

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## [0.4.1](https://github.com/elastic/cli/compare/v0.4.0...v0.4.1) (2026-08-31)
4+
5+
6+
### Bug Fixes
7+
8+
* Bump @elastic/schemas to 0.7.1 ([#571](https://github.com/elastic/cli/issues/571)) ([75f7f6a](https://github.com/elastic/cli/commit/75f7f6a5a4511166228ec0154c237d4904398114))
9+
* **kibana:** Allow same-origin request redirects ([#565](https://github.com/elastic/cli/issues/565)) ([f892744](https://github.com/elastic/cli/commit/f892744f10985b7824e9dd158f1fc5cfb9b1a40e))
10+
* Support YAML as a possible response content-type ([#565](https://github.com/elastic/cli/issues/565)) ([f892744](https://github.com/elastic/cli/commit/f892744f10985b7824e9dd158f1fc5cfb9b1a40e))
11+
12+
13+
### Dependencies
14+
15+
* The following workspace dependencies were updated
16+
* dependencies
17+
* @elastic/config-resolver bumped from 0.1.1 to 0.1.2
18+
319
## [0.4.0](https://github.com/elastic/cli/compare/v0.3.0...v0.4.0) (2026-08-21)
420

521

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elastic/cli",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"description": "Interact with the Elastic Stack and Elastic Cloud from the command line.",
55
"main": "dist/cli.js",
66
"bin": {
@@ -58,7 +58,7 @@
5858
},
5959
"dependencies": {
6060
"@cli-schema/spec": "^0.2.0",
61-
"@elastic/config-resolver": "0.1.1",
61+
"@elastic/config-resolver": "0.1.2",
6262
"@elastic/schemas": "^0.7.1",
6363
"ajv": "^6.14.0",
6464
"cli-table3": "^0.6.5",

packages/config-resolver/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [0.1.2](https://github.com/elastic/cli/compare/config-resolver-v0.1.1...config-resolver-v0.1.2) (2026-08-31)
4+
5+
6+
### Bug Fixes
7+
8+
* **kibana:** Allow same-origin request redirects ([#565](https://github.com/elastic/cli/issues/565)) ([f892744](https://github.com/elastic/cli/commit/f892744f10985b7824e9dd158f1fc5cfb9b1a40e))
9+
* Support YAML as a possible response content-type ([#565](https://github.com/elastic/cli/issues/565)) ([f892744](https://github.com/elastic/cli/commit/f892744f10985b7824e9dd158f1fc5cfb9b1a40e))
10+
311
## [0.1.1](https://github.com/elastic/cli/compare/config-resolver-v0.1.0...config-resolver-v0.1.1) (2026-08-10)
412

513

packages/config-resolver/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@elastic/config-resolver",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "Expression resolver for the Elastic CLI config pipeline. Resolves $(name:params) references from sources like env vars, files, and OS keychains.",
55
"license": "Apache-2.0",
66
"private": true,

src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ for (const arg of argv) {
2424
}
2525

2626
// x-release-please-start-version
27-
const VERSION = '0.4.0';
27+
const VERSION = '0.4.1';
2828
// x-release-please-end
2929

3030
const program = new Command()

src/lib/meta.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import os from 'node:os'
77

88
// x-release-please-start-version
9-
const cliVersion = '0.4.0'
9+
const cliVersion = '0.4.1'
1010
// x-release-please-end
1111

1212
/**

0 commit comments

Comments
 (0)