From 33b31ab2fd5f42674787035eae69689e244182dd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 22 Jan 2026 10:30:08 +0000 Subject: [PATCH 1/2] chore: release --- .changeset/purple-candles-bake.md | 13 ------------- CHANGELOG.md | 13 +++++++++++++ package.json | 2 +- 3 files changed, 14 insertions(+), 14 deletions(-) delete mode 100644 .changeset/purple-candles-bake.md diff --git a/.changeset/purple-candles-bake.md b/.changeset/purple-candles-bake.md deleted file mode 100644 index 88c1932..0000000 --- a/.changeset/purple-candles-bake.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -"e2sm": minor ---- - -feat: add get subcommand and improve JSON formatting - -- add get subcommand to retrieve secrets from AWS Secrets Manager -- implement interactive secret selection with profile/region support -- add kleur dependency for colored terminal output -- enhance formatJson function with dim styling for structural symbols -- refactor exec function to lib.ts for code reuse -- replace util.inspect with custom formatJson in dry-run mode -- add comprehensive tests for new get command and exec function diff --git a/CHANGELOG.md b/CHANGELOG.md index 4288078..863ed49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # e2sm +## 0.5.0 + +### Minor Changes + +- [`024e95e`](https://github.com/mfyuu/e2sm/commit/024e95e1684405160aea3428d6c0fde94c47dc34) Thanks [@mfyuu](https://github.com/mfyuu)! - feat: add get subcommand and improve JSON formatting + - add get subcommand to retrieve secrets from AWS Secrets Manager + - implement interactive secret selection with profile/region support + - add kleur dependency for colored terminal output + - enhance formatJson function with dim styling for structural symbols + - refactor exec function to lib.ts for code reuse + - replace util.inspect with custom formatJson in dry-run mode + - add comprehensive tests for new get command and exec function + ## 0.4.2 ### Patch Changes diff --git a/package.json b/package.json index 85d31f2..63024d3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "e2sm", - "version": "0.4.2", + "version": "0.5.0", "license": "MIT", "author": "mfyuu", "repository": { From 42d703190cba71f226918cf6e465b66782cfe19e Mon Sep 17 00:00:00 2001 From: mfyuu <83203852+ve1997@users.noreply.github.com> Date: Thu, 22 Jan 2026 19:33:32 +0900 Subject: [PATCH 2/2] docs: update README.md --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 0b55583..4a0b6c6 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,16 @@ npx e2sm --dry-run npx e2sm --help ``` +### Get Secrets + +Retrieve secrets from AWS Secrets Manager. + +```bash +npx e2sm get +npx e2sm get -n my-secret-name +npx e2sm get -p my-profile -r ap-northeast-1 +``` + ## Configuration You can create a `.e2smrc.json` file to set default options.