mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-05-21 12:17:42 +00:00
Changelog for 22.13.0 : https://github.com/nodejs/node/blob/main/doc/changelogs/CHANGELOG_V22.md#22.13.0 Changelog for 22.13.1 : https://github.com/nodejs/node/blob/main/doc/changelogs/CHANGELOG_V22.md#22.13.1 The 22.13.1 release is a security fix addressing four CVEs. CVE-2025-23083 - src,loader,permission: throw on InternalWorker use when permission model is enabled (High) CVE-2025-23085 - src: fix HTTP2 mem leak on premature close and ERR_PROTO (Medium) CVE-2025-23084 - path: fix path traversal in normalize() on Windows (Medium) CVE-2025-22150 - Use of Insufficiently Random Values in undici fetch() (Medium) I introduce a new patch with this recipe 0001-Do-not-use-glob-in-deps.patch to revert https://github.com/nodejs/node/commit/77e2869ca6 I restored 0001-deps-disable-io_uring-support-in-libuv.patch as suggested here : https://lore.kernel.org/all/20241207140642.181134-1-martin.jansa@gmail.com/ Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
78 lines
1.6 KiB
JavaScript
Executable File
78 lines
1.6 KiB
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
/// Usage: oe-npm-cache <cache-dir> <type> <key> <file-name>
|
|
/// <type> ... meta - metainformation about package
|
|
/// tgz - tarball
|
|
|
|
const process = require("node:process");
|
|
|
|
module.paths.unshift("@@libdir@@/node_modules/npm/node_modules");
|
|
|
|
const cacache = require('cacache')
|
|
const fs = require('fs')
|
|
|
|
// argv[0] is 'node', argv[1] is this script
|
|
const cache_dir = process.argv[2]
|
|
const type = process.argv[3]
|
|
const key = process.argv[4]
|
|
const file = process.argv[5]
|
|
|
|
const data = fs.readFileSync(file)
|
|
|
|
// metadata content is highly nodejs dependent; when cache entries are not
|
|
// found, place debug statements in 'make-fetch-happen/lib/cache/policy.js'
|
|
// (CachePolicy::satisfies())
|
|
const xlate = {
|
|
'meta': {
|
|
'key_prefix': 'make-fetch-happen:request-cache:',
|
|
'metadata': function() {
|
|
return {
|
|
time: Date.now(),
|
|
url: key,
|
|
reqHeaders: {
|
|
'accept': 'application/json',
|
|
},
|
|
resHeaders: {
|
|
"content-type": "application/json",
|
|
"status": 200,
|
|
},
|
|
options: {
|
|
compress: true,
|
|
}
|
|
};
|
|
},
|
|
},
|
|
|
|
'tgz': {
|
|
'key_prefix': 'make-fetch-happen:request-cache:',
|
|
'metadata': function() {
|
|
return {
|
|
time: Date.now(),
|
|
url: key,
|
|
reqHeaders: {
|
|
'accept': '*/*',
|
|
},
|
|
resHeaders: {
|
|
"content-type": "application/octet-stream",
|
|
"status": 200,
|
|
},
|
|
options: {
|
|
compress: true,
|
|
},
|
|
};
|
|
},
|
|
},
|
|
};
|
|
|
|
const info = xlate[type];
|
|
let opts = {}
|
|
|
|
if (info.metadata) {
|
|
opts['metadata'] = info.metadata();
|
|
}
|
|
|
|
cacache.put(cache_dir, info.key_prefix + key, data, opts)
|
|
.then(integrity => {
|
|
console.log(`Saved content of ${key} (${file}).`);
|
|
})
|