Skip to content

Commit

Permalink
Merge branch 'main' into worker_threads
Browse files Browse the repository at this point in the history
  • Loading branch information
bartlomieju committed Oct 25, 2021
2 parents f00511f + 881bd83 commit 6deed69
Show file tree
Hide file tree
Showing 8 changed files with 663 additions and 9 deletions.
20 changes: 20 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
### 0.113.0 / 2021.10.25

- feat(collections/running_reduce): support `currentIndex` (#1431)
- feat(http/file_server): add color to log message (#1434)
- feat(http/file_server): add breadcrumbs navigation (#1433)
- feat(node): allow require with 'node:' prefix (#1438)
- feat(node/url): add `url.urlToHttpOptions(url)` (#1426)
- feat(testing): add assertIsError (#1376)
- fix(async): fix async/tee concurent .next calls error (#1425)
- fix(crypto): support length option in crypto.subtle.digest (#1386)
- fix(http/file_server): fix encoded url in dir html (#1442)
- fix(http/file_server): fix leak file resource (#1443)
- fix(node): match Node's os.arch values (#1440)
- fix(node): show warning when using import/export in CJS module (#1452)
- fix(node/events): make on and emit methods callable by non-EventEmitter
objects (#1454)
- fix(node/util): improve util.format (#1181)
- fix(node/_tools): fix node test setup script (#1422)
- chore(node): update Node version from 16.11.1 to 16.12.0 (#1441)

### 0.112.0 / 2021.10.18

- feat(collections): add joinToString (#1223)
Expand Down
1 change: 1 addition & 0 deletions _util/download_file_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,5 @@ Deno.test("[node/_tools/setup] downloadFile", async () => {
} finally {
await Deno.remove(tmpdir, { recursive: true });
}
await delay(50);
});
8 changes: 8 additions & 0 deletions node/_module/cjs/test_cjs_import.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import * as path from "../../../path/mod.ts";
import Module from "../../module.ts";

const modulePath = path.join(
path.dirname(path.fromFileUrl(import.meta.url)),
"./cjs_import",
);
Module._load(modulePath, null, true);
66 changes: 66 additions & 0 deletions node/_tools/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,71 @@
"test-dns.js"
],
"parallel": [
"test-event-emitter-add-listeners.js",
"test-event-emitter-emit-context.js",
"test-event-emitter-get-max-listeners.js",
"test-event-emitter-invalid-listener.js",
"test-event-emitter-listener-count.js",
"test-event-emitter-listeners-side-effects.js",
"test-event-emitter-listeners.js",
"test-event-emitter-max-listeners-warning-for-null.js",
"test-event-emitter-max-listeners-warning-for-symbol.js",
"test-event-emitter-max-listeners-warning.js",
"test-event-emitter-max-listeners.js",
"test-event-emitter-method-names.js",
"test-event-emitter-once.js",
"test-event-emitter-remove-all-listeners.js",
"test-event-emitter-remove-listeners.js",
"test-event-emitter-set-max-listeners-side-effects.js",
"test-event-emitter-special-event-names.js",
"test-event-emitter-subclass.js",
"test-net-better-error-messages-listen.js",
"test-net-better-error-messages-port-hostname.js",
"test-net-bind-twice.js",
"test-net-buffersize.js",
"test-net-bytes-written-large.js",
"test-net-can-reset-timeout.js",
"test-net-connect-after-destroy.js",
"test-net-connect-call-socket-connect.js",
"test-net-connect-destroy.js",
"test-net-connect-immediate-destroy.js",
"test-net-connect-immediate-finish.js",
"test-net-end-destroyed.js",
"test-net-isipv4.js",
"test-net-listen-after-destroying-stdin.js",
"test-net-listen-close-server-callback-is-not-function.js",
"test-net-listen-close-server.js",
"test-net-listen-error.js",
"test-net-listening.js",
"test-net-local-address-port.js",
"test-net-localerror.js",
"test-net-options-lookup.js",
"test-net-pause-resume-connecting.js",
"test-net-server-close.js",
"test-net-server-listen-options-signal.js",
"test-net-server-listen-options.js",
"test-net-server-listen-remove-callback.js",
"test-net-server-max-connections.js",
"test-net-server-options.js",
"test-net-server-pause-on-connect.js",
"test-net-socket-connect-without-cb.js",
"test-net-socket-connecting.js",
"test-net-socket-destroy-send.js",
"test-net-socket-destroy-twice.js",
"test-net-socket-end-before-connect.js",
"test-net-socket-no-halfopen-enforcer.js",
"test-net-socket-ready-without-cb.js",
"test-net-socket-write-error.js",
"test-net-sync-cork.js",
"test-net-timeout-no-handle.js",
"test-net-writable.js",
"test-net-write-connect-write.js",
"test-net-write-fully-async-buffer.js",
"test-net-write-fully-async-hex-string.js",
"test-url-fileurltopath.js",
"test-util-inherits.js",
"test-assert-async.js",
"test-assert-fail.js",
"test-assert.js",
"test-dns-lookup.js",
"test-dns.js",
Expand All @@ -34,6 +98,7 @@
"test-net-server-call-listen-multiple-times.js",
"test-net-server-try-ports.js",
"test-net-write-arguments.js",
"test-querystring.js",
"test-url-format-whatwg.js",
"test-url-urltooptions.js"
],
Expand Down Expand Up @@ -147,6 +212,7 @@
"test-net-write-connect-write.js",
"test-net-write-fully-async-buffer.js",
"test-net-write-fully-async-hex-string.js",
"test-querystring.js",
"test-url-fileurltopath.js",
"test-url-format-whatwg.js",
"test-url-pathtofileurl.js",
Expand Down
Loading

0 comments on commit 6deed69

Please sign in to comment.