-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update go version and dependency versions (#240)
* update go to v1.23
- Loading branch information
1 parent
a843e08
commit 3c9ac93
Showing
5 changed files
with
50 additions
and
88 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
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
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,30 +1,29 @@ | ||
module github.com/newrelic/newrelic-lambda-extension | ||
|
||
go 1.20 | ||
go 1.23.0 | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go v1.44.288 | ||
github.com/aws/aws-sdk-go v1.55.5 | ||
github.com/google/go-github/v44 v44.1.0 | ||
github.com/google/uuid v1.3.0 | ||
github.com/newrelic/go-agent/v3 v3.23.0 | ||
github.com/newrelic/go-agent/v3/integrations/nrlambda v1.2.1 | ||
github.com/stretchr/testify v1.8.4 | ||
golang.org/x/mod v0.11.0 | ||
github.com/google/uuid v1.6.0 | ||
github.com/newrelic/go-agent/v3 v3.35.1 | ||
github.com/newrelic/go-agent/v3/integrations/nrlambda v1.2.2 | ||
github.com/stretchr/testify v1.9.0 | ||
golang.org/x/mod v0.21.0 | ||
) | ||
|
||
require ( | ||
github.com/aws/aws-lambda-go v1.41.0 // indirect | ||
github.com/aws/aws-lambda-go v1.47.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/google/go-querystring v1.1.0 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
golang.org/x/crypto v0.21.0 // indirect | ||
golang.org/x/net v0.23.0 // indirect | ||
golang.org/x/sys v0.18.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20230526203410-71b5a4ffd15e // indirect | ||
google.golang.org/grpc v1.56.3 // indirect | ||
google.golang.org/protobuf v1.33.0 // indirect | ||
golang.org/x/crypto v0.28.0 // indirect | ||
golang.org/x/net v0.30.0 // indirect | ||
golang.org/x/sys v0.26.0 // indirect | ||
golang.org/x/text v0.19.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20241021214115-324edc3d5d38 // indirect | ||
google.golang.org/grpc v1.67.1 // indirect | ||
google.golang.org/protobuf v1.35.1 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
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
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