aboutsummaryrefslogtreecommitdiffstats
path: root/crates/atuin-client/src/secrets.rs (unfollow)
Commit message (Collapse)Author
6 dayschore: Move everything into one big crateBenedikt Peetz
That helps remove duplicated code and rustc/cargo will now also show dead code correctly.
13 dayschore: update GitHub app token formatChris Rose
2026-01-21Update regex for AWS Access Key ID pattern (#3088)Daniel Rinehart
2025-10-21Revert "feat: more accurately filter secret tokens" (#2961)Ellie Huxtable
Reverts atuinsh/atuin#2932 Resolves #2960
2025-10-02feat: more accurately filter secret tokens (#2932)Keith Cirkel
2025-03-19chore: migrate to rust 2024 (#2635)Ellie Huxtable
* chore: upgrade to 2024 edition * ugh unsafe * format * nixxxxxxxxxxx why
2025-02-18perf: cache `SECRET_PATTERNS`'s `RegexSet` (#2570)DaniPopes
Improves the performance of `History::should_save` by constructing the `SECRET_PATTERNS` `RegexSet` only once with a `LazyLock`. This speeds up `atuin history prune` by ~100x (~7s to ~70ms on my machine) (lol).
2024-12-29feat(client): update AWS secrets env var handling checks (#2501)Dagan McGregor
Update to use AWS env vars as documented, replace duplicated entries AWS_SECRET_ACCESS_KEY the secret paired to Access Key IDs AWS_SESSION_TOKEN the secret session token for STS sessions
2024-07-01feat: Add npm, Netlify and Pulumi tokens to secret patterns (#2210)Julien P
2024-06-25feat: add several other GitHub access token patterns (#2200)Chris Rose
- OAuth access tokens - refresh token - app installation token - PAT v2 Additionally, added support for having >1 value for testing, for cases where the pattern for a secret has alternative formats (GitHub PAT v2 does this)
2024-06-25feat: Add GitLab PAT to secret patterns (#2196)David Jack Wange Olrik
2024-06-20feat(history): filter out various environment variables containing potential ↵David
secrets (#2174)
2024-04-18chore: move crates into crates/ dir (#1958)Ellie Huxtable
I'd like to tidy up the root a little, and it's nice to have all the rust crates in one place
2024-01-08feat: include atuin login in secret patterns (#1518)Matthew Berryman
* include atuin login in secret patterns * doc catchup
2023-10-25Correct some secrets filter regex (#1326)Ellie Huxtable
2023-09-26handle missing entries (fixes #1236) (#1253)Conrad Ludgate
* fix #1236 * lints
2023-08-19Automatically filter out secrets (#1182)Ellie Huxtable
I'd like to extend the regex list here very soon, but start off by automatically filtering out secrets. Do not store them in history! I've included regex for: 1. AWS key id 2. Github pat (old and new) 3. Slack oauth tokens (bot, user) 4. Slack webhooks 5. Stripe live/test keys Will need updating after #806