Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.1] - 2026-08-23

### Fixed

- **Go upgraded to 1.27.0** — resolves stdlib CVEs flagged by Docker Hub image scanning; base builder image bumped to `golang:1.27-alpine` to match the Chainguard toolchain version.

## [0.4.0] - 2026-06-30

### Added
Expand Down Expand Up @@ -58,7 +64,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- **Multi-arch container** — supports `linux/amd64` and `linux/arm64`; ARM64 (Graviton) preferred for lower cost and better performance-per-watt
- **Build-time version embedding** — version string injected via `-ldflags` and logged at startup

[Unreleased]: https://github.com/fayrus/syncret/compare/v0.4.0...HEAD
[Unreleased]: https://github.com/fayrus/syncret/compare/v0.4.1...HEAD
[0.4.1]: https://github.com/fayrus/syncret/compare/v0.4.0...v0.4.1
[0.4.0]: https://github.com/fayrus/syncret/compare/v0.3.0...v0.4.0
[0.3.0]: https://github.com/fayrus/syncret/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/fayrus/syncret/compare/v0.1.0...v0.2.0
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.26-alpine AS builder
FROM golang:1.27-alpine AS builder
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ make tidy # go mod tidy
make docker-build # build multi-arch image (linux/amd64 + linux/arm64)
```

Requires Go 1.26+.
Requires Go 1.27+.

---

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.4.0
v0.4.1
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/fayrus/syncret

go 1.26.2
go 1.27.0

require (
github.com/aws/aws-lambda-go v1.54.0
Expand Down
Loading