Skip to content

Commit b6a27a7

Browse files
committed
fix(snyk): upgrade golang to v1.19
1 parent 33779e6 commit b6a27a7

File tree

5 files changed

+317
-11
lines changed

5 files changed

+317
-11
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
2.2.0 / 2022-10-02
2+
=================
3+
* Upgrade Golang to v1.19
4+
5+
2.1.0 / 2021-03-10
6+
=================
7+
* Replace counter by gauge
8+
19
2.0.0 / 2020-08-10
210
=================
311
* Upgrade Golang

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.14.15-alpine3.13
1+
FROM golang:1.19.1-alpine3.16
22

33
# Install bash
44
RUN apk add --no-cache bash

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 Alexandre L.
3+
Copyright (c) 2022 Alexandre L.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

go.mod

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,23 @@
11
module github.com/Alexandre-io/wordpress_exporter
22

3-
go 1.14
3+
go 1.19
44

55
require (
6-
github.com/go-sql-driver/mysql v1.5.0
6+
github.com/go-sql-driver/mysql v1.6.0
7+
github.com/prometheus/client_golang v1.13.0
8+
github.com/sirupsen/logrus v1.9.0
9+
)
10+
11+
require (
12+
github.com/beorn7/perks v1.0.1 // indirect
13+
github.com/cespare/xxhash/v2 v2.1.2 // indirect
14+
github.com/golang/protobuf v1.5.2 // indirect
15+
github.com/matttproud/golang_protobuf_extensions v1.0.2 // indirect
716
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
8-
github.com/modern-go/reflect2 v1.0.1 // indirect
9-
github.com/prometheus/client_golang v1.9.0
10-
github.com/prometheus/common v0.18.0 // indirect
11-
github.com/prometheus/procfs v0.6.0 // indirect
12-
github.com/sirupsen/logrus v1.8.1
13-
golang.org/x/sys v0.0.0-20210309074719-68d13333faf2 // indirect
14-
google.golang.org/protobuf v1.25.0 // indirect
17+
github.com/modern-go/reflect2 v1.0.2 // indirect
18+
github.com/prometheus/client_model v0.2.0 // indirect
19+
github.com/prometheus/common v0.37.0 // indirect
20+
github.com/prometheus/procfs v0.8.0 // indirect
21+
golang.org/x/sys v0.0.0-20220928140112-f11e5e49a4ec // indirect
22+
google.golang.org/protobuf v1.28.1 // indirect
1523
)

0 commit comments

Comments
 (0)