Skip to content

Commit 3261b06

Browse files
Merge pull request #1022 from nodejs/main
Create a new pull request by comparing changes across two branches
2 parents eaf7cdf + 298dea0 commit 3261b06

File tree

197 files changed

+5805
-3649
lines changed

Some content is hidden

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

197 files changed

+5805
-3649
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
/.github/ISSUE_TEMPLATE/* @nodejs/tsc
1616
/CODE_OF_CONDUCT.md @nodejs/tsc
1717
/CONTRIBUTING.md @nodejs/tsc
18-
/doc/contributing/*.md @nodejs/tsc
18+
/doc/contributing/**/* @nodejs/tsc
1919
/GOVERNANCE.md @nodejs/tsc
2020
/SECURITY.md @nodejs/tsc
2121
/LICENSE @nodejs/tsc

.github/workflows/test-macos.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,20 @@ jobs:
6565
# information.)
6666
- name: tools/doc/node_modules workaround
6767
run: make tools/doc/node_modules
68+
# This is needed due to https://github.com/nodejs/build/issues/3878
69+
- name: Cleanup
70+
run: |
71+
echo "::group::Free space before cleanup"
72+
df -h
73+
echo "::endgroup::"
74+
echo "::group::Cleaned Files"
75+
76+
sudo rm -rfv /Users/runner/Library/Android/sdk
77+
78+
echo "::endgroup::"
79+
echo "::group::Free space after cleanup"
80+
df -h
81+
echo "::endgroup::"
6882
- name: Build
6983
run: make build-ci -j$(getconf _NPROCESSORS_ONLN) V=1 CONFIG_FLAGS="--error-on-warn"
7084
- name: Test

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ For information about the governance of the Node.js project, see
287287
* [aduh95](https://github.com/aduh95) -
288288
**Antoine du Hamel** <<[email protected]>> (he/him)
289289
* [anonrig](https://github.com/anonrig) -
290-
**Yagiz Nizipli** <<[email protected]>> (he/him)
290+
**Yagiz Nizipli** <<[email protected]>> (he/him) - [Support me](https://github.com/sponsors/anonrig)
291291
* [apapirovski](https://github.com/apapirovski) -
292292
**Anatoli Papirovski** <<[email protected]>> (he/him)
293293
* [atlowChemi](https://github.com/atlowChemi) -

benchmark/vm/compile-script-in-isolate-cache.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@
55
const common = require('../common.js');
66
const fs = require('fs');
77
const vm = require('vm');
8-
const fixtures = require('../../test/common/fixtures.js');
9-
const scriptPath = fixtures.path('snapshot', 'typescript.js');
8+
const path = require('path');
109

1110
const bench = common.createBenchmark(main, {
1211
type: ['with-dynamic-import-callback', 'without-dynamic-import-callback'],
13-
n: [100],
12+
filename: ['test/fixtures/snapshot/typescript.js', 'test/fixtures/syntax/good_syntax.js'],
13+
n: [1000],
1414
});
1515

16-
const scriptSource = fs.readFileSync(scriptPath, 'utf8');
17-
18-
function main({ n, type }) {
16+
function main({ n, type, filename }) {
17+
const scriptPath = path.resolve(__dirname, '..', '..', filename);
18+
const scriptSource = fs.readFileSync(scriptPath, 'utf8');
1919
let script;
2020
bench.start();
2121
const options = {};

common.gypi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
# Reset this number to 0 on major V8 upgrades.
3838
# Increment by one for each non-official patch applied to deps/v8.
39-
'v8_embedder_string': '-node.13',
39+
'v8_embedder_string': '-node.14',
4040

4141
##### V8 defaults for Node.js #####
4242

deps/ncrypto/ncrypto.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1194,7 +1194,7 @@ DataPointer DHPointer::computeSecret(const BignumPointer& peer) const {
11941194

11951195
// The size of the computed key can be smaller than the size of the DH key.
11961196
// We want to make sure that the key is correctly padded.
1197-
if (size < dp.size()) {
1197+
if (static_cast<size_t>(size) < dp.size()) {
11981198
const size_t padding = dp.size() - size;
11991199
uint8_t* data = static_cast<uint8_t*>(dp.get());
12001200
memmove(data + padding, data, size);

deps/nghttp2/lib/Makefile.in

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,8 @@ LIBNGTCP2_CRYPTO_BORINGSSL_CFLAGS = @LIBNGTCP2_CRYPTO_BORINGSSL_CFLAGS@
361361
LIBNGTCP2_CRYPTO_BORINGSSL_LIBS = @LIBNGTCP2_CRYPTO_BORINGSSL_LIBS@
362362
LIBNGTCP2_CRYPTO_QUICTLS_CFLAGS = @LIBNGTCP2_CRYPTO_QUICTLS_CFLAGS@
363363
LIBNGTCP2_CRYPTO_QUICTLS_LIBS = @LIBNGTCP2_CRYPTO_QUICTLS_LIBS@
364+
LIBNGTCP2_CRYPTO_WOLFSSL_CFLAGS = @LIBNGTCP2_CRYPTO_WOLFSSL_CFLAGS@
365+
LIBNGTCP2_CRYPTO_WOLFSSL_LIBS = @LIBNGTCP2_CRYPTO_WOLFSSL_LIBS@
364366
LIBNGTCP2_LIBS = @LIBNGTCP2_LIBS@
365367
LIBOBJS = @LIBOBJS@
366368
LIBS = @LIBS@
@@ -414,6 +416,8 @@ TESTLDADD = @TESTLDADD@
414416
VERSION = @VERSION@
415417
WARNCFLAGS = @WARNCFLAGS@
416418
WARNCXXFLAGS = @WARNCXXFLAGS@
419+
WOLFSSL_CFLAGS = @WOLFSSL_CFLAGS@
420+
WOLFSSL_LIBS = @WOLFSSL_LIBS@
417421
ZLIB_CFLAGS = @ZLIB_CFLAGS@
418422
ZLIB_LIBS = @ZLIB_LIBS@
419423
abs_builddir = @abs_builddir@

deps/nghttp2/lib/includes/Makefile.in

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,8 @@ LIBNGTCP2_CRYPTO_BORINGSSL_CFLAGS = @LIBNGTCP2_CRYPTO_BORINGSSL_CFLAGS@
266266
LIBNGTCP2_CRYPTO_BORINGSSL_LIBS = @LIBNGTCP2_CRYPTO_BORINGSSL_LIBS@
267267
LIBNGTCP2_CRYPTO_QUICTLS_CFLAGS = @LIBNGTCP2_CRYPTO_QUICTLS_CFLAGS@
268268
LIBNGTCP2_CRYPTO_QUICTLS_LIBS = @LIBNGTCP2_CRYPTO_QUICTLS_LIBS@
269+
LIBNGTCP2_CRYPTO_WOLFSSL_CFLAGS = @LIBNGTCP2_CRYPTO_WOLFSSL_CFLAGS@
270+
LIBNGTCP2_CRYPTO_WOLFSSL_LIBS = @LIBNGTCP2_CRYPTO_WOLFSSL_LIBS@
269271
LIBNGTCP2_LIBS = @LIBNGTCP2_LIBS@
270272
LIBOBJS = @LIBOBJS@
271273
LIBS = @LIBS@
@@ -319,6 +321,8 @@ TESTLDADD = @TESTLDADD@
319321
VERSION = @VERSION@
320322
WARNCFLAGS = @WARNCFLAGS@
321323
WARNCXXFLAGS = @WARNCXXFLAGS@
324+
WOLFSSL_CFLAGS = @WOLFSSL_CFLAGS@
325+
WOLFSSL_LIBS = @WOLFSSL_LIBS@
322326
ZLIB_CFLAGS = @ZLIB_CFLAGS@
323327
ZLIB_LIBS = @ZLIB_LIBS@
324328
abs_builddir = @abs_builddir@

deps/nghttp2/lib/includes/nghttp2/nghttp2.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,10 @@ extern "C" {
7272
# endif /* !BUILDING_NGHTTP2 */
7373
#endif /* !defined(WIN32) */
7474

75+
#ifdef BUILDING_NGHTTP2
76+
# undef NGHTTP2_NO_SSIZE_T
77+
#endif /* BUILDING_NGHTTP2 */
78+
7579
/**
7680
* @typedef
7781
*

deps/nghttp2/lib/includes/nghttp2/nghttp2ver.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@
2929
* @macro
3030
* Version number of the nghttp2 library release
3131
*/
32-
#define NGHTTP2_VERSION "1.62.1"
32+
#define NGHTTP2_VERSION "1.63.0"
3333

3434
/**
3535
* @macro
3636
* Numerical representation of the version number of the nghttp2 library
3737
* release. This is a 24 bit number with 8 bits for major number, 8 bits
3838
* for minor and 8 bits for patch. Version 1.2.3 becomes 0x010203.
3939
*/
40-
#define NGHTTP2_VERSION_NUM 0x013e01
40+
#define NGHTTP2_VERSION_NUM 0x013f00
4141

4242
#endif /* NGHTTP2VER_H */

0 commit comments

Comments
 (0)