-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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
crypto: fix randomInt range check #35052
Closed
Closed
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
Review requested:
|
nodejs-github-bot
added
the
crypto
Issues and PRs related to the crypto subsystem.
label
Sep 4, 2020
4 tasks
richardlau
approved these changes
Sep 4, 2020
github-actions
bot
removed
the
request-ci
Add this label to start a Jenkins CI on a PR.
label
Sep 4, 2020
richardlau
added
the
author ready
PRs that have at least one approval, no pending requests for changes, and a CI started.
label
Sep 4, 2020
lundibundi
approved these changes
Sep 4, 2020
cjihrig
approved these changes
Sep 4, 2020
mscdex
reviewed
Sep 4, 2020
github-actions
bot
removed
the
request-ci
Add this label to start a Jenkins CI on a PR.
label
Sep 6, 2020
richardlau
added
the
commit-queue
Add this label to land a pull request using GitHub Actions.
label
Sep 7, 2020
github-actions
bot
removed
the
commit-queue
Add this label to land a pull request using GitHub Actions.
label
Sep 7, 2020
Commit Queue failed- Loading data for nodejs/node/pull/35052 ✔ Done loading data for nodejs/node/pull/35052 ----------------------------------- PR info ------------------------------------ Title crypto: fix randomInt range check (#35052) ⚠ Could not retrieve the email or name of the PR author's from user's GitHub profile! Branch tniessen:crypto-fix-randomint-range-check -> nodejs:master Labels author ready, crypto Commits 2 - crypto: fix randomInt range check - fixup! crypto: fix randomInt range check Committers 1 - Tobias Nießen PR-URL: https://github.com/nodejs/node/pull/35052 Refs: https://github.com/nodejs/node/pull/34600 Reviewed-By: Richard Lau Reviewed-By: Denys Otrishko Reviewed-By: Colin Ihrig ------------------------------ Generated metadata ------------------------------ PR-URL: https://github.com/nodejs/node/pull/35052 Refs: https://github.com/nodejs/node/pull/34600 Reviewed-By: Richard Lau Reviewed-By: Denys Otrishko Reviewed-By: Colin Ihrig -------------------------------------------------------------------------------- ⚠ Commits were pushed since the last review: ⚠ - fixup! crypto: fix randomInt range check ✔ Last GitHub Actions successful ℹ Last Full PR CI on 2020-09-07T10:54:14Z: https://ci.nodejs.org/job/node-test-pull-request/33088/ - Querying data for job/node-test-pull-request/33088/ ✔ Build data downloaded ✔ Last Jenkins CI successful ℹ This PR was created on Fri, 04 Sep 2020 10:18:12 GMT ✔ Approvals: 3 ✔ - Richard Lau (@richardlau): https://github.com/nodejs/node/pull/35052#pullrequestreview-482554674 ✔ - Denys Otrishko (@lundibundi): https://github.com/nodejs/node/pull/35052#pullrequestreview-482579029 ✔ - Colin Ihrig (@cjihrig) (TSC): https://github.com/nodejs/node/pull/35052#pullrequestreview-482658703 -------------------------------------------------------------------------------- ✔ Aborted `git node land` session in /home/runner/work/node/node/.ncu |
github-actions
bot
added
the
commit-queue-failed
An error occurred while landing this pull request using GitHub Actions.
label
Sep 7, 2020
richardlau
approved these changes
Sep 7, 2020
richardlau
added
the
commit-queue
Add this label to land a pull request using GitHub Actions.
label
Sep 7, 2020
github-actions
bot
removed
the
commit-queue
Add this label to land a pull request using GitHub Actions.
label
Sep 7, 2020
Landed in cb2b82b |
nodejs-github-bot
pushed a commit
that referenced
this pull request
Sep 7, 2020
Refs: #34600 PR-URL: #35052 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Denys Otrishko <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
richardlau
pushed a commit
that referenced
this pull request
Sep 7, 2020
Refs: #34600 PR-URL: #35052 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Denys Otrishko <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
richardlau
removed
the
commit-queue-failed
An error occurred while landing this pull request using GitHub Actions.
label
Sep 7, 2020
richardlau
pushed a commit
that referenced
this pull request
Sep 7, 2020
Refs: #34600 PR-URL: #35052 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Denys Otrishko <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
addaleax
pushed a commit
that referenced
this pull request
Sep 22, 2020
Refs: #34600 PR-URL: #35052 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Denys Otrishko <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
Merged
joesepi
pushed a commit
to joesepi/node
that referenced
this pull request
Jan 8, 2021
Refs: nodejs#34600 PR-URL: nodejs#35052 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Denys Otrishko <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
tniessen
removed
the
author ready
PRs that have at least one approval, no pending requests for changes, and a CI started.
label
Jan 14, 2021
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.
The current implementation allows
crypto.randomInt(0)
and returnsNaN
.Refs: #34600
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes