Skip to content

Commit 3287be3

Browse files
authored
chore(node): update version to 18.12.1 (#3059)
1 parent 5bb2db6 commit 3287be3

File tree

575 files changed

+3397
-3395
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

575 files changed

+3397
-3395
lines changed

node/_process/process.ts

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export const platform = isWindows ? "win32" : Deno.build.os;
100100
* it pointed to Deno version, but that led to incompability
101101
* with some packages.
102102
*/
103-
export const version = "v16.17.0";
103+
export const version = "v18.12.1";
104104

105105
/**
106106
* https://nodejs.org/api/process.html#process_process_versions
@@ -111,19 +111,21 @@ export const version = "v16.17.0";
111111
* with some packages. Value of `v8` field is still taken from `Deno.version`.
112112
*/
113113
export const versions = {
114-
node: "16.17.0",
114+
node: "18.12.1",
115115
uv: "1.43.0",
116116
zlib: "1.2.11",
117117
brotli: "1.0.9",
118118
ares: "1.18.1",
119-
modules: "93",
119+
modules: "108",
120120
nghttp2: "1.47.0",
121121
napi: "8",
122-
llhttp: "6.0.7",
123-
openssl: "1.1.1q+quic",
122+
llhttp: "6.0.10",
123+
openssl: "3.0.7+quic",
124124
cldr: "41.0",
125125
icu: "71.1",
126-
tz: "2022a",
126+
tz: "2022b",
127127
unicode: "14.0",
128+
ngtcp2: "0.8.1",
129+
nghttp3: "0.7.0",
128130
...Deno.version,
129131
};

node/_tools/TODO.md

Lines changed: 2816 additions & 2816 deletions

node/_tools/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"nodeVersion": "18.12.0",
2+
"nodeVersion": "18.12.1",
33
"ignore": {
44
"common": ["index.js", "internet.js", "tmpdir.js"],
55
"fixtures": [

node/_tools/setup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ async function copyTests(filePath: string) {
162162
for await (const entry of walk(path, { skip: ignoreList })) {
163163
const fragments = entry.path.split(sep);
164164
// Note: When the path is, for example,
165-
// "/path/to/deno_std/node/_tools/versions/node-v18.12.0/test/fixtures/policy/main.mjs"
165+
// "/path/to/deno_std/node/_tools/versions/node-v18.12.1/test/fixtures/policy/main.mjs"
166166
// then expectedSuite becomes "fixtures/policy" (The folder after "test" becomes "suite")
167167
const expectedSuite = fragments.slice(fragments.indexOf(NODE_FILE) + 2, -1)
168168
.join("/");

node/_tools/test/common/countdown.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// deno-lint-ignore-file
33

44
// Copyright Joyent and Node contributors. All rights reserved. MIT license.
5-
// Taken from Node 18.12.0
5+
// Taken from Node 18.12.1
66
// This file is automatically generated by "node/_tools/setup.ts". Do not modify this file manually
77

88
'use strict';

node/_tools/test/common/dns.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// deno-lint-ignore-file
33

44
// Copyright Joyent and Node contributors. All rights reserved. MIT license.
5-
// Taken from Node 18.12.0
5+
// Taken from Node 18.12.1
66
// This file is automatically generated by "node/_tools/setup.ts". Do not modify this file manually
77

88
'use strict';

node/_tools/test/common/duplexpair.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// deno-lint-ignore-file
33

44
// Copyright Joyent and Node contributors. All rights reserved. MIT license.
5-
// Taken from Node 18.12.0
5+
// Taken from Node 18.12.1
66
// This file is automatically generated by "node/_tools/setup.ts". Do not modify this file manually
77

88
'use strict';

node/_tools/test/common/fixtures.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// deno-lint-ignore-file
33

44
// Copyright Joyent and Node contributors. All rights reserved. MIT license.
5-
// Taken from Node 18.12.0
5+
// Taken from Node 18.12.1
66
// This file is automatically generated by "node/_tools/setup.ts". Do not modify this file manually
77

88
'use strict';

node/_tools/test/common/hijackstdio.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// deno-lint-ignore-file
33

44
// Copyright Joyent and Node contributors. All rights reserved. MIT license.
5-
// Taken from Node 18.12.0
5+
// Taken from Node 18.12.1
66
// This file is automatically generated by "node/_tools/setup.ts". Do not modify this file manually
77

88
'use strict';

node/_tools/test/common/index.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// deno-lint-ignore-file
33

44
// Copyright Joyent and Node contributors. All rights reserved. MIT license.
5-
// Taken from Node 18.12.0
5+
// Taken from Node 18.12.1
66
// This file is automatically generated by "node/_tools/setup.ts". Do not modify this file manually
77

88
import { createRequire } from 'module';

0 commit comments

Comments
 (0)