- [
ef4714c2b6
] - net: inline and simplify onSocketEnd ( Anna Henningsen) #18607 - [
1fadb2edb4
] - doc: fix/add link to Android info ( Vse Mozhet Byt) #19004 - [
39e032fe86
] - module: fix main lookup regression from #18728 ( Guy Bedford) #18788 - [
f3e3429296
] - module: support main w/o extension, pjson cache ( Guy Bedford) #18728 - [
50d1233935
] - http2: no stream destroy while its data is on the wire ( Anna Henningsen) #19002 - [
420d56c2ea
View sVimcss.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@-webkit-keyframes fadein { | |
from { | |
opacity: 0; | |
} | |
to { | |
opacity: 1; | |
} | |
} | |
#sVim-command { |
View sVimrc.vim
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let nextpagetextpatterns = ["[Nn]ext\\b.*", "[Mm]ore", "[Nn]ewer", ">", "→", "»", "≫", ">>"] | |
let prevpagetextpatterns = ["Prev(ious)\\b.*", "[Bb]ack", "[Oo]lder", "<", "‹", "←", "«", "≪", "<<"] | |
let hintcharacters = "zxcvbnmqwertyuiopasdfghjkl"; |
View audit-v8.10.1.md
View release-8.10.1.md
Release Notes for 8.10.1
Regenerate this script with:
tools/kraken -b v8.x -c Carbon -d 2018-04-03 -u DANGER 8.10.1
Your settings:
- Version:
8.10.1
- Previous version:
10.0.0
View notable-changes.md
- deps:
- crypto:
View main.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extern crate structopt; | |
#[macro_use] | |
extern crate structopt_derive; | |
use structopt::StructOpt; | |
#[derive(StructOpt, Debug)] | |
#[structopt()] | |
enum Cmds { | |
#[structopt(name = "add")] |
View v8.10.0-audit.md
- [
1ad7df6acc
] - http2: use aliased buffer for perf stats, add stats ( James M Snell) #18020 - [
ef317014e2
] - doc: compact eslint directives in common/README ( Vse Mozhet Byt) #17971 - [
b817a8a6b2
] - lib: enable dot-notation eslint rule ( Anatoli Papirovski) #18007 - [
bb9219bd19
] - src: update make for new code coverage locations ( Michael Dawson) #17987 - [
b593d946e4
] - doc: re-alphabetise sections in common/README.md ( Vse Mozhet Byt) #17971 - [[
3bcdb3b996
](https://github.com/nodejs/no
View v8.x-remaining.md
- [
d066db7014
] - (SEMVER-MINOR) cluster: support windowsHide option for workers ( Todd Wong) #17412 - [
f82439b6a0
] - (SEMVER-MINOR) http: add rawPacket in err ofclientError
event ( XadillaX) #17672 - [
c5c4a534d1
] - (SEMVER-MINOR) stream: rm {writeable/readable}State.length ( Calvin Metcalf) #12857 - [
4b0c8759d3
] - (SEMVER-MINOR) stream: add flow and buffer properties to streams ( Calvin Metcalf) #12855 - [
6d9b1e4c83
] - (SEMVER-MINOR) util: allow wildcards in NODE_DEBUG variable ( Tyler) [#17
View release-8.10.0.md
Release Notes for 8.10.0
Regenerate this script with:
tools/kraken -c Carbon -d 2018-03-06 -u DANGER -p https://github.com/nodejs/node/pull/18336 8.10.0
Your settings:
- Version:
8.10.0
- Previous version:
10.0.0
View Jenkinsfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
println "\n### BUILD PARAMETERS ###" | |
def pr = [] // Mutable parameter set to pass to jobs. I know this is crazy. | |
String printParams = '' // String of params to print | |
for (param in params) { | |
printParams += param.toString() + '\n' | |
if (param.key != 'NODE_VERSIONs') { | |
pr.push(string(name: param.key, value: param.value)) | |
} | |
} | |
println printParams |
NewerOlder