Skip to content

Commit fbc3ee5

Browse files
authored
Merge pull request #61 from dokku/master
Release 0.13.0
2 parents b4e1999 + e0870c6 commit fbc3ee5

File tree

4 files changed

+27
-888
lines changed

4 files changed

+27
-888
lines changed

Dockerfile.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.17.7-buster
1+
FROM golang:1.18.1-buster
22

33
# hadolint ignore=DL3027
44
RUN apt-get update \

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ MAINTAINER_NAME = Jose Diaz-Gonzalez
55
REPOSITORY = dokku-event-listener
66
HARDWARE = $(shell uname -m)
77
SYSTEM_NAME = $(shell uname -s | tr '[:upper:]' '[:lower:]')
8-
BASE_VERSION ?= 0.12.0
8+
BASE_VERSION ?= 0.13.0
99
IMAGE_NAME ?= $(MAINTAINER)/$(REPOSITORY)
1010
PACKAGECLOUD_REPOSITORY ?= dokku/dokku-betafish
1111

@@ -222,10 +222,14 @@ release-packagecloud:
222222
release-packagecloud-deb: build/deb/$(NAME)_$(VERSION)_amd64.deb build/deb/$(NAME)_$(VERSION)_arm64.deb build/deb/$(NAME)_$(VERSION)_armhf.deb
223223
package_cloud push $(PACKAGECLOUD_REPOSITORY)/ubuntu/bionic build/deb/$(NAME)_$(VERSION)_amd64.deb
224224
package_cloud push $(PACKAGECLOUD_REPOSITORY)/ubuntu/focal build/deb/$(NAME)_$(VERSION)_amd64.deb
225+
package_cloud push $(PACKAGECLOUD_REPOSITORY)/ubuntu/jammy build/deb/$(NAME)_$(VERSION)_amd64.deb
225226
package_cloud push $(PACKAGECLOUD_REPOSITORY)/debian/stretch build/deb/$(NAME)_$(VERSION)_amd64.deb
226227
package_cloud push $(PACKAGECLOUD_REPOSITORY)/debian/buster build/deb/$(NAME)_$(VERSION)_amd64.deb
227228
package_cloud push $(PACKAGECLOUD_REPOSITORY)/debian/bullseye build/deb/$(NAME)_$(VERSION)_amd64.deb
228229
package_cloud push $(PACKAGECLOUD_REPOSITORY)/ubuntu/focal build/deb/$(NAME)_$(VERSION)_arm64.deb
230+
package_cloud push $(PACKAGECLOUD_REPOSITORY)/ubuntu/jammy build/deb/$(NAME)_$(VERSION)_arm64.deb
231+
package_cloud push $(PACKAGECLOUD_REPOSITORY)/ubuntu/focal build/deb/$(NAME)_$(VERSION)_armhf.deb
232+
package_cloud push $(PACKAGECLOUD_REPOSITORY)/ubuntu/jammy build/deb/$(NAME)_$(VERSION)_armhf.deb
229233
package_cloud push $(PACKAGECLOUD_REPOSITORY)/raspbian/buster build/deb/$(NAME)_$(VERSION)_armhf.deb
230234
package_cloud push $(PACKAGECLOUD_REPOSITORY)/raspbian/bullseye build/deb/$(NAME)_$(VERSION)_armhf.deb
231235

go.mod

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,29 @@
11
module github.com/dokku/dokku-event-listener
22

3-
go 1.16
3+
go 1.18
4+
5+
require (
6+
github.com/docker/docker v20.10.15+incompatible
7+
github.com/rs/zerolog v1.26.1
8+
)
49

510
require (
611
github.com/Azure/go-ansiterm v0.0.0-20210608223527-2377c96fe795 // indirect
712
github.com/Microsoft/go-winio v0.5.0 // indirect
8-
github.com/containerd/containerd v1.5.7 // indirect
9-
github.com/docker/docker v20.10.9+incompatible
13+
github.com/docker/distribution v2.7.1+incompatible // indirect
1014
github.com/docker/go-connections v0.4.0 // indirect
11-
github.com/gorilla/mux v1.8.0 // indirect
15+
github.com/docker/go-units v0.4.0 // indirect
16+
github.com/gogo/protobuf v1.3.2 // indirect
17+
github.com/google/go-cmp v0.5.5 // indirect
18+
github.com/moby/term v0.0.0-20200312100748-672ec06f55cd // indirect
1219
github.com/morikuni/aec v1.0.0 // indirect
13-
github.com/rs/zerolog v1.26.1
20+
github.com/opencontainers/go-digest v1.0.0 // indirect
21+
github.com/opencontainers/image-spec v1.0.1 // indirect
22+
github.com/pkg/errors v0.9.1 // indirect
23+
github.com/sirupsen/logrus v1.8.1 // indirect
24+
github.com/stretchr/testify v1.7.0 // indirect
1425
golang.org/x/net v0.0.0-20211008194852-3b03d305991f // indirect
1526
golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac // indirect
1627
golang.org/x/time v0.0.0-20210611083556-38a9dc6acbc6 // indirect
17-
google.golang.org/genproto v0.0.0-20211008145708-270636b82663 // indirect
18-
google.golang.org/grpc v1.41.0 // indirect
28+
gotest.tools/v3 v3.0.3 // indirect
1929
)
20-
21-
replace github.com/docker/docker => github.com/docker/engine v0.0.0-20200309214505-aa6a9891b09c

0 commit comments

Comments
 (0)