Skip to content
Merged
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
13 changes: 0 additions & 13 deletions .changeset/purple-candles-bake.md

This file was deleted.

13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "e2sm",
"version": "0.4.2",
"version": "0.5.0",
"license": "MIT",
"author": "mfyuu",
"repository": {
Expand Down