CHANGELOG: bump to v1.13.2.

This commit is contained in:
2025-11-17 15:50:51 -08:00
parent 804f53d27d
commit 0a71661901
2 changed files with 10 additions and 1 deletions

View File

@@ -1,5 +1,14 @@
CHANGELOG CHANGELOG
v1.13.2 - 2025-11-17
Add:
- certlib/bundler: refactor certificate bundling from cmd/cert-bundler
into a separate package.
Changed:
- cmd/cert-bundler: refactor to use bundler package, and update Dockerfile.
v1.13.1 - 2025-11-17 v1.13.1 - 2025-11-17
Add: Add:

View File

@@ -10,7 +10,7 @@ FROM golang:1.24.3-alpine AS build
WORKDIR /src WORKDIR /src
# Copy go module files and download dependencies first for better caching # Copy go module files and download dependencies first for better caching
RUN go install git.wntrmute.dev/kyle/goutils/cmd/cert-bundler@v1.13.1 && \ RUN go install git.wntrmute.dev/kyle/goutils/cmd/cert-bundler@v1.13.2 && \
mv /go/bin/cert-bundler /usr/local/bin/cert-bundler mv /go/bin/cert-bundler /usr/local/bin/cert-bundler
# Runtime stage (kept as golang:alpine per requirement) # Runtime stage (kept as golang:alpine per requirement)