Skip to content

Commit 4e51b0a

Browse files
build(deps): bump golang.org/x/time from 0.9.0 to 0.11.0 (#23)
* build(deps): bump golang.org/x/time from 0.9.0 to 0.11.0 Bumps [golang.org/x/time](https://github.com/golang/time) from 0.9.0 to 0.11.0. - [Commits](golang/time@v0.9.0...v0.11.0) --- updated-dependencies: - dependency-name: golang.org/x/time dependency-version: 0.11.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Adapting code to appease linter --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Francisco Delmar Kurpiel <francisco.kurpiel@simplesurance.de>
1 parent af884b3 commit 4e51b0a

5 files changed

Lines changed: 25 additions & 16 deletions

File tree

client_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ func TestConflict(t *testing.T) {
160160
}
161161

162162
for _, tc := range cases {
163-
tc := tc
163+
tc := tc //nolint:copyloopvar
164164
t.Run(tc.typ, func(t *testing.T) {
165165
t.Parallel()
166166
comment := "integration test"

go.mod

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
module github.com/simplesurance/cfdns
22

33
go 1.21
4+
toolchain go1.24.1
45

56
require (
67
github.com/fatih/color v1.18.0
78
golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa
8-
golang.org/x/time v0.9.0
9+
golang.org/x/time v0.11.0
910
)
1011

1112
require (

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBc
1111
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
1212
golang.org/x/sys v0.25.0 h1:r+8e+loiHxRqhXVl6ML1nO3l1+oFoWbnlu2Ehimmi34=
1313
golang.org/x/sys v0.25.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
14-
golang.org/x/time v0.9.0 h1:EsRrnYcQiGH+5FfbgvV4AP7qEZstoyrHB0DzarOQ4ZY=
15-
golang.org/x/time v0.9.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM=
14+
golang.org/x/time v0.11.0 h1:/bpjEDfN9tkoN/ryeYHnv5hcMlc8ncjMcM4XBk5NWV0=
15+
golang.org/x/time v0.11.0/go.mod h1:CDIdPxbZBQxdj6cxyCIdrNogrJKMJ7pr37NYpMcMDSg=

vendor/golang.org/x/time/rate/rate.go

Lines changed: 18 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/modules.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ golang.org/x/exp/maps
1414
## explicit; go 1.18
1515
golang.org/x/sys/unix
1616
golang.org/x/sys/windows
17-
# golang.org/x/time v0.9.0
18-
## explicit; go 1.18
17+
# golang.org/x/time v0.11.0
18+
## explicit; go 1.23.0
1919
golang.org/x/time/rate

0 commit comments

Comments
 (0)