Uh oh!
There was an error while loading. Please reload this page.
doc updates from joyent/node - #2378
Conversation
misterdjules
commented
Aug 14, 2015
@jasnell Is there a plan to land these in v0.12 and/or v0.10.x when it applies? |
jasnell
commented
Aug 14, 2015
Yes. I'll cherry pick as appropriate. Specifically, I'm following the new process of landing in master and cherry picking outwards to the various branches. Once this lands in master, I'll cherry pick out to 3.x, then to v0.12, and, where appropriate, to v0.10 |
jasnell
commented
Aug 14, 2015
That said, there are few more commits that I'm going to append in here so it's not quite ready to land yet |
jasnell
commented
Aug 14, 2015
Ok, this one should be ready to go! Can I get a review... (note, there are more doc updates coming from the joyent/node PR's. I'm still going through them and may tack them on to the end here before it lands) |
bnoordhuis
commented
Aug 14, 2015
LGTM but can you be consistent in how you write the commit log bodies? Capitalization and punctuation is a little bit of everything now. The convention is to have the status line in lower case and capitalize and punctuate in the body. |
jasnell
commented
Aug 14, 2015
Yes I'll try to keep that more consistent moving forward |
jasnell
commented
Aug 14, 2015
Ok, that's all of the doc updates in this round. Down to only a handful of doc updates remaining in joyent/node |
There was a problem hiding this comment.
This change is incomplete. The corresponding [module section]: modules.html has to be removed as well, as it is obsolete now.
jasnell
commented
Aug 22, 2015
@thefourtheye ... ok, addressed those two issues and rebased on master. |
jasnell
commented
Aug 26, 2015
@thefourtheye ... ping ;-) |
thefourtheye
commented
Aug 26, 2015
Ah, sorry for the delay. I checked again now. LGTM 👍 |
jasnell
commented
Aug 26, 2015
Ok, need to rebase again then will land. |
Per: jorrit/node@54a7f79Fixes: nodejs/node-v0.x-archive#6149 Originally submitted by @jorrit
per: nodejs/node-v0.x-archive#14352 originally submitted by @AlexKVal
per: nodejs/node-v0.x-archive#8778 originally submitted by @reggi
per: nodejs/node-v0.x-archive#8708 A modified version of the original PR submitted by @builtbylane.
per: nodejs/node-v0.x-archive#8509 originally submitted by @thauburger Adding an additional example to path.extname documentation to demonstrate the case where the first character of the last path component is '.'. This case is interesting, as something like path.extname('.txt') returns an empty string. In this case, .txt can be used as a valid file name (while arguably maintaining an extension). I agree with Node's behavior in this case, but I think the added example provides additional clarity for the developer.
per: nodejs/node-v0.x-archive#8430 originally submitted by @mscdex
per: nodejs/node-v0.x-archive#8209 originally submitted by @jeromew
per: nodejs/node-v0.x-archive#7944 originally submitted by @oconnore Minor update to the description in `fs.exists()`
per: nodejs/node-v0.x-archive#7930 originally submitted by @pbrewczynski
per: nodejs/node-v0.x-archive#7715 originally submitted by @tonylukasavage
per: nodejs/node-v0.x-archive#7112 originally submitted by @Peekmo
per: nodejs/node-v0.x-archive#7431 Originally submitted by @linclark
per: nodejs/node-v0.x-archive#25356 originally submitted by @dcousens
per: nodejs/node-v0.x-archive#25459 originally submitted by @sonnyp
per: nodejs/node-v0.x-archive#25826 originally submitted by: @ClimbsRocks
Per: nodejs/node-v0.x-archive#8878 Originally submitted by @jacksonhoose Reviewed By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> PR-URL: #2378
Per feedback from @thefourtheye: (a) improve word on the description of the `close` event in stream.markdown and (b) remove `[module section]: modules.html` from globals.markdown Reviewed By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> PR-URL: #2378
Notable changes: * build: Add a --link-module option to configure that can be used to bundle additional JavaScript modules into a built binary (Bradley Meck) nodejs#2497 * docs: Merge outstanding doc updates from joyent/node (James M Snell) nodejs#2378 * http_parser: Significant performance improvement by having http.Server consume all initial data from its net.Socket and parsing directly without having to enter JavaScript. Any 'data' listeners on the net.Socket will result in the data being "unconsumed" into JavaScript, thereby undoing any performance gains. (Fedor Indutny) nodejs#2355 * libuv: Upgrade to 1.7.3 (from 1.6.1), see https://github.com/libuv/libuv/blob/v1.x/ChangeLog for details (Saúl Ibarra Corretgé) nodejs#2310 * V8: Upgrade to 4.4.63.30 (from 4.4.63.26) (Michaël Zasso) nodejs#2482
Notable changes: * build: Add a --link-module option to configure that can be used to bundle additional JavaScript modules into a built binary (Bradley Meck) nodejs#2497 * docs: Merge outstanding doc updates from joyent/node (James M Snell) nodejs#2378 * http_parser: Significant performance improvement by having http.Server consume all initial data from its net.Socket and parsing directly without having to enter JavaScript. Any 'data' listeners on the net.Socket will result in the data being "unconsumed" into JavaScript, thereby undoing any performance gains. (Fedor Indutny) nodejs#2355 * libuv: Upgrade to 1.7.3 (from 1.6.1), see https://github.com/libuv/libuv/blob/v1.x/ChangeLog for details (Saúl Ibarra Corretgé) nodejs#2310 * V8: Upgrade to 4.4.63.30 (from 4.4.63.26) (Michaël Zasso) nodejs#2482 cherry-picked from v3.x @ 1a6e52d
Notable changes: * build: Add a --link-module option to configure that can be used to bundle additional JavaScript modules into a built binary (Bradley Meck) #2497 * docs: Merge outstanding doc updates from joyent/node (James M Snell) #2378 * http_parser: Significant performance improvement by having http.Server consume all initial data from its net.Socket and parsing directly without having to enter JavaScript. Any 'data' listeners on the net.Socket will result in the data being "unconsumed" into JavaScript, thereby undoing any performance gains. (Fedor Indutny) #2355 * libuv: Upgrade to 1.7.3 (from 1.6.1), see https://github.com/libuv/libuv/blob/v1.x/ChangeLog for details (Saúl Ibarra Corretgé) #2310 * V8: Upgrade to 4.4.63.30 (from 4.4.63.26) (Michaël Zasso) #2482 cherry-picked from v3.x @ 1a6e52d PR-URL: #2653 Reviewed-By: cjihrig - Colin Ihrig <cjihrig@gmail.com>
Notable changes: * build: Add a --link-module option to configure that can be used to bundle additional JavaScript modules into a built binary (Bradley Meck) #2497 * docs: Merge outstanding doc updates from joyent/node (James M Snell) #2378 * http_parser: Significant performance improvement by having http.Server consume all initial data from its net.Socket and parsing directly without having to enter JavaScript. Any 'data' listeners on the net.Socket will result in the data being "unconsumed" into JavaScript, thereby undoing any performance gains. (Fedor Indutny) #2355 * libuv: Upgrade to 1.7.3 (from 1.6.1), see https://github.com/libuv/libuv/blob/v1.x/ChangeLog for details (Saúl Ibarra Corretgé) #2310 * V8: Upgrade to 4.4.63.30 (from 4.4.63.26) (Michaël Zasso) #2482 cherry-picked from v3.x @ 1a6e52d PR-URL: #2653 Reviewed-By: cjihrig - Colin Ihrig <cjihrig@gmail.com>
These are various documentation PRs picked from joyent/node.
/cc @nodejs/documentation @nodejs/tsc