Releases: Vanilla-OS/Prometheus
Releases · Vanilla-OS/Prometheus
v1.0.2
v1.0.1
What's Changed
Fixes CVE-2024-3727.
- Bump
github.com/containers/buildah
to v1.35.4 - Bump
github.com/containers/image
to v5.30.1 - Bump
github.com/containers/storage
to v1.53.0
v1.0.0
Full Changelog: v0.2.0...v1.0.0
v0.2.0
What's Changed
- Bump github.com/sigstore/rekor from 1.1.1 to 1.2.0 by @dependabot in #5
- Bump github.com/cyphar/filepath-securejoin from 0.2.3 to 0.2.4 by @dependabot in #9
- feat/ci: bump actions/checkout to v4 by @kbdharun in #10
- feat/ci: bump actions/setup-go to v5 by @kbdharun in #14
- Feat/async by @matbme in #17
New Contributors
Full Changelog: v0.1.6...v0.2.0
v0.1.6
What's Changed
- Bump github.com/sigstore/rekor from 1.1.0 to 1.1.1 by @dependabot in #2
- Bump github.com/docker/distribution from 2.8.1+incompatible to 2.8.2+incompatible by @dependabot in #3
- client: Consider image name parameter by @matbme in #4
New Contributors
- @dependabot made their first contribution in #2
- @matbme made their first contribution in #4
Full Changelog: v0.1.5...v0.1.6
v0.1.5
It is now possible to configure max parallel downloads while instancing:
pmt, err := prometheus.NewPrometheus(
"storage", // root
"overlay", // graphDriverName
2, // maxParallelDownloads
)
Full Changelog: v0.1.4...v0.1.5
v0.1.4
Added new function BuildContainerFile
to enable building Docker images from Containerfile(s) with buildah.
Example usage
pmt, err := prometheus.NewPrometheus("storage", "overlay")
if err != nil {
panic(err)
}
image, err := pmt.BuildContainerFile("Containerfile", "example")
if err != nil {
panic(err)
}
fmt.Printf("Image built: %s\n", image.ID)
v0.1.2
remove reexec must be called by the final project