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/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. 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": {