Skip to content

Commit

Permalink
Upgrade dependencies, dropping support for Go versions < 1.17
Browse files Browse the repository at this point in the history
Recent versions of golang.org/x/sys use unsafe.Slice, which was
introduced in Go 1.17. This package maintained compatibility with
Go 1.16 because for a long time that was the latest version of Go
that App Engine supported.

App Engine now supports Go 1.19 so we no longer need to keep from
upgrading this package. If you're still using the go116 runtime then
don't upgrade this package past v1.0.1.
  • Loading branch information
mtraver committed Feb 8, 2023
1 parent f570144 commit 47514bd
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 597 deletions.
37 changes: 25 additions & 12 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,18 +1,31 @@
module github.com/mtraver/gaelog

go 1.16
go 1.19

require (
cloud.google.com/go v0.103.0 // indirect
cloud.google.com/go/compute v1.7.0
cloud.google.com/go/logging v1.5.0
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/snappy v0.0.4 // indirect
cloud.google.com/go/compute/metadata v0.2.3
cloud.google.com/go/logging v1.6.1
github.com/kylelemons/godebug v1.1.0
golang.org/x/net v0.0.0-20220708220712-1185a9018129 // indirect
golang.org/x/oauth2 v0.0.0-20220718184931-c8730f7fcb92 // indirect
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect
google.golang.org/api v0.88.0 // indirect
google.golang.org/genproto v0.0.0-20220719170305-83ca9fad585f
google.golang.org/grpc v1.48.0 // indirect
google.golang.org/genproto v0.0.0-20230202175211-008b39050e57
)

require (
cloud.google.com/go v0.109.0 // indirect
cloud.google.com/go/compute v1.18.0 // indirect
cloud.google.com/go/longrunning v0.4.0 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.2.1 // indirect
github.com/googleapis/gax-go/v2 v2.7.0 // indirect
go.opencensus.io v0.24.0 // indirect
golang.org/x/net v0.5.0 // indirect
golang.org/x/oauth2 v0.4.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.5.0 // indirect
golang.org/x/text v0.6.0 // indirect
google.golang.org/api v0.109.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/grpc v1.53.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
)
Loading

0 comments on commit 47514bd

Please sign in to comment.