- 
          
- 
                Notifications
    You must be signed in to change notification settings 
- Fork 33.6k
stream: allow transfer of readable byte streams #45955
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
          
     Merged
      
      
            nodejs-github-bot
  merged 2 commits into
  nodejs:main
from
mrbbot:fix/readable-bytes-stream-transfer
  
      
      
   
  Feb 4, 2023 
      
    
                
     Merged
            
            stream: allow transfer of readable byte streams #45955
                    nodejs-github-bot
  merged 2 commits into
  nodejs:main
from
mrbbot:fix/readable-bytes-stream-transfer
  
      
      
   
  Feb 4, 2023 
              
            Conversation
  
    
      This file contains hidden or 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
    
  
  
    
    Updates the `ReadableStream` constructor to mark byte streams as transferable. When transferred, byte streams become regular streams. Refs: nodejs#39062 Refs: https://streams.spec.whatwg.org/#rs-transfer
    
  mrbbot 
      added a commit
        to cloudflare/miniflare
      that referenced
      this pull request
    
      Dec 23, 2022 
    
    
      
  
    
      
    
  
`5.11.0` includes nodejs/undici#1643. There are some non-trivial changes required to upgrade to `5.14.0`: - Since `[email protected]` (nodejs/undici#1697), `structuredClone` is used on bodies, which may be byte streams. Due to a Node bug (nodejs/node#45955), readable byte streams cannot be transferred, breaking `fetch`. - Since `[email protected]` (nodejs/undici#1793), global `ReadableStream` and `TransformStream` are used if available. In the Vitest environment, (which modifies the global scope unlike Jest which runs tests in a VM context), if the `streams_enable_constructors` compatibility flag isn't enabled, `fetch` breaks as `ReadableStream`s can't be constructed.
              
                    daeyeon
  
              
              approved these changes
              
                  
                    Jan 3, 2023 
                  
              
              
            
            
      
        
              This comment was marked as outdated.
        
        
      
    
  This comment was marked as outdated.
| /cc @nodejs/whatwg-stream | 
              
                    mcollina
  
              
              approved these changes
              
                  
                    Jan 3, 2023 
                  
              
              
            
            
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 this conflict with / make harder / make impossible #45853? | 
              
                    benjamingr
  
              
              approved these changes
              
                  
                    Jan 28, 2023 
                  
              
              
            
            
              
                    jasnell
  
              
              approved these changes
              
                  
                    Jan 28, 2023 
                  
              
              
            
            
              
                    mcollina
  
              
              approved these changes
              
                  
                    Feb 4, 2023 
                  
              
              
            
            
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
| Landed in 03854f6 | 
  This was referenced Feb 5, 2023 
      
    
  MylesBorins 
      pushed a commit
      that referenced
      this pull request
    
      Feb 18, 2023 
    
    
      
  
    
      
    
  
Updates the `ReadableStream` constructor to mark byte streams as transferable. When transferred, byte streams become regular streams. Refs: #39062 Refs: https://streams.spec.whatwg.org/#rs-transfer PR-URL: #45955 Reviewed-By: Daeyeon Jeong <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: James M Snell <[email protected]>
      
     Merged
  
    
  danielleadams 
      pushed a commit
      that referenced
      this pull request
    
      Apr 11, 2023 
    
    
      
  
    
      
    
  
Updates the `ReadableStream` constructor to mark byte streams as transferable. When transferred, byte streams become regular streams. Refs: #39062 Refs: https://streams.spec.whatwg.org/#rs-transfer PR-URL: #45955 Reviewed-By: Daeyeon Jeong <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: James M Snell <[email protected]>
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
      Labels
      
    author ready
  PRs that have at least one approval, no pending requests for changes, and a CI started. 
  
    commit-queue-squash
  Add this label to instruct the Commit Queue to squash all the PR commits into the first one. 
  
    web streams
  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.
  
    
  
    
Previosuly, attempting to transfer a
type: "bytes"ReadableStreamlike so......would fail with...
This PR updates the
ReadableStreamconstructor to mark byte streams as transferable. When transferred, byte streams become regular streams.(tested with Chrome 108.0.5359.124)
Refs: #39062
Refs: https://streams.spec.whatwg.org/#rs-transfer