report: add support for Workers by addaleax · Pull Request #31386 · nodejs/node

@addaleax added worker

Issues and PRs related to Worker support.

report

Issues and PRs related to process.report.

labels

Jan 16, 2020

@nodejs-github-bot nodejs-github-bot added c++

Issues and PRs that require attention from people who are familiar with C++.

lib / src

Issues and PRs related to general changes in the lib or src directory.

labels

Jan 16, 2020

@addaleax addaleax added the wip

Issues and PRs that are still a work in progress.

label

Jan 16, 2020

@addaleax addaleax removed the wip

Issues and PRs that are still a work in progress.

label

Jan 16, 2020

richardlau

gireeshpunathil

gireeshpunathil

codebytere pushed a commit that referenced this pull request

Feb 17, 2020
This test was broken by de2c68c.

Refs: #31386

PR-URL: #31494
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: David Carlier <devnexen@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>

codebytere added a commit that referenced this pull request

Feb 17, 2020
Notable changes:

* async_hooks:
  * add executionAsyncResource (Matteo Collina) #30959
* doc:
  * add ronag to collaborators (Robert Nagy) #31498
* crypto:
  * add crypto.diffieHellman (Tobias Nießen) #31178
  * add DH support to generateKeyPair (Tobias Nießen) #31178
  * simplify DH groups (Tobias Nießen) #31178
  * add key type 'dh' (Tobias Nießen) #31178
* report:
  * add support for Workers (Anna Henningsen) #31386
* src:
  * move MemoryInfo() for worker code to .cc files (Anna Henningsen) #31386
  * add interrupts to Environments/Workers (Anna Henningsen) #31386
  * remove AsyncRequest (Anna Henningsen) #31386
  * add a threadsafe variant of SetImmediate() (Anna Henningsen) #31386
  * exclude C++ SetImmediate() from count (Anna Henningsen) #31386
  * better encapsulate native immediate list (Anna Henningsen) #31386
* test:
  * skip keygen tests on arm systems (Tobias Nießen) #31178

codebytere added a commit that referenced this pull request

Feb 18, 2020
Notable changes:

* async_hooks:
  * add executionAsyncResource (Matteo Collina) #30959
* doc:
  * add ronag to collaborators (Robert Nagy) #31498
* crypto:
  * add crypto.diffieHellman (Tobias Nießen) #31178
  * add DH support to generateKeyPair (Tobias Nießen) #31178
  * simplify DH groups (Tobias Nießen) #31178
  * add key type 'dh' (Tobias Nießen) #31178
* report:
  * add support for Workers (Anna Henningsen) #31386
* test:
  * skip keygen tests on arm systems (Tobias Nießen) #31178

codebytere added a commit that referenced this pull request

Feb 18, 2020
Notable changes:

* async_hooks:
  * add executionAsyncResource (Matteo Collina) #30959
* doc:
  * add ronag to collaborators (Robert Nagy) #31498
* crypto:
  * add crypto.diffieHellman (Tobias Nießen) #31178
  * add DH support to generateKeyPair (Tobias Nießen) #31178
  * simplify DH groups (Tobias Nießen) #31178
  * add key type 'dh' (Tobias Nießen) #31178
* report:
  * add support for Workers (Anna Henningsen) #31386
* test:
  * skip keygen tests on arm systems (Tobias Nießen) #31178

PR-URL: #31837

codebytere added a commit that referenced this pull request

Feb 18, 2020
Notable changes:

* async_hooks:
  * add executionAsyncResource (Matteo Collina) #30959
* doc:
  * add ronag to collaborators (Robert Nagy) #31498
* crypto:
  * add crypto.diffieHellman (Tobias Nießen) #31178
  * add DH support to generateKeyPair (Tobias Nießen) #31178
  * simplify DH groups (Tobias Nießen) #31178
  * add key type 'dh' (Tobias Nießen) #31178
* report:
  * add support for Workers (Anna Henningsen) #31386
* test:
  * skip keygen tests on arm systems (Tobias Nießen) #31178

PR-URL: #31837

codebytere added a commit that referenced this pull request

Feb 18, 2020
Notable changes:

* async_hooks
  * add executionAsyncResource (Matteo Collina) #30959
* crypto
  * add crypto.diffieHellman (Tobias Nießen) #31178
  * add DH support to generateKeyPair (Tobias Nießen) #31178
  * simplify DH groups (Tobias Nießen) #31178
  * add key type 'dh' (Tobias Nießen) #31178
* test
  * skip keygen tests on arm systems (Tobias Nießen) #31178
* perf_hooks
  * add property flags to GCPerformanceEntry (Kirill Fomichev) #29547
* process
  * report ArrayBuffer memory in `memoryUsage()` (Anna Henningsen) #31550
* readline
  * make tab size configurable (Ruben Bridgewater) #31318
* report
  * add support for Workers (Anna Henningsen) #31386
* worker
  * add ability to take heap snapshot from parent thread (Anna Henningsen) #31569
* added new collaborators
  * add ronag to collaborators (Robert Nagy) #31498

PR-URL: #31837

codebytere added a commit that referenced this pull request

Feb 18, 2020
Notable changes:

* async_hooks
  * add executionAsyncResource (Matteo Collina) #30959
* crypto
  * add crypto.diffieHellman (Tobias Nießen) #31178
  * add DH support to generateKeyPair (Tobias Nießen) #31178
  * simplify DH groups (Tobias Nießen) #31178
  * add key type 'dh' (Tobias Nießen) #31178
* test
  * skip keygen tests on arm systems (Tobias Nießen) #31178
* perf_hooks
  * add property flags to GCPerformanceEntry (Kirill Fomichev) #29547
* process
  * report ArrayBuffer memory in `memoryUsage()` (Anna Henningsen) #31550
* readline
  * make tab size configurable (Ruben Bridgewater) #31318
* report
  * add support for Workers (Anna Henningsen) #31386
* worker
  * add ability to take heap snapshot from parent thread (Anna Henningsen) #31569
* added new collaborators
  * add ronag to collaborators (Robert Nagy) #31498

PR-URL: #31837

codebytere pushed a commit that referenced this pull request

Mar 15, 2020
This test was broken by de2c68c.

Refs: #31386

PR-URL: #31494
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: David Carlier <devnexen@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>

codebytere pushed a commit that referenced this pull request

Mar 17, 2020
This test was broken by de2c68c.

Refs: #31386

PR-URL: #31494
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: David Carlier <devnexen@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>