forked from pool/nodejs20
* Bypass incomplete fix of CVE-2024-27980 (bsc#1227560, CVE-2024-36138) * Bypass network import restriction via data URL (bsc#1227554, CVE-2024-22020) * fs.lstat bypasses permission model (bsc#1227562, CVE-2024-22018) * fs.fchown/fchmod bypasses permission model (bsc#1227561, CVE-2024-36137) * Permission model improperly processes UNC paths (bsc#1227563, CVE-2024-37372) - Changes in 20.15.0: * test_runner: support test plans * inspector: introduce the --inspect-wait flag * zlib: expose zlib.crc32() * cli: allow running wasm in limited vmem with --disable-wasm-trap-handler - Changes in 20.14.0 * src,permission: throw async errors on async APIs * test_runner: support forced exit - fix_ci_tests.patch, npm_search_paths.patch: refreshed - skip_no_console.patch: dropped, upstreamed OBS-URL: https://build.opensuse.org/package/show/devel:languages:nodejs/nodejs20?expand=0&rev=81
33 lines
1.1 KiB
Diff
33 lines
1.1 KiB
Diff
Index: node-v20.15.1/deps/npm/lib/commands/help-search.js
|
|
===================================================================
|
|
--- node-v20.15.1.orig/deps/npm/lib/commands/help-search.js
|
|
+++ node-v20.15.1/deps/npm/lib/commands/help-search.js
|
|
@@ -17,7 +17,7 @@ class HelpSearch extends BaseCommand {
|
|
throw this.usageError()
|
|
}
|
|
|
|
- const docPath = path.resolve(this.npm.npmRoot, 'docs/content')
|
|
+ const docPath = '/usr/share/doc/packages/nodejs'
|
|
let files = await glob(`${globify(docPath)}/*/*.md`)
|
|
// preserve glob@8 behavior
|
|
files = files.sort((a, b) => a.localeCompare(b, 'en'))
|
|
Index: node-v20.15.1/deps/npm/lib/npm.js
|
|
===================================================================
|
|
--- node-v20.15.1.orig/deps/npm/lib/npm.js
|
|
+++ node-v20.15.1/deps/npm/lib/npm.js
|
|
@@ -338,7 +338,13 @@ class Npm {
|
|
}
|
|
|
|
get globalPrefix () {
|
|
- return this.config.globalPrefix
|
|
+ let prefix = this.config.globalPrefix
|
|
+
|
|
+ // don't poop all over distro territory - use /usr/local instead
|
|
+ if (prefix === '/usr')
|
|
+ return '/usr/local'
|
|
+
|
|
+ return prefix;
|
|
}
|
|
|
|
get localPrefix () {
|