[showcase] Preserve 4-byte UTF-8 in FileBlob streams - #2
Open
ivanmilevtues wants to merge 1 commit into
Open
Conversation
CodeBoarding reviewStatus: 1 changed component See the full change in CodeBoarding. graph LR
n_CLI_Core_Orchestration["CLI Core #38; Orchestration"]
n_Python_Serverless_Runtime["Python Serverless Runtime"]
n_Python_Package_Distribution["Python Package Distribution"]
n_Local_Development_Execution["Local Development #38; Execution"]
n_Rust_Serverless_Runtime["Rust Serverless Runtime"]
n_Build_Utilities_Resource_Management["Build Utilities #38; Resource Management"]
n_Infrastructure_Proxy_Services["Infrastructure #38; Proxy Services"]
n_Build_Tooling_Binary_Distribution["Build Tooling #38; Binary Distribution"]
n_CLI_Core_Orchestration -- "Triggers local emulation environment" --> n_Local_Development_Execution
n_CLI_Core_Orchestration -- "queries framework metadata for project initiali…" --> n_Infrastructure_Proxy_Services
n_Python_Serverless_Runtime -- "defines deployment artifacts via Lambda abstrac…" --> n_Build_Utilities_Resource_Management
n_Python_Package_Distribution -- "provides runtime dependencies and wheels" --> n_Python_Serverless_Runtime
n_Local_Development_Execution -- "utilizes IPC proxy for cross-language request r…" --> n_Infrastructure_Proxy_Services
n_Rust_Serverless_Runtime -- "standardizes build outputs and error reporting" --> n_Build_Utilities_Resource_Management
n_Infrastructure_Proxy_Services -- "dispatches requests to Python ASGI/HTTP handlers" --> n_Python_Serverless_Runtime
n_Build_Tooling_Binary_Distribution -- "Packages and distributes CLI binaries" --> n_CLI_Core_Orchestration
classDef added fill:#1f883d,stroke:#0b5d23,color:#ffffff;
classDef modified fill:#bf8700,stroke:#7d4e00,color:#ffffff;
classDef deleted fill:#cf222e,stroke:#82071e,color:#ffffff,stroke-dasharray:5 3;
class n_CLI_Core_Orchestration modified;
|
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
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.
Showcase context
Exact patch reproduction of vercel/vercel#17277.
This focused bug fix prevents UTF-16 surrogate pairs from being split at stream chunk boundaries, which could corrupt Edge Function bundles during
vercel build. It includes the original regression test and package changeset.The synthetic base contains the CodeBoarding workflow with this upstream patch removed; this head reapplies the exact upstream diff.