Update CHANGELOG.

This commit is contained in:
2025-11-15 23:48:54 -08:00
parent f93cf5fa9c
commit a573f1cd20

View File

@@ -1,45 +1,59 @@
Unreleased - 2025-11-15 CHANGELOG
"Error handling modernization" (in progress) v1.11.0 - 2025-11-15
- Introduced typed, wrapped errors via certlib/certerr.Error (Source, Kind, Op, Err) with Unwrap. Added
- Standardized helper constructors: DecodeError, ParsingError, VerifyError, LoadingError. - cache/mru: introduce MRU cache implementation with timestamp utilities.
- Preserved sentinel errors (e.g., ErrEncryptedPrivateKey, ErrInvalidPEMType, ErrEmptyCertificate) for errors.Is.
- Refactored certlib to use certerr in key paths (CSR parsing/verification, PEM cert pool, certificate read/load).
- Migrated logging/file.go and cmd/kgz away from github.com/pkg/errors to stdlib wrapping.
- Removed dependency on github.com/pkg/errors; ran go mod tidy.
- Added package docs for certerr and a README section on error handling and matching.
- Added unit tests for certerr (Is/As and message formatting).
Planned next steps: Changed
- Continue refactoring remaining error paths for consistent wrapping. - certlib: complete overhaul to simplify APIs and internals.
- Add focused tests for key flows (encrypted private key, CSR invalid PEM types, etc.). - repo: widespread linting cleanups across many packages (config, dbg, die,
- Run golangci-lint (errorlint, errcheck) and address findings. fileutil, log/logging, mwc, sbuf, seekbuf, tee, testio, etc.).
- cmd: general program cleanups; `cert-bundler` lint fixes.
Release 1.2.1 - 2018-09-15 Removed
- rand: remove unused package.
- testutil: remove unused code.
+ Add missing format argument to Errorf call in kgz.
Release 1.2.0 - 2018-09-15 v1.10.1 — 2025-11-15
+ Adds the kgz command line utility. Changed
- certlib: major overhaul and refactor.
- repo: linter autofixes ahead of release.
Release 1.1.0 - 2017-11-16
+ A number of new command line utilities were added v1.10.0 — 2025-11-14
+ atping Added
+ cruntar - cmd: add `cert-revcheck` command.
+ renfnv
+
+ ski
+ subjhash
+ yamll
+ new package: ahash Changed
+ package for loading hashes from an algorithm string - ci/lint: add golangci-lint stage and initial cleanup.
+ new certificate loading functions in the lib package
+ new package: tee v1.9.1 — 2025-11-15
+ emulates tee(1)
Fixed
- die: correct calls to `die.With`.
v1.9.0 — 2025-11-14
Added
- cmd: add `cert-bundler` tool.
Changed
- misc: minor updates and maintenance.
v1.8.1 — 2025-11-14
Added
- cmd: add `tlsinfo` tool.
v1.8.0 — 2025-11-14
Baseline
- Initial baseline for this changelog series.