Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
b2a51dc1b1
|
|||
|
|
cc44fca54e |
@@ -5,6 +5,13 @@ 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.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
+1
-1
@@ -1620,7 +1620,7 @@ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "gman"
|
name = "gman"
|
||||||
version = "0.3.0"
|
version = "0.4.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"argon2",
|
"argon2",
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "gman"
|
name = "gman"
|
||||||
version = "0.3.0"
|
version = "0.4.0"
|
||||||
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"
|
||||||
|
|||||||
@@ -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