Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

7.7.3 Release Proposal #11831

Merged
merged 32 commits into from
Mar 14, 2017
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
c5874d1
url: remove invalid file protocol check
mscdex Mar 5, 2017
5e7baa5
tools: add links to the stability index reference
michaelcox Mar 2, 2017
1e52ba3
test: limit lint rule disabling in message test
Trott Mar 6, 2017
1af0fa4
test: test buffer behavior when zeroFill undefined
Trott Mar 6, 2017
a98d963
test: increase coverage of console
DavidCai1111 Mar 2, 2017
3d55cf0
test: add more WHATWG URL origin tests
mscdex Mar 5, 2017
4477e15
test: add regex in test_cyclic_link_protection
clarenced Feb 19, 2017
c01c7a4
test: add script to create 0-dns-cert.pem
shigeki Feb 27, 2017
aaf8536
test: add test for loading from global folders
richardlau Oct 20, 2016
1da2afc
src: drop the NODE_ISOLATE_SLOT macro
addaleax Mar 5, 2017
032becd
src: add missing #include <unicode/ustring.h>
srl295 Mar 8, 2017
52f0092
s390: enable march=z196
Mar 7, 2017
1dff218
net: allow missing callback for Socket.connect
vhain Mar 9, 2017
1034587
module: fix loading from global folders on Windows
richardlau Oct 25, 2016
9c3cf13
doc: argument types for https methods
ameliavoncat Mar 3, 2017
108449b
doc: add Franziska Hinkelmann to the CTC
rvagg Feb 22, 2017
517c3af
doc: fix process links to console.log/error
sam-github Mar 6, 2017
5bea8b4
doc: fix occurences of "the the"
JeroenMandersloot Mar 6, 2017
8a1b2b4
doc: reduce font size on smaller screens
gibfahn Mar 5, 2017
2fcefee
dgram: refactor dgram to module.exports
claudiorodriguez Mar 5, 2017
612bd68
doc: consistent case for primitive types
silverwind Feb 4, 2017
97d1f5f
doc: linkify type[] syntax, support lowercase for primitives
silverwind Feb 14, 2017
5a9e30f
tools: fix lint issue in doctool
silverwind Mar 2, 2017
757bf48
doc/tools: fix more type inconsistencies
silverwind Mar 5, 2017
734ddbe
test: fix flaky test-http-set-timeout-server
santigimeno Mar 10, 2017
a20aa0e
doc: http cleanup and missing argument types
ameliavoncat Mar 3, 2017
188cbc6
doc: package main can be directory with an index
bmeck Feb 27, 2017
6cc7b30
doc: improve child_process `maxBuffer` text
Trott Mar 10, 2017
b543fd4
doc: update to current V8 versions
fhinkel Mar 10, 2017
dd3e6ad
doc: add missing changelog heading for 7.7.2
evanlucas Mar 13, 2017
542a373
build: add node_use_openssl check to install.py
danbev Mar 9, 2017
9c68a69
2017-03-14, Version 7.7.3 (Current)
italoacasas Mar 14, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
tools: fix lint issue in doctool
PR-URL: #11658
Reviewed-By: Anna Henningsen <[email protected]>
Reviewed-By: Luigi Pinca <[email protected]>
Reviewed-By: James M Snell <[email protected]>
  • Loading branch information
silverwind authored and italoacasas committed Mar 13, 2017
commit 5a9e30f1e939b8047a362659ef32aa450bf5f4b3
3 changes: 2 additions & 1 deletion tools/doc/type-parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,8 @@ module.exports = {
typeLinks.push('<a href="' + typeUrl + '" class="type">&lt;' +
typeTextFull + '&gt;</a>');
} else {
typeLinks.push('<span class="type">&lt;' + typeTextFull + '&gt;</span>');
typeLinks.push('<span class="type">&lt;' + typeTextFull +
'&gt;</span>');
}
}
});
Expand Down