Sebastian Silbermann
df70a8d72c
node: add documented highWaterMark option
2017-11-15 17:59:59 +01:00
Nathan Shively-Sanders
15033df87a
Merge pull request #21256 from jez9999/patch-4
...
Add various effective UID and groups operations
2017-11-14 09:25:34 -08:00
Kevin Greene
c4d7629e1b
Merge remote-tracking branch 'upstream/master' into node-client
2017-11-13 16:06:34 -08:00
Oliver Joseph Ash
a8e88654be
Node: path.format input properties are optional ( #21003 )
...
* Node: `path.format` input properties are optional
If `base` does not exist, `name` and `ext` will be used to compute it.
http://devdocs.io/node/path#path_path_format_pathobject
* Node: `FormatInputPathObject`: all properties are optional
* Node: add myself as author
* Avoid usage of `Partial`
2017-11-10 07:37:12 -08:00
Kelvin Jin
f5c7db2f30
[node] bump inspector types for V8 6.1 ( #21012 )
2017-11-07 09:23:37 -08:00
Andy
9413f9cb41
node types don't really require TypeScript@2.2 ( #21283 )
2017-11-06 11:28:30 -08:00
Teppei Sato
a68863ebbd
node: improve util.promisify ( #21253 )
2017-11-06 07:03:48 -08:00
Andrew Stucki
ce7836d4ac
Add windowsVerbatimArguments for node child_process ( #20694 )
2017-11-06 07:00:45 -08:00
Jeremy Morton
28f78b8c2a
Use unions instead of overloads
2017-11-05 18:00:00 +00:00
Jeremy Morton
ffbf3b101a
Fix array type notation
2017-11-05 17:07:25 +00:00
Jeremy Morton
e0da5d33e6
Add various effective UID and groups operations
2017-11-05 15:29:38 +00:00
Kevin Greene
d17893c89b
Add specific properties to iIncomingHttpHeaders
2017-10-27 12:30:59 -07:00
Kevin Greene
293dc4c62a
Merge branch 'master' into node-client
2017-10-27 10:28:29 -07:00
Kevin Greene
6d2a1ad814
[node] Fix linting errors in node v8
2017-10-27 10:09:18 -07:00
Kevin Greene
d1fe542d52
Account for 'set-cookie' header in Node v8 types
2017-10-27 10:05:05 -07:00
Kevin Greene
df9c373de2
Make HttpHeader types more specific
2017-10-26 22:30:34 -07:00
Kevin Greene
06a8ff4a13
Add tests for RequestOptions and ClientRequestArgs
2017-10-24 11:14:44 -07:00
Kevin Greene
3a86a2b2c5
[node] Fix linting errors
2017-10-24 09:02:06 -07:00
Andy
165e2bf7b0
Fix no-redundant-jsdoc ignores -- include no-redundant-jsdoc-2 ( #20954 )
2017-10-24 08:53:43 -07:00
Kevin Greene
63e6236af8
Fix to just make ClientRequestArgs an alias of RequestOptions
2017-10-23 15:32:52 -07:00
Jinwoo Lee
b15672e837
Node http2: Fix types of statCheck() and getTrailers() ( #20729 )
...
The `headers` parameter of statCheck() and the `trailers` parameter of
getTrailers() must be OutgoingHttpHeaders, not IncomingHttpHeaders, because they
are to be updated by statCheck()/getTrailers() before being sent to the opposite
endpoint.
2017-10-23 14:58:48 -07:00
Flarna
eba2b89b3c
[node] Some fixes for net and https ( #20662 )
...
Sync Lookup function type in net, tls and dgram.
2017-10-23 13:17:14 -07:00
Andy
a2c81182cf
node: Fix lint ( #20835 )
2017-10-23 07:34:15 -07:00
Jinwoo Lee
e86a56d0cc
Node http2: statCheck() may also return false. ( #20692 )
...
* Node http2: statCheck() may also return `false`.
https://nodejs.org/dist/latest-v8.x/docs/api/http2.html#http2_http2stream_respondwithfile_path_headers_options
says:
The options.statCheck function may also be used to cancel the send operation by
returning false
Related node code:
- https://github.com/nodejs/node/blob/master/lib/internal/http2/core.js#L1621
- https://github.com/nodejs/node/blob/master/lib/internal/http2/core.js#L1671
* add tests for returning false from statCheck()
* change `void|false` to `void|boolean`
* fix lint error
2017-10-19 10:22:12 -07:00
Roberto Desideri
2fd1709e59
Remove myself from the authors ( #20697 )
2017-10-18 13:44:29 -07:00
Kevin Greene
bf50c9a7a7
[node] Update older node types (7,6,4) for more consistency with 8
...
* Specifically add interfaces for reqeust headers
* Make the naming of client request options consistent (ClientRequestArgs)
2017-10-18 12:49:44 -07:00
Oliver Joseph Ash
0960f82a0b
Correct type of Node url.query ( #20650 )
...
* Correct type of Node url.query
https://nodejs.org/api/url.html#url_urlobject_query
* Add null
* Node url.query: query value as array of strings
* Node: narrow query type to fix tests
2017-10-18 08:56:47 -07:00
Jinwoo Lee
63605aa515
Node: respondWithFile()'s options can have onError. ( #20659 )
...
* respondWithFile()'s `options` can have onError.
See the Node document:
https://nodejs.org/dist/latest-v8.x/docs/api/http2.html#http2_http2stream_respondwithfile_path_headers_options
And also the code:
https://github.com/nodejs/node/blob/master/lib/internal/http2/core.js#L1698
* update test
2017-10-18 08:54:49 -07:00
Oliver Joseph Ash
2be8cb24b6
Correct return type of Node querystring.parse ( #20651 )
...
* Correct return type of Node querystring.parse
https://nodejs.org/api/querystring.html#querystring_querystring_parse_str_sep_eq_options
* request-promise-native: require TS 2.2 to fix error from Node typings
* Node querystring.parse: return type: query value as array of strings
* Fix tests for request, request-promise, request-promise-native
2017-10-18 08:51:36 -07:00
Jeff Kenney
43a2660602
Fix node url and http/https request types ( #18766 )
...
* [node] url.format can take a string
* [node] http.request / https.request can take a string
* [node] reorder Url properties to match ordering in docs
* [node] DRY out the Url and UrlObject types
* [node] backport split Url / UrlObject types to v0 and v4
* remove 'any' union for UrlObject.query type
2017-10-17 12:00:46 -07:00
Alessandro Vergani
d518490227
Add O_DSYNC flag ( #20638 )
2017-10-17 09:17:47 -07:00
Alessandro Vergani
52f686b9db
Add lookup to dgram SocketOptions ( #20636 )
2017-10-17 09:16:06 -07:00
Jinwoo Lee
fb93c75e47
Fix type of createPushResponse() in node http2. ( #20510 )
...
* Fix type of createPushResponse() in node http2.
From https://github.com/nodejs/node/blob/master/lib/internal/http2/compat.js#L628 :
`callback` is required to be a function. And its second argument is an `Http2ServerResponse`.
* `err` is nullable.
* delete redundant tests that have partial arguments
2017-10-17 08:35:55 -07:00
Alessandro Vergani
0905b3d2f9
Add copyFile to node file system ( #20185 )
2017-10-17 08:00:05 -07:00
Piotr Roszatycki
8ef0c39ccf
node: process.stdin is a stream.Readable and process.stdout is a stream.Writable ( #20493 )
...
* Readable.wrap returns this
* Add missing properties to interface ReadableStream and WritableStream; change interfaces in fs, dgram and net into classes
* Move all additional properties from ReadableStream interface to ReadStream interface (and Write...)
* hexo-fs should re-export classes from 'fs'
* process.stdin._destroy is a function
2017-10-17 07:44:21 -07:00
Jarrad Whitaker
d7f5d8fa90
@types/node: Asynchooks promiseResolve and AsyncResource ( #20540 )
...
* add promiseResolve hook
* add AsyncResource
* AsyncResource jsdoc fixes
* test remaining AsyncResource methods
2017-10-16 13:42:29 -07:00
Piotr Roszatycki
173d1d4e9e
node: dgram buffer size options and methods for Node 8.7.0 ( #20535 )
...
* dgram buffer size options and methods
* Verify type returned by dgram.*BufferSize methods
2017-10-16 13:40:56 -07:00
Jinwoo Lee
99064aa7c7
Add types for Writable#_writev() & Duplex#_writev(). ( #20529 )
...
* Add types for Writable#_writev() & Duplex#_writev().
As written in the doc:
https://nodejs.org/dist/latest-v8.x/docs/api/stream.html#stream_writable_writev_chunks_callback
* change `callback` from `Function` to `(err?: Error) => void`
* make _writev() optional.
Per the node document, it may or may not be implemented by implementations.
2017-10-16 13:39:23 -07:00
kazuyamamoto
ea8b7af8c6
[node] Add tls.getCiphers() and tls.DEFAULT_ECDH_CURVE ( #20482 )
...
https://nodejs.org/api/tls.html#tls_tls_getciphers
https://nodejs.org/api/tls.html#tls_tls_default_ecdh_curve
2017-10-16 13:16:08 -07:00
Robert K. Bell
547c7fd610
[types/node] Add final option to Stream WritableOptions ( #20477 )
...
* fix: add `final` option for WritableStreams
* fix: use more accurate type for `final()`
* typo: whitespace
* test: add `final` option
as documented here:
https://nodejs.org/docs/latest/api/stream.html#stream_constructor_new_stream_writable_options
* fix: cb is mandatory, error is optional
2017-10-16 13:15:22 -07:00
Flarna
2466ddbcff
[node] Add Buffer.poolSize() and correct Buffer.byteLength() ( #20419 )
...
* [node] Add Buffer.poolSize
* [node] Allow more types for Buffer.byteLength()
* fix lint issue
2017-10-16 11:18:42 -07:00
Alessandro Vergani
0e7cad3271
Add setMulticastInterface to node dgram ( #20186 )
2017-10-16 10:39:48 -07:00
Daniel Imms
f5dc2b6e33
Remove self from maintainers ( #20126 )
2017-10-16 10:15:45 -07:00
Sami Kukkonen
b0447ecb51
Add _destroy to for node Readable stream ( #20068 )
...
From the docs:
https://nodejs.org/api/stream.html#stream_readable_destroy_err_callback
As specified in
https://nodejs.org/api/stream.html#stream_readable_destroy_error
implementors are recommended to implement this method instead of
`destroy()` and the original method should be available for calling via
`super`.
This change matches the signatures of other Stream subclasses by
annotating `callback` as `Function` instead of `(err: Error) => void`.
2017-10-16 10:13:28 -07:00
Martijn Schrage
55a284355b
Add missing method readline.emitKeypressEvents to package node ( #19733 )
2017-10-16 08:47:24 -07:00
Rogier Schouten
ca3ec2cfe8
fix Node net.createConnection() and Socket#connect() signatures. ( #19456 )
...
* fix net.createConnection() and Socket#connect() signatures.
* fix lint errors.
* Fix review comments.
2017-10-16 08:26:29 -07:00
Roberto Desideri
932a34cd9b
Remove myself from the authors ( #19927 )
2017-10-10 07:29:54 -07:00
Andy
947a8fb761
Enable strictFunctionTypes ( #20373 )
2017-10-06 14:03:03 -07:00
Alvis Tang
1aefe0126e
node: add the definition for util.callbackify ( #19114 )
...
* fix(node): add the definition for util.callbackify
* test(node): add an unit test for util.callbackify
2017-10-06 11:26:17 -07:00
Thomas Bouldin
234e726219
Allow option to be a string in Node 6 request methods ( #20272 )
...
* Add string option to request methods.
Per [Node docs](https://nodejs.org/docs/latest-v6.x/api/http.html#http_http_request_options_callback ) the `get` and `request` methods should allow the `options` param to be a string. This is true for both the 'https' and 'http' modules.
* Add self to "definitions by" per README recommendations
2017-10-06 07:21:37 -07:00