-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #162 from mimiro-io/chore/upgrade-deps
go 1.19 and upgraded dependencies
- Loading branch information
Showing
3 changed files
with
90 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.18.4 as builder_src | ||
FROM golang:1.19 as builder_src | ||
|
||
COPY jemalloc-install.sh . | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,83 +1,85 @@ | ||
module github.com/mimiro-io/datahub | ||
|
||
go 1.18 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/DataDog/datadog-go/v5 v5.1.1 | ||
github.com/PaddleHQ/go-aws-ssm v0.8.0 | ||
github.com/aws/aws-sdk-go v1.44.69 | ||
github.com/aws/aws-sdk-go v1.44.108 | ||
github.com/bamzi/jobrunner v1.0.0 | ||
github.com/dgraph-io/badger/v3 v3.2103.2 | ||
github.com/dop251/goja v1.0.0 | ||
github.com/franela/goblin v0.0.0-20211003143422-0a4f594942bf | ||
github.com/goburrow/cache v0.1.4 | ||
github.com/gofrs/uuid v4.2.0+incompatible | ||
github.com/gofrs/uuid v4.3.0+incompatible | ||
github.com/gojektech/heimdall/v6 v6.1.0 | ||
github.com/golang-jwt/jwt v3.2.2+incompatible | ||
github.com/google/uuid v1.3.0 | ||
github.com/juliangruber/go-intersect v1.1.0 | ||
github.com/labstack/echo/v4 v4.7.2 | ||
github.com/labstack/echo/v4 v4.9.0 | ||
github.com/mustafaturan/bus v1.0.2 | ||
github.com/mustafaturan/monoton v1.0.0 | ||
github.com/robfig/cron/v3 v3.0.1 | ||
github.com/spf13/viper v1.12.0 | ||
go.uber.org/fx v1.17.1 | ||
github.com/spf13/viper v1.13.0 | ||
go.uber.org/fx v1.18.2 | ||
go.uber.org/zap v1.23.0 | ||
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4 | ||
golang.org/x/sync v0.0.0-20220929204114-8fcdb60fdcc0 | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) | ||
|
||
replace github.com/dop251/goja => github.com/mimiro-io/goja v1.0.0 | ||
|
||
require ( | ||
github.com/Microsoft/go-winio v0.5.0 // indirect | ||
github.com/Microsoft/go-winio v0.6.0 // indirect | ||
github.com/OneOfOne/xxhash v1.2.8 // indirect | ||
github.com/cespare/xxhash v1.1.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/dgraph-io/ristretto v0.1.0 // indirect | ||
github.com/dlclark/regexp2 v1.7.0 // indirect | ||
github.com/dustin/go-humanize v1.0.0 // indirect | ||
github.com/fsnotify/fsnotify v1.5.4 // indirect | ||
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/gojektech/valkyrie v0.0.0-20180215180059-6aee720afcdf // indirect | ||
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect | ||
github.com/gojektech/valkyrie v0.0.0-20190210220504-8f62c1e7ba45 // indirect | ||
github.com/golang/glog v1.0.0 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/golang/snappy v0.0.3 // indirect | ||
github.com/google/flatbuffers v1.12.1 // indirect | ||
github.com/golang/snappy v0.0.4 // indirect | ||
github.com/google/flatbuffers v22.9.29+incompatible // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/klauspost/compress v1.12.3 // indirect | ||
github.com/klauspost/compress v1.15.11 // indirect | ||
github.com/labstack/gommon v0.3.1 // indirect | ||
github.com/magiconair/properties v1.8.6 // indirect | ||
github.com/mattn/go-colorable v0.1.12 // indirect | ||
github.com/mattn/go-isatty v0.0.14 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.16 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/pelletier/go-toml v1.9.5 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.1 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.5 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/spf13/afero v1.8.2 // indirect | ||
github.com/spf13/afero v1.9.2 // indirect | ||
github.com/spf13/cast v1.5.0 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/stretchr/objx v0.4.0 // indirect | ||
github.com/stretchr/testify v1.8.0 // indirect | ||
github.com/subosito/gotenv v1.3.0 // indirect | ||
github.com/subosito/gotenv v1.4.1 // indirect | ||
github.com/valyala/bytebufferpool v1.0.0 // indirect | ||
github.com/valyala/fasttemplate v1.2.1 // indirect | ||
go.opencensus.io v0.23.0 // indirect | ||
go.uber.org/atomic v1.7.0 // indirect | ||
go.uber.org/dig v1.14.0 // indirect | ||
go.uber.org/multierr v1.6.0 // indirect | ||
golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 // indirect | ||
golang.org/x/net v0.0.0-20220909164309-bea034e7d591 // indirect | ||
golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 // indirect | ||
go.uber.org/atomic v1.10.0 // indirect | ||
go.uber.org/dig v1.15.0 // indirect | ||
go.uber.org/multierr v1.8.0 // indirect | ||
golang.org/x/crypto v0.0.0-20220926161630-eccd6366d1be // indirect | ||
golang.org/x/mod v0.6.0-dev.0.20220922195421-2adab6b8c60e // indirect | ||
golang.org/x/net v0.0.0-20220927171203-f486391704dc // indirect | ||
golang.org/x/sys v0.0.0-20220928140112-f11e5e49a4ec // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
golang.org/x/time v0.0.0-20201208040808-7e3f01d25324 // indirect | ||
google.golang.org/protobuf v1.28.0 // indirect | ||
gopkg.in/ini.v1 v1.66.4 // indirect | ||
golang.org/x/time v0.0.0-20220922220347-f3bd1da661af // indirect | ||
golang.org/x/tools v0.1.12 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
) |
Oops, something went wrong.