Compare commits
5 Commits
66b950991c
..
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9f63ee8265 | ||
|
6cba3d6d0b
|
|||
|
b2a51dc1b1
|
|||
|
|
cc44fca54e | ||
|
9a678ae67d
|
@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## v0.4.1 (2026-03-20)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- Upgraded aws-lc-sys version to address high severity CWE-295
|
||||||
|
|
||||||
|
## v0.4.0 (2026-03-09)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- Added 1password support
|
||||||
|
- sort local keys alphabetically when listing them
|
||||||
|
|
||||||
## v0.3.0 (2026-02-02)
|
## v0.3.0 (2026-02-02)
|
||||||
|
|
||||||
### Fix
|
### Fix
|
||||||
|
|||||||
Generated
+457
-319
File diff suppressed because it is too large
Load Diff
+3
-3
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "gman"
|
name = "gman"
|
||||||
version = "0.3.0"
|
version = "0.4.1"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
authors = ["Alex Clarke <alex.j.tusa@gmail.com>"]
|
authors = ["Alex Clarke <alex.j.tusa@gmail.com>"]
|
||||||
description = "Universal command line secret management and injection tool"
|
description = "Universal command line secret management and injection tool"
|
||||||
@@ -58,14 +58,14 @@ tokio = { version = "1.47.1", features = ["full"] }
|
|||||||
aws-config = { version = "1.8.12", features = ["behavior-version-latest"] }
|
aws-config = { version = "1.8.12", features = ["behavior-version-latest"] }
|
||||||
async-trait = "0.1.89"
|
async-trait = "0.1.89"
|
||||||
futures = "0.3.31"
|
futures = "0.3.31"
|
||||||
gcloud-sdk = { version = "0.28.1", features = [
|
gcloud-sdk = { version = "0.28.5", features = [
|
||||||
"google-cloud-secretmanager-v1",
|
"google-cloud-secretmanager-v1",
|
||||||
] }
|
] }
|
||||||
crc32c = "0.6.8"
|
crc32c = "0.6.8"
|
||||||
azure_core = "0.31.0"
|
azure_core = "0.31.0"
|
||||||
azure_identity = "0.31.0"
|
azure_identity = "0.31.0"
|
||||||
azure_security_keyvault_secrets = "0.10.0"
|
azure_security_keyvault_secrets = "0.10.0"
|
||||||
aws-lc-sys = { version = "0.37.0", features = ["bindgen"] }
|
aws-lc-sys = { version = "0.39.0", features = ["bindgen"] }
|
||||||
which = "8.0.0"
|
which = "8.0.0"
|
||||||
once_cell = "1.21.3"
|
once_cell = "1.21.3"
|
||||||
|
|
||||||
|
|||||||
@@ -14,8 +14,8 @@ files or sprinkling environment variables everywhere.
|
|||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
|
||||||
`gman` acts as a universal wrapper for any command that needs credentials. Store your secrets—API tokens, passwords,
|
`gman` acts as a universal wrapper for any command that needs credentials. Store your secrets (e.g. API tokens, passwords,
|
||||||
certs—with a provider, then either fetch them directly or run your command through `gman` to inject what it needs as
|
certs, etc.) with a provider, then either fetch them directly or run your command through `gman` to inject what it needs as
|
||||||
environment variables, flags, or file content.
|
environment variables, flags, or file content.
|
||||||
|
|
||||||
## Quick Examples: Before vs After
|
## Quick Examples: Before vs After
|
||||||
@@ -694,7 +694,7 @@ gman managarr
|
|||||||
|
|
||||||
### Multiple Providers and Switching
|
### Multiple Providers and Switching
|
||||||
|
|
||||||
You can define multiple providers—even multiple of the same type—and switch between them per command.
|
You can define multiple providers (even multiple of the same type) and switch between them per command.
|
||||||
|
|
||||||
Example: two AWS Secrets Manager providers named `lab` and `prod`.
|
Example: two AWS Secrets Manager providers named `lab` and `prod`.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user