-
Notifications
You must be signed in to change notification settings - Fork 11
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
labs: Rework random rectangle generation #462
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6db6d82
to
d7b1518
Compare
d7b1518
to
12d4b06
Compare
12d4b06
to
293e5f9
Compare
293e5f9
to
7bd41fc
Compare
7bd41fc
to
94f2cc5
Compare
94f2cc5
to
306c74f
Compare
306c74f
to
7edd72b
Compare
7edd72b
to
4f339d7
Compare
4f339d7
to
8daddb3
Compare
8daddb3
to
b752618
Compare
b752618
to
3938557
Compare
3938557
to
c83f04c
Compare
c83f04c
to
494dcef
Compare
494dcef
to
622f607
Compare
24ac7b0
to
47caea8
Compare
47caea8
to
fa15a27
Compare
fa15a27
to
a939d2e
Compare
a939d2e
to
38c0c6c
Compare
38c0c6c
to
9cc69e5
Compare
9cc69e5
to
ef9189e
Compare
ef9189e
to
28204cb
Compare
28204cb
to
b4d2d1a
Compare
b4d2d1a
to
c2ee759
Compare
camh-
approved these changes
Feb 8, 2025
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.
🥬 LGTM. Would be nice to get to the bottom of how the platform difference causes this problem, but if this is blocking then forge ahead!
Add slight pixel tolerance to no-diagonal test to make test pass again on Mac. Even regenerating the mac specific screenshots did not resolve this as the no-dialog.png golden file is used in two instances and must render slightly differently in each one of them.
Upgrade go to 1.23.6 to fix vulnerability only listed on linux. Vulnerability #1: GO-2025-3447 Timing sidechannel for P-256 on ppc64le in crypto/internal/nistec More info: https://pkg.go.dev/vuln/GO-2025-3447 Standard library Found in: crypto/internal/[email protected] Fixed in: crypto/internal/[email protected] Platforms: ppc64le Example traces found: #1: pkg/cli/runtime.go:89:21: cli.Platform.Cls calls exec.Command, which eventually calls nistec.P256Point.SetBytes We are not doing a full upgrade because the last one was just merged and I can't upgrade on mac without first fixing the rounding issue (chicken-egg).
Rework random rectangle generation to avoid rounding differences on Mac and Linux. This is not going to the bottom of the problem, just making the build pass again on mac for now.
c2ee759
to
6f2a675
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Rework random rectangle generation to avoid rounding differences on Mac and
Linux. This is not going to the bottom of the problem, just making the build
pass again on mac for now.
Additionally a vulnerability has been found by govulncheck in the crypto stdlib.
An upgrade with
hermit upgrade go
from 1.23.5 to 1.23.6 fixes the build.