mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-04 02:40:06 +00:00
This moves us from the previous Long Term Support version codenamed 'Iron' to the newly released Long Term Support version 22.11.0 Codename 'Jod' Changelog: https://github.com/nodejs/node/blob/main/doc/changelogs/CHANGELOG_V22.md#22.11.0 License-Update: Add amaro dependency under MIT License. Add swc dependency under Aapche License Version 2.0. Add simdjson dependency under Apache License Version 2.0. Add on-exit-leak-free under MIT License. Remove ESLint. Remove base64 dependency. Removed patchs: 182d9c05e78.patch - This was a backport to 20.x it is now integrated in 22.x Added patches: Two small patches here to use Bourne Shell instad of BASH. 0001-custom-env.patch 0001-positional-args.patch This patch from https://github.com/nodejs/node/commit/686da19abb that addressed CVE-2024-22017 0001-deps-disable-io_uring-support-in-libuv.patch Other patches were refreshed. Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
20 lines
767 B
Diff
20 lines
767 B
Diff
From 07ee84863fa4a9e4d5f155632478587b0acbf71a Mon Sep 17 00:00:00 2001
|
|
From: Jason Schonberg <schonm@gmail.com>
|
|
Date: Tue, 30 Apr 2024 21:48:33 -0400
|
|
Subject: [PATCH] Update to nodejs 22.0.0
|
|
|
|
Upstream-Status: Inappropriate [embedded specific]
|
|
---
|
|
test/fixtures/run-script/node_modules/.bin/positional-args | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/test/fixtures/run-script/node_modules/.bin/positional-args b/test/fixtures/run-script/node_modules/.bin/positional-args
|
|
index 2d809237..3dc5314f 100755
|
|
--- a/test/fixtures/run-script/node_modules/.bin/positional-args
|
|
+++ b/test/fixtures/run-script/node_modules/.bin/positional-args
|
|
@@ -1,3 +1,3 @@
|
|
-#!/bin/bash
|
|
+#!/bin/sh
|
|
echo "Arguments: '$@'"
|
|
echo "The total number of arguments are: $#"
|