Skip to content

Releases: Vanilla-OS/Prometheus

v1.0.2

21 May 16:48
d812d16
Compare
Choose a tag to compare

What's Changed

Fixes CVE-2024-29018.

  • Bump github.com/docker/docker to 25.0.5+incompatible

v1.0.1

21 May 16:32
2eaf8da
Compare
Choose a tag to compare

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

27 Apr 13:56
Compare
Choose a tag to compare

Full Changelog: v0.2.0...v1.0.0

v0.2.0

03 Jan 17:06
93d640a
Compare
Choose a tag to compare

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

16 May 12:24
Compare
Choose a tag to compare

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

Full Changelog: v0.1.5...v0.1.6

v0.1.5

07 May 07:01
Compare
Choose a tag to compare

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

30 Apr 16:35
Compare
Choose a tag to compare

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

30 Apr 14:14
Compare
Choose a tag to compare
remove reexec

must be called by the final project