Skip to content

Commit

Permalink
tag release
Browse files Browse the repository at this point in the history
  • Loading branch information
xelalexv committed Jul 27, 2021
1 parent 86f3611 commit 7e35afd
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## `0.4.1`
- CVE remediations:
+ [CVE-2020-26160](https://github.com/advisories/GHSA-w73w-5m7g-f7qc), `github.com/dgrijalva/jwt-go`
+ [GHSA-c72p-9xmj-rx3w](https://github.com/advisories/GHSA-c72p-9xmj-rx3w), `github.com/containerd/containerd`
- upgrades:
+ *Skopeo* to 1.3.1 (*Alpine*) & 1.3.0 (*Ubuntu*)
+ *Alpine* to 3.14.0
+ *Ubuntu 20.04* to latest container image

## `0.4.0`
- support for image matching (issue #16, *alpha* feature)
- tag filtering with *semver* and *regex* (issue #22, *alpha* feature)
Expand Down
9 changes: 6 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ TEST_ALPINE ?= y
TEST_UBUNTU ?= y

TEST_CLEANUP = "127.0.0.1:5000/*/*/*/*" "*/*/*/busybox" \
"*/cloudrun/container/hello" "registry.hub.docker.com/library/busybox"
"*/cloudrun/container/hello" "registry.hub.docker.com/library/busybox" \
"*/jenkins/jnlp-slave" "*/*/*/hello"

export

Expand Down Expand Up @@ -201,12 +202,14 @@ ifeq (,$(wildcard .makerc))
$(warning ***** Missing .makerc! Some tests may be skipped or fail!)
endif
ifeq ($(TEST_ALPINE),y)
$(call utils, remove_test_images $(TEST_CLEANUP))
$(call utils, remove_test_images $(TEST_CLEANUP)) > /dev/null
docker image prune --force
$(call utils, registry_restart)
$(call utils, run_tests alpine)
endif
ifeq ($(TEST_UBUNTU),y)
$(call utils, remove_test_images $(TEST_CLEANUP))
$(call utils, remove_test_images $(TEST_CLEANUP)) > /dev/null
docker image prune --force
$(call utils, registry_restart)
$(call utils, run_tests ubuntu)
endif
Expand Down

0 comments on commit 7e35afd

Please sign in to comment.