Skip to content

Commit b2b19ed

Browse files
Merge branch 'main' into feat/region-config
2 parents beb2e23 + bd49305 commit b2b19ed

File tree

5 files changed

+14
-5
lines changed

5 files changed

+14
-5
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"packages/build-info": "7.15.2",
3-
"packages/build": "29.55.5",
3+
"packages/build": "29.56.0",
44
"packages/edge-bundler": "12.2.3",
55
"packages/cache-utils": "5.1.6",
66
"packages/config": "20.19.0",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/build/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,13 @@
105105
* dependencies
106106
* @netlify/config bumped from ^20.8.0 to ^20.8.1
107107

108+
## [29.56.0](https://github.com/netlify/build/compare/build-v29.55.5...build-v29.56.0) (2024-10-29)
109+
110+
111+
### Features
112+
113+
* keep logging pipe for trusted plugins ([#5899](https://github.com/netlify/build/issues/5899)) ([a631d8c](https://github.com/netlify/build/commit/a631d8c71316b083017cfd702f138e723043c6da))
114+
108115
## [29.55.5](https://github.com/netlify/build/compare/build-v29.55.4...build-v29.55.5) (2024-10-25)
109116

110117

packages/build/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@netlify/build",
3-
"version": "29.55.5",
3+
"version": "29.56.0",
44
"description": "Netlify build module",
55
"type": "module",
66
"exports": "./lib/index.js",

packages/build/src/steps/plugin.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,9 @@ export const firePluginStep = async function ({
108108
})
109109
return { newError }
110110
} finally {
111-
await unpipePluginOutput(childProcess, logs, listeners, standardStreams)
111+
if (!isTrustedPlugin(pluginPackageJson?.name) || listeners) {
112+
await unpipePluginOutput(childProcess, logs, listeners, standardStreams)
113+
}
112114
logStepCompleted(logs, verbose)
113115
}
114116
}

0 commit comments

Comments
 (0)