| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Signed-off-by: Daeyeon Jeong daeyeon.dev@gmail.com
|
cc @nodejs/whatwg-stream |
Sorry, something went wrong.
Signed-off-by: Daeyeon Jeong daeyeon.dev@gmail.com
Sorry, something went wrong.
There was a problem hiding this comment.
lgtm
Sorry, something went wrong.
Commit Queue failed- Loading data for nodejs/node/pull/44292
Error: [undefined] GraphQL request Error: Something went wrong while executing your query. Please include `0782:9217:273B87F:285A21E:6309E917` when reporting this issue.
at Request.query (file:///opt/hostedtoolcache/node/16.16.0/x64/lib/node_modules/node-core-utils/lib/request.js:112:19)
at processTicksAndRejections (node:internal/process/task_queues:96:5)
at async Request.queryAll (file:///opt/hostedtoolcache/node/16.16.0/x64/lib/node_modules/node-core-utils/lib/request.js:136:20)
at async Request.gql (file:///opt/hostedtoolcache/node/16.16.0/x64/lib/node_modules/node-core-utils/lib/request.js:66:22)
at async PRData.getReviews (file:///opt/hostedtoolcache/node/16.16.0/x64/lib/node_modules/node-core-utils/lib/pr_data.js:88:20)
at async Promise.all (index 1)
at async Promise.all (index 1)
at async PRData.getAll (file:///opt/hostedtoolcache/node/16.16.0/x64/lib/node_modules/node-core-utils/lib/pr_data.js:58:5)
at async getMetadata (file:///opt/hostedtoolcache/node/16.16.0/x64/lib/node_modules/node-core-utils/components/metadata.js:18:3)
at async main (file:///opt/hostedtoolcache/node/16.16.0/x64/lib/node_modules/node-core-utils/components/git/land.js:200:22) {
data: {
variables: { after: null, prid: 44292, owner: 'nodejs', repo: 'node' }
}
}https://github.com/nodejs/node/actions/runs/2938807443
|
Sorry, something went wrong.
Signed-off-by: Daeyeon Jeong daeyeon.dev@gmail.com PR-URL: #44292 Refs: https://streams.spec.whatwg.org/#default-reader-release-lock Refs: https://streams.spec.whatwg.org/#byob-reader-release-lock Refs: https://developer.mozilla.org/en-US/docs/Web/API/ReadableStreamDefaultReader/releaseLock Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
|
This is breaking wpt tests. Would you mind to backport this to the v16.x release line? |
Sorry, something went wrong.
|
@juanarbol Thanks for preparing v16.x. Backporting this is pending for now since it depends on both #43455 and #44234. |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
This updates ReadableStreamReader.releaseLock() behavior to meet the latest web streams compatibility.
The notable change seems the following:
Attempting to releaseLock() when a reader has pending read requests leads :
Old version
Latest version
Refs: https://streams.spec.whatwg.org/#default-reader-release-lock
Refs: https://streams.spec.whatwg.org/#byob-reader-release-lock
Refs: https://developer.mozilla.org/en-US/docs/Web/API/ReadableStreamDefaultReader/releaseLock
Signed-off-by: Daeyeon Jeong daeyeon.dev@gmail.com