Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nodejs/undici
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v6.19.6
Choose a base ref
...
head repository: nodejs/undici
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v6.19.7
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Aug 9, 2024

  1. build: remove -i flag to docker run to allow command being run withou…

    …t a TTY
    
    Signed-off-by: Matteo Collina <[email protected]>
    mcollina committed Aug 9, 2024
    Copy the full SHA
    09c5667 View commit details
  2. Bumped v6.19.7

    Signed-off-by: Matteo Collina <[email protected]>
    mcollina committed Aug 9, 2024
    Copy the full SHA
    c81f5a7 View commit details
Showing with 2 additions and 2 deletions.
  1. +1 −1 build/wasm.js
  2. +1 −1 package.json
2 changes: 1 addition & 1 deletion build/wasm.js
Original file line number Diff line number Diff line change
@@ -62,7 +62,7 @@ if (process.argv[2] === '--prebuild') {
}

if (process.argv[2] === '--docker') {
let cmd = `docker run --rm -it --platform=${platform.toString().trim()}`
let cmd = `docker run --rm -t --platform=${platform.toString().trim()}`
if (process.platform === 'linux') {
cmd += ` --user ${process.getuid()}:${process.getegid()}`
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "undici",
"version": "6.19.6",
"version": "6.19.7",
"description": "An HTTP/1.1 client, written from scratch for Node.js",
"homepage": "https://undici.nodejs.org",
"bugs": {