Skip to content

Commit 6c64c77

Browse files
chore(deps): bump golang.org/x/net from 0.23.0 to 0.36.0 (#419)
* chore(deps): bump golang.org/x/net from 0.23.0 to 0.36.0 Bumps [golang.org/x/net](https://github.com/golang/net) from 0.23.0 to 0.36.0. - [Commits](golang/net@v0.23.0...v0.36.0) --- updated-dependencies: - dependency-name: golang.org/x/net dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * fix: rand.Seed has been deprecated since Go 1.20 and an alternative has been available since Go 1.0: As of Go 1.20 there is no reason to call Seed with a random value. Programs that call Seed with a known value to get a specific sequence of results should use New(NewSource(seed)) to obtain a local random generator. (SA1019) --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jakub Bednar <jakub.bednar@gmail.com>
1 parent 6245001 commit 6c64c77

File tree

4 files changed

+49
-31
lines changed

4 files changed

+49
-31
lines changed

api/write/point_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ var points []*Point
2323

2424
func init() {
2525
points = make([]*Point, 5000)
26-
rand.Seed(321)
2726

2827
t := time.Now()
2928
for i := 0; i < len(points); i++ {

go.mod

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
module github.com/influxdata/influxdb-client-go/v2
22

3-
go 1.17
3+
go 1.23.0
4+
5+
toolchain go1.23.8
46

57
require (
68
github.com/influxdata/line-protocol v0.0.0-20200327222509-2487e7298839
79
github.com/oapi-codegen/runtime v1.1.1
810
github.com/stretchr/testify v1.8.4 // test dependency
9-
golang.org/x/net v0.23.0
11+
golang.org/x/net v0.36.0
1012
)
1113

1214
require (

0 commit comments

Comments
 (0)