1
1
module github.com/fluxcd/source-watcher
2
2
3
- go 1.20
3
+ go 1.22
4
4
5
5
// Replace digest lib to master to gather access to BLAKE3.
6
6
// xref: https://github.com/opencontainers/go-digest/pull/66
7
7
replace github.com/opencontainers/go-digest => github.com/opencontainers/go-digest v1.0.1-0.20220411205349-bde1400a84be
8
8
9
9
require (
10
- github.com/fluxcd/pkg/http/fetch v0.9 .0
11
- github.com/fluxcd/pkg/runtime v0.44.1
12
- github.com/fluxcd/pkg/tar v0.4 .0
10
+ github.com/fluxcd/pkg/http/fetch v0.10 .0
11
+ github.com/fluxcd/pkg/runtime v0.45.0
12
+ github.com/fluxcd/pkg/tar v0.6 .0
13
13
github.com/fluxcd/source-controller/api v1.2.4
14
14
github.com/spf13/pflag v1.0.5
15
- k8s.io/apimachinery v0.28.6
16
- k8s.io/client-go v0.28.6
17
- sigs.k8s.io/controller-runtime v0.16.3
15
+ k8s.io/apimachinery v0.29.3
16
+ k8s.io/client-go v0.29.3
17
+ sigs.k8s.io/controller-runtime v0.17.2
18
18
)
19
19
20
20
require (
@@ -23,47 +23,46 @@ require (
23
23
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
24
24
github.com/davecgh/go-spew v1.1.1 // indirect
25
25
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
26
- github.com/evanphx/json-patch/v5 v5.7 .0 // indirect
27
- github.com/fluxcd/pkg/apis/meta v1.3 .0 // indirect
26
+ github.com/evanphx/json-patch/v5 v5.8 .0 // indirect
27
+ github.com/fluxcd/pkg/apis/meta v1.4 .0 // indirect
28
28
github.com/fsnotify/fsnotify v1.7.0 // indirect
29
- github.com/go-logr/logr v1.3.0 // indirect
29
+ github.com/go-logr/logr v1.4.1 // indirect
30
30
github.com/go-logr/zapr v1.3.0 // indirect
31
31
github.com/go-openapi/jsonpointer v0.20.0 // indirect
32
32
github.com/go-openapi/jsonreference v0.20.2 // indirect
33
33
github.com/go-openapi/swag v0.22.4 // indirect
34
34
github.com/gogo/protobuf v1.3.2 // indirect
35
35
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
36
- github.com/golang/protobuf v1.5.3 // indirect
36
+ github.com/golang/protobuf v1.5.4 // indirect
37
37
github.com/google/gnostic-models v0.6.8 // indirect
38
38
github.com/google/go-cmp v0.6.0 // indirect
39
39
github.com/google/gofuzz v1.2.0 // indirect
40
- github.com/google/uuid v1.5 .0 // indirect
40
+ github.com/google/uuid v1.6 .0 // indirect
41
41
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
42
42
github.com/hashicorp/go-retryablehttp v0.7.5 // indirect
43
43
github.com/imdario/mergo v0.3.16 // indirect
44
44
github.com/josharian/intern v1.0.0 // indirect
45
45
github.com/json-iterator/go v1.1.12 // indirect
46
46
github.com/klauspost/cpuid/v2 v2.2.6 // indirect
47
47
github.com/mailru/easyjson v0.7.7 // indirect
48
- github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
49
48
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
50
49
github.com/modern-go/reflect2 v1.0.2 // indirect
51
50
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
52
51
github.com/opencontainers/go-digest v1.0.0 // indirect
53
52
github.com/opencontainers/go-digest/blake3 v0.0.0-20231025023718-d50d2fec9c98 // indirect
54
53
github.com/pkg/errors v0.9.1 // indirect
55
- github.com/prometheus/client_golang v1.18 .0 // indirect
54
+ github.com/prometheus/client_golang v1.19 .0 // indirect
56
55
github.com/prometheus/client_model v0.5.0 // indirect
57
- github.com/prometheus/common v0.45 .0 // indirect
56
+ github.com/prometheus/common v0.48 .0 // indirect
58
57
github.com/prometheus/procfs v0.12.0 // indirect
59
58
github.com/zeebo/blake3 v0.2.3 // indirect
60
59
go.uber.org/multierr v1.11.0 // indirect
61
- go.uber.org/zap v1.26 .0 // indirect
60
+ go.uber.org/zap v1.27 .0 // indirect
62
61
golang.org/x/exp v0.0.0-20231206192017-f3f8817b8deb // indirect
63
- golang.org/x/net v0.20 .0 // indirect
62
+ golang.org/x/net v0.22 .0 // indirect
64
63
golang.org/x/oauth2 v0.16.0 // indirect
65
- golang.org/x/sys v0.16 .0 // indirect
66
- golang.org/x/term v0.16 .0 // indirect
64
+ golang.org/x/sys v0.18 .0 // indirect
65
+ golang.org/x/term v0.18 .0 // indirect
67
66
golang.org/x/text v0.14.0 // indirect
68
67
golang.org/x/time v0.5.0 // indirect
69
68
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
@@ -72,12 +71,12 @@ require (
72
71
gopkg.in/inf.v0 v0.9.1 // indirect
73
72
gopkg.in/yaml.v2 v2.4.0 // indirect
74
73
gopkg.in/yaml.v3 v3.0.1 // indirect
75
- k8s.io/api v0.28.6 // indirect
76
- k8s.io/apiextensions-apiserver v0.28.6 // indirect
77
- k8s.io/component-base v0.28.6 // indirect
74
+ k8s.io/api v0.29.3 // indirect
75
+ k8s.io/apiextensions-apiserver v0.29.3 // indirect
76
+ k8s.io/component-base v0.29.3 // indirect
78
77
k8s.io/klog/v2 v2.110.1 // indirect
79
78
k8s.io/kube-openapi v0.0.0-20231206194836-bf4651e18aa8 // indirect
80
- k8s.io/utils v0.0.0-20231127182322-b307cd553661 // indirect
79
+ k8s.io/utils v0.0.0-20240310230437-4693a0247e57 // indirect
81
80
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
82
81
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
83
82
sigs.k8s.io/yaml v1.4.0 // indirect
0 commit comments