aboutsummaryrefslogtreecommitdiffstats
path: root/crates/atuin-server-postgres (unfollow)
Commit message (Collapse)Author
2024-06-10chore(release): prepare for release v18.3.0 (#2105)Ellie Huxtable
* chore(release): prepare for release v18.3.0 * build full release * Revert "build full release" This reverts commit 65e7718b51927ca6cb03a411cce781b81cb64eaa.
2024-06-05chore(release): v18.3.0-prerelease.1 (#2090)Ellie Huxtable
* chore(release): v18.3.0-prerelease.1 * update contributors * changelog, plan only on prs
2024-05-21fix: redact password in database URI when logging (#2032)Jeremy Cline
Previously, in the event that there was a configuration issue and the atuin server failed to connect to PostgreSQL, it would log the password. For example, if the password authentication failed the following log message would be printed: Error: failed to connect to db: PostgresSettings { db_uri: "postgres://atuin:definitelymypassword@db.example.com/atuin" } This change sets the password to "****" when printing it via Debug: Error: failed to connect to db: PostgresSettings { db_uri: "postgres://atuin:****@db.example.com/atuin" } Hopefully few people use **** as the actual password.
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