Skip to content

Tags: xcke/envref

Tags

v0.4.0

Toggle v0.4.0's commit message
Release v0.4.0

v0.3.0

Toggle v0.3.0's commit message
Release v0.3.0

v0.2.0

Toggle v0.2.0's commit message
Release v0.2.0

v0.1.0

Toggle v0.1.0's commit message
fix: prevent leaked DB connection on vault operations after Close

VaultBackend.open() now checks for a nil passphrase before opening a new
SQLite connection. Previously, calling Set/Get after Close() would open
a new DB connection that was never closed, leaking the file handle. On
Windows, this caused t.TempDir() cleanup to fail because the vault.db
file was still locked by the leaked connection.