-
Notifications
You must be signed in to change notification settings - Fork 42
OCPBUGS-87352: Updating coredns-container image to be consistent with ART for 5.0 #189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| build_root_image: | ||
| name: release | ||
| namespace: openshift | ||
| tag: rhel-9-release-golang-1.25-openshift-4.22 | ||
| tag: rhel-9-release-golang-1.26-openshift-5.0 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| 1.24.6 | ||
| 1.26.3 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -507,7 +507,7 @@ func TestDNS64(t *testing.T) { | |
| } | ||
| actual := rec.Msg | ||
| if actual.Rcode != rc { | ||
| t.Fatalf("ServeDNS should return real result code %q != %q", actual.Rcode, rc) | ||
| t.Fatalf("ServeDNS should return real result code %d != %d", actual.Rcode, rc) | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Were these flagged by
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes, that is right the build was failing and these where flagged by |
||
| } | ||
|
|
||
| if !reflect.DeepEqual(actual, tc.resp) { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The go directive is set to
1.26.3rather than1.26.0. Was that intentional?Typically the go directive tracks the minimum language version needed and pinning to a patch forces all consumers to have at least that patch. The
.go-versionfile at 1.26.3 is fine since that controls the local toolchain butgo.modcould arguably stay at 1.26.0?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1.26.0 flagged by coderabbit [1] due to security vulnerabilities hence updated to 1.26.3
[1] #189 (comment)