Skip to content

Commit 4358b67

Browse files
authored
Merge branch 'openshift:main' into master
2 parents 8dde6cd + fa1bc38 commit 4358b67

File tree

135 files changed

+4734
-1319
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

135 files changed

+4734
-1319
lines changed

.snyk

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ exclude:
55
global:
66
- vendor/**
77
- "**/*_test.go"
8+
- pkg/cli/admin/internal/codesign/machoresign.go # the paths are fed by oc
9+
- pkg/cli/admin/release/new.go # we sanitize the directory
10+
- pkg/cli/rsync/copy_tar.go # mostly directories are determined by oc
11+
- pkg/helpers/source-to-image/tar/tar.go # we sanitize the directory
812
- pkg/cli/image/archive/archive.go # this is copy of moby/moby/pkg/archive and making any changes is risky that may create uneasy to find bugs.
913
- pkg/cli/admin/inspect/util.go # InsecureSkipVerify is required to show the event page which is managed by CI jobs.
1014
- pkg/cli/admin/release/git.go # md5 is used to generate repo name in remoteNameForRepo func and to be compatible with git, md5 is required.

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,8 @@ OpenShift cluster.
1111

1212
All contributions are welcome - oc uses the Apache 2 license and does not require
1313
any contributor agreement to submit patches. Please open issues for any bugs
14-
or problems you encounter, ask questions on the OpenShift IRC channel
15-
(#openshift-dev on freenode), or get involved in the [kubectl](https://github.com/kubernetes/kubectl)
16-
and [kubernetes project](https://github.com/kubernetes/kubernetes) at the container
17-
runtime layer.
14+
or problems you encounter. You can also get involved with the [kubectl](https://github.com/kubernetes/kubectl)
15+
and the [Kubernetes project](https://github.com/kubernetes/kubernetes).
1816

1917
## Building
2018

go.mod

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require (
77
github.com/MakeNowJust/heredoc v1.0.0
88
github.com/RangelReale/osincli v0.0.0-20160924135400-fababb0555f2
99
github.com/alessio/shellescape v1.4.1
10-
github.com/alexbrainman/sspi v0.0.0-20210105120005-909beea2cc74
10+
github.com/alexbrainman/sspi v0.0.0-20231016080023-1a75b4708caa
1111
github.com/alicebob/sqlittle v1.4.0
1212
github.com/apcera/gssapi v0.0.0-00010101000000-000000000000
1313
github.com/aws/aws-sdk-go v1.55.7
@@ -24,7 +24,7 @@ require (
2424
github.com/fsnotify/fsnotify v1.9.0
2525
github.com/fsouza/go-dockerclient v1.10.0
2626
github.com/ghodss/yaml v1.0.0
27-
github.com/go-ldap/ldap/v3 v3.4.3
27+
github.com/go-ldap/ldap/v3 v3.4.11
2828
github.com/gonum/graph v0.0.0-20170401004347-50b27dea7ebb
2929
github.com/google/go-cmp v0.7.0
3030
github.com/int128/oauth2cli v1.17.0
@@ -37,19 +37,19 @@ require (
3737
github.com/openshift/api v0.0.0-20250710082954-674ad74beffc
3838
github.com/openshift/build-machinery-go v0.0.0-20250602125535-1b6d00b8c37c
3939
github.com/openshift/client-go v0.0.0-20250710075018-396b36f983ee
40-
github.com/openshift/library-go v0.0.0-20250711143941-47604345e7ea
40+
github.com/openshift/library-go v0.0.0-20250911074910-e2c18d5abc3a
4141
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
4242
github.com/prometheus/client_golang v1.22.0
4343
github.com/russross/blackfriday v1.6.0
4444
github.com/spf13/cobra v1.9.1
4545
github.com/spf13/pflag v1.0.7
4646
github.com/vincent-petithory/dataurl v1.0.0
47-
golang.org/x/crypto v0.40.0
48-
golang.org/x/net v0.42.0
47+
golang.org/x/crypto v0.42.0
48+
golang.org/x/net v0.43.0
4949
golang.org/x/oauth2 v0.30.0
50-
golang.org/x/sync v0.16.0
51-
golang.org/x/sys v0.34.0
52-
golang.org/x/term v0.33.0
50+
golang.org/x/sync v0.17.0
51+
golang.org/x/sys v0.36.0
52+
golang.org/x/term v0.35.0
5353
k8s.io/api v0.33.3
5454
k8s.io/apiextensions-apiserver v0.33.3
5555
k8s.io/apimachinery v0.33.3
@@ -66,7 +66,7 @@ require (
6666

6767
require (
6868
github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect
69-
github.com/Azure/go-ntlmssp v0.0.0-20211209120228-48547f28849e // indirect
69+
github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 // indirect
7070
github.com/BurntSushi/toml v1.5.0 // indirect
7171
github.com/Microsoft/go-winio v0.6.2 // indirect
7272
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
@@ -89,7 +89,7 @@ require (
8989
github.com/fatih/camelcase v1.0.0 // indirect
9090
github.com/felixge/fgprof v0.9.4 // indirect
9191
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
92-
github.com/go-asn1-ber/asn1-ber v1.5.4 // indirect
92+
github.com/go-asn1-ber/asn1-ber v1.5.8-0.20250403174932-29230038a667 // indirect
9393
github.com/go-errors/errors v1.4.2 // indirect
9494
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
9595
github.com/go-git/go-billy/v5 v5.6.1 // indirect
@@ -179,9 +179,9 @@ require (
179179
go.yaml.in/yaml/v2 v2.4.2 // indirect
180180
go.yaml.in/yaml/v3 v3.0.4 // indirect
181181
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
182-
golang.org/x/text v0.27.0 // indirect
182+
golang.org/x/text v0.29.0 // indirect
183183
golang.org/x/time v0.9.0 // indirect
184-
golang.org/x/tools v0.34.0 // indirect
184+
golang.org/x/tools v0.36.0 // indirect
185185
google.golang.org/protobuf v1.36.5 // indirect
186186
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
187187
gopkg.in/inf.v0 v0.9.1 // indirect

0 commit comments

Comments
 (0)