Skip to content

Commit 87535b1

Browse files
aduh95joesepi
authored andcommitted
doc: harmonize changes list ordering
Refs: nodejs/remark-preset-lint-node#139 PR-URL: nodejs#35454 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Ujjwal Sharma <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Khaidi Chu <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
1 parent 0c8e039 commit 87535b1

13 files changed

+102
-102
lines changed

doc/api/crypto.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -882,13 +882,13 @@ console.log(uncompressedKey === ecdh.getPublicKey('hex'));
882882
<!-- YAML
883883
added: v0.11.14
884884
changes:
885-
- version: v6.0.0
886-
pr-url: https://github.com/nodejs/node/pull/5522
887-
description: The default `inputEncoding` changed from `binary` to `utf8`.
888885
- version: v10.0.0
889886
pr-url: https://github.com/nodejs/node/pull/16849
890887
description: Changed error format to better support invalid public key
891888
error.
889+
- version: v6.0.0
890+
pr-url: https://github.com/nodejs/node/pull/5522
891+
description: The default `inputEncoding` changed from `binary` to `utf8`.
892892
-->
893893

894894
* `otherPublicKey` {string|ArrayBuffer|Buffer|TypedArray|DataView}

doc/api/dgram.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -411,6 +411,9 @@ changes:
411411
- v12.19.0
412412
pr-url: https://github.com/nodejs/node/pull/22413
413413
description: The `msg` parameter can now be any `TypedArray` or `DataView`.
414+
- version: v12.0.0
415+
pr-url: https://github.com/nodejs/node/pull/26871
416+
description: Added support for sending data on connected sockets.
414417
- version: v8.0.0
415418
pr-url: https://github.com/nodejs/node/pull/11985
416419
description: The `msg` parameter can be an `Uint8Array` now.
@@ -425,9 +428,6 @@ changes:
425428
pr-url: https://github.com/nodejs/node/pull/4374
426429
description: The `msg` parameter can be an array now. Also, the `offset`
427430
and `length` parameters are optional now.
428-
- version: v12.0.0
429-
pr-url: https://github.com/nodejs/node/pull/26871
430-
description: Added support for sending data on connected sockets.
431431
-->
432432

433433
* `msg` {Buffer|TypedArray|DataView|string|Array} Message to be sent.
@@ -735,16 +735,16 @@ chained.
735735
<!-- YAML
736736
added: v0.11.13
737737
changes:
738-
- version: v8.6.0
739-
pr-url: https://github.com/nodejs/node/pull/14560
740-
description: The `lookup` option is supported.
738+
- version: v11.4.0
739+
pr-url: https://github.com/nodejs/node/pull/23798
740+
description: The `ipv6Only` option is supported.
741741
- version: v8.7.0
742742
pr-url: https://github.com/nodejs/node/pull/13623
743743
description: The `recvBufferSize` and `sendBufferSize` options are
744744
supported now.
745-
- version: v11.4.0
746-
pr-url: https://github.com/nodejs/node/pull/23798
747-
description: The `ipv6Only` option is supported.
745+
- version: v8.6.0
746+
pr-url: https://github.com/nodejs/node/pull/14560
747+
description: The `lookup` option is supported.
748748
-->
749749

750750
* `options` {Object} Available options are:

doc/api/fs.md

+29-29
Original file line numberDiff line numberDiff line change
@@ -1923,12 +1923,12 @@ If `options` is a string, then it specifies the encoding.
19231923
## `fs.exists(path, callback)`
19241924
<!-- YAML
19251925
added: v0.0.2
1926+
deprecated: v1.0.0
19261927
changes:
19271928
- version: v7.6.0
19281929
pr-url: https://github.com/nodejs/node/pull/10739
19291930
description: The `path` parameter can be a WHATWG `URL` object using
19301931
`file:` protocol. Support is currently still *experimental*.
1931-
deprecated: v1.0.0
19321932
-->
19331933

19341934
> Stability: 0 - Deprecated: Use [`fs.stat()`][] or [`fs.access()`][] instead.
@@ -2158,6 +2158,10 @@ Synchronous fdatasync(2). Returns `undefined`.
21582158
<!-- YAML
21592159
added: v0.1.95
21602160
changes:
2161+
- version: v10.5.0
2162+
pr-url: https://github.com/nodejs/node/pull/20220
2163+
description: Accepts an additional `options` object to specify whether
2164+
the numeric values returned should be bigint.
21612165
- version: v10.0.0
21622166
pr-url: https://github.com/nodejs/node/pull/12562
21632167
description: The `callback` parameter is no longer optional. Not passing
@@ -2166,10 +2170,6 @@ changes:
21662170
pr-url: https://github.com/nodejs/node/pull/7897
21672171
description: The `callback` parameter is no longer optional. Not passing
21682172
it will emit a deprecation warning with id DEP0013.
2169-
- version: v10.5.0
2170-
pr-url: https://github.com/nodejs/node/pull/20220
2171-
description: Accepts an additional `options` object to specify whether
2172-
the numeric values returned should be bigint.
21732173
-->
21742174

21752175
* `fd` {integer}
@@ -2515,6 +2515,10 @@ Synchronous link(2). Returns `undefined`.
25152515
<!-- YAML
25162516
added: v0.1.30
25172517
changes:
2518+
- version: v10.5.0
2519+
pr-url: https://github.com/nodejs/node/pull/20220
2520+
description: Accepts an additional `options` object to specify whether
2521+
the numeric values returned should be bigint.
25182522
- version: v10.0.0
25192523
pr-url: https://github.com/nodejs/node/pull/12562
25202524
description: The `callback` parameter is no longer optional. Not passing
@@ -2527,10 +2531,6 @@ changes:
25272531
pr-url: https://github.com/nodejs/node/pull/7897
25282532
description: The `callback` parameter is no longer optional. Not passing
25292533
it will emit a deprecation warning with id DEP0013.
2530-
- version: v10.5.0
2531-
pr-url: https://github.com/nodejs/node/pull/20220
2532-
description: Accepts an additional `options` object to specify whether
2533-
the numeric values returned should be bigint.
25342534
-->
25352535

25362536
* `path` {string|Buffer|URL}
@@ -2550,14 +2550,14 @@ not the file that it refers to.
25502550
<!-- YAML
25512551
added: v0.1.30
25522552
changes:
2553-
- version: v7.6.0
2554-
pr-url: https://github.com/nodejs/node/pull/10739
2555-
description: The `path` parameter can be a WHATWG `URL` object using `file:`
2556-
protocol. Support is currently still *experimental*.
25572553
- version: v10.5.0
25582554
pr-url: https://github.com/nodejs/node/pull/20220
25592555
description: Accepts an additional `options` object to specify whether
25602556
the numeric values returned should be bigint.
2557+
- version: v7.6.0
2558+
pr-url: https://github.com/nodejs/node/pull/10739
2559+
description: The `path` parameter can be a WHATWG `URL` object using `file:`
2560+
protocol. Support is currently still *experimental*.
25612561
-->
25622562

25632563
* `path` {string|Buffer|URL}
@@ -3656,6 +3656,10 @@ utility). Returns `undefined`.
36563656
<!-- YAML
36573657
added: v0.0.2
36583658
changes:
3659+
- version: v10.5.0
3660+
pr-url: https://github.com/nodejs/node/pull/20220
3661+
description: Accepts an additional `options` object to specify whether
3662+
the numeric values returned should be bigint.
36593663
- version: v10.0.0
36603664
pr-url: https://github.com/nodejs/node/pull/12562
36613665
description: The `callback` parameter is no longer optional. Not passing
@@ -3668,10 +3672,6 @@ changes:
36683672
pr-url: https://github.com/nodejs/node/pull/7897
36693673
description: The `callback` parameter is no longer optional. Not passing
36703674
it will emit a deprecation warning with id DEP0013.
3671-
- version: v10.5.0
3672-
pr-url: https://github.com/nodejs/node/pull/20220
3673-
description: Accepts an additional `options` object to specify whether
3674-
the numeric values returned should be bigint.
36753675
-->
36763676

36773677
* `path` {string|Buffer|URL}
@@ -3769,14 +3769,14 @@ Stats {
37693769
<!-- YAML
37703770
added: v0.1.21
37713771
changes:
3772-
- version: v7.6.0
3773-
pr-url: https://github.com/nodejs/node/pull/10739
3774-
description: The `path` parameter can be a WHATWG `URL` object using `file:`
3775-
protocol. Support is currently still *experimental*.
37763772
- version: v10.5.0
37773773
pr-url: https://github.com/nodejs/node/pull/20220
37783774
description: Accepts an additional `options` object to specify whether
37793775
the numeric values returned should be bigint.
3776+
- version: v7.6.0
3777+
pr-url: https://github.com/nodejs/node/pull/10739
3778+
description: The `path` parameter can be a WHATWG `URL` object using `file:`
3779+
protocol. Support is currently still *experimental*.
37803780
-->
37813781

37823782
* `path` {string|Buffer|URL}
@@ -3791,15 +3791,15 @@ Synchronous stat(2).
37913791
<!-- YAML
37923792
added: v0.1.31
37933793
changes:
3794+
- version: v12.0.0
3795+
pr-url: https://github.com/nodejs/node/pull/23724
3796+
description: If the `type` argument is left undefined, Node will autodetect
3797+
`target` type and automatically select `dir` or `file`.
37943798
- version: v7.6.0
37953799
pr-url: https://github.com/nodejs/node/pull/10739
37963800
description: The `target` and `path` parameters can be WHATWG `URL` objects
37973801
using `file:` protocol. Support is currently still
37983802
*experimental*.
3799-
- version: v12.0.0
3800-
pr-url: https://github.com/nodejs/node/pull/23724
3801-
description: If the `type` argument is left undefined, Node will autodetect
3802-
`target` type and automatically select `dir` or `file`.
38033803
-->
38043804

38053805
* `target` {string|Buffer|URL}
@@ -3839,15 +3839,15 @@ example/
38393839
<!-- YAML
38403840
added: v0.1.31
38413841
changes:
3842+
- version: v12.0.0
3843+
pr-url: https://github.com/nodejs/node/pull/23724
3844+
description: If the `type` argument is left undefined, Node will autodetect
3845+
`target` type and automatically select `dir` or `file`.
38423846
- version: v7.6.0
38433847
pr-url: https://github.com/nodejs/node/pull/10739
38443848
description: The `target` and `path` parameters can be WHATWG `URL` objects
38453849
using `file:` protocol. Support is currently still
38463850
*experimental*.
3847-
- version: v12.0.0
3848-
pr-url: https://github.com/nodejs/node/pull/23724
3849-
description: If the `type` argument is left undefined, Node will autodetect
3850-
`target` type and automatically select `dir` or `file`.
38513851
-->
38523852

38533853
* `target` {string|Buffer|URL}

doc/api/http.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -1051,20 +1051,20 @@ not be emitted.
10511051
<!-- YAML
10521052
added: v0.1.94
10531053
changes:
1054-
- version: v6.0.0
1055-
pr-url: https://github.com/nodejs/node/pull/4557
1056-
description: The default action of calling `.destroy()` on the `socket`
1057-
will no longer take place if there are listeners attached
1058-
for `'clientError'`.
1054+
- version: v12.0.0
1055+
pr-url: https://github.com/nodejs/node/pull/25605
1056+
description: The default behavior will return a 431 Request Header
1057+
Fields Too Large if a HPE_HEADER_OVERFLOW error occurs.
10591058
- version: v9.4.0
10601059
pr-url: https://github.com/nodejs/node/pull/17672
10611060
description: The `rawPacket` is the current buffer that just parsed. Adding
10621061
this buffer to the error object of `'clientError'` event is to
10631062
make it possible that developers can log the broken packet.
1064-
- version: v12.0.0
1065-
pr-url: https://github.com/nodejs/node/pull/25605
1066-
description: The default behavior will return a 431 Request Header
1067-
Fields Too Large if a HPE_HEADER_OVERFLOW error occurs.
1063+
- version: v6.0.0
1064+
pr-url: https://github.com/nodejs/node/pull/4557
1065+
description: The default action of calling `.destroy()` on the `socket`
1066+
will no longer take place if there are listeners attached
1067+
for `'clientError'`.
10681068
-->
10691069

10701070
* `exception` {Error}

doc/api/http2.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -2087,6 +2087,10 @@ changes:
20872087
pr-url: https://github.com/nodejs/node/pull/27782
20882088
description: The `options` parameter now supports `net.createServer()`
20892089
options.
2090+
- version: v9.6.0
2091+
pr-url: https://github.com/nodejs/node/pull/15752
2092+
description: Added the `Http1IncomingMessage` and `Http1ServerResponse`
2093+
option.
20902094
- version: v8.9.3
20912095
pr-url: https://github.com/nodejs/node/pull/17105
20922096
description: Added the `maxOutstandingPings` option with a default limit of
@@ -2095,10 +2099,6 @@ changes:
20952099
pr-url: https://github.com/nodejs/node/pull/16676
20962100
description: Added the `maxHeaderListPairs` option with a default limit of
20972101
128 header pairs.
2098-
- version: v9.6.0
2099-
pr-url: https://github.com/nodejs/node/pull/15752
2100-
description: Added the `Http1IncomingMessage` and `Http1ServerResponse`
2101-
option.
21022102
-->
21032103

21042104
* `options` {Object}

doc/api/https.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ separate module.
1313
<!-- YAML
1414
added: v0.4.5
1515
changes:
16+
- version: v5.3.0
17+
pr-url: https://github.com/nodejs/node/pull/4252
18+
description: support `0` `maxCachedSessions` to disable TLS session caching.
1619
- version: v2.5.0
1720
pr-url: https://github.com/nodejs/node/pull/2228
1821
description: parameter `maxCachedSessions` added to `options` for TLS
1922
sessions reuse.
20-
- version: v5.3.0
21-
pr-url: https://github.com/nodejs/node/pull/4252
22-
description: support `0` `maxCachedSessions` to disable TLS session caching.
2323
-->
2424

2525
An [`Agent`][] object for HTTPS similar to [`http.Agent`][]. See

doc/api/packages.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -882,24 +882,24 @@ as ES modules and `.cjs` files are always treated as CommonJS.
882882
added: v12.7.0
883883
changes:
884884
- version:
885-
- v13.2.0
885+
- v14.13.0
886+
pr-url: https://github.com/nodejs/node/pull/34718
887+
description: Add support for `"exports"` patterns.
888+
- version:
889+
- v13.7.0
886890
- v12.16.0
887-
pr-url: https://github.com/nodejs/node/pull/29978
888-
description: Implement conditional exports.
891+
pr-url: https://github.com/nodejs/node/pull/31008
892+
description: Implement logical conditional exports ordering.
889893
- version:
890894
- v13.7.0
891895
- v12.16.0
892896
pr-url: https://github.com/nodejs/node/pull/31001
893897
description: Remove the `--experimental-conditional-exports` option.
894898
- version:
895-
- v13.7.0
899+
- v13.2.0
896900
- v12.16.0
897-
pr-url: https://github.com/nodejs/node/pull/31008
898-
description: Implement logical conditional exports ordering.
899-
- version:
900-
- v14.13.0
901-
pr-url: https://github.com/nodejs/node/pull/34718
902-
description: Add support for `"exports"` patterns.
901+
pr-url: https://github.com/nodejs/node/pull/29978
902+
description: Implement conditional exports.
903903
-->
904904

905905
* Type: {Object} | {string} | {string[]}

doc/api/process.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2520,12 +2520,12 @@ To get the version string without the prepended _v_, use
25202520
<!-- YAML
25212521
added: v0.2.0
25222522
changes:
2523-
- version: v4.2.0
2524-
pr-url: https://github.com/nodejs/node/pull/3102
2525-
description: The `icu` property is now supported.
25262523
- version: v9.0.0
25272524
pr-url: https://github.com/nodejs/node/pull/15785
25282525
description: The `v8` property now includes a Node.js specific suffix.
2526+
- version: v4.2.0
2527+
pr-url: https://github.com/nodejs/node/pull/3102
2528+
description: The `icu` property is now supported.
25292529
-->
25302530

25312531
* {Object}

doc/api/stream.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1651,15 +1651,15 @@ const cleanup = finished(rs, (err) => {
16511651
<!-- YAML
16521652
added: v10.0.0
16531653
changes:
1654-
- version: v13.10.0
1655-
pr-url: https://github.com/nodejs/node/pull/31223
1656-
description: Add support for async generators.
16571654
- version: v14.0.0
16581655
pr-url: https://github.com/nodejs/node/pull/32158
16591656
description: The `pipeline(..., cb)` will wait for the `'close'` event
16601657
before invoking the callback. The implementation tries to
16611658
detect legacy streams and only apply this behavior to streams
16621659
which are expected to emit `'close'`.
1660+
- version: v13.10.0
1661+
pr-url: https://github.com/nodejs/node/pull/31223
1662+
description: Add support for async generators.
16631663
-->
16641664

16651665
* `streams` {Stream[]|Iterable[]|AsyncIterable[]|Function[]}
@@ -2215,15 +2215,15 @@ constructor and implement the [`readable._read()`][] method.
22152215
#### `new stream.Readable([options])`
22162216
<!-- YAML
22172217
changes:
2218+
- version: v14.0.0
2219+
pr-url: https://github.com/nodejs/node/pull/30623
2220+
description: Change `autoDestroy` option default to `true`.
22182221
- version:
22192222
- v11.2.0
22202223
- v10.16.0
22212224
pr-url: https://github.com/nodejs/node/pull/22795
22222225
description: Add `autoDestroy` option to automatically `destroy()` the
22232226
stream when it emits `'end'` or errors.
2224-
- version: v14.0.0
2225-
pr-url: https://github.com/nodejs/node/pull/30623
2226-
description: Change `autoDestroy` option default to `true`.
22272227
-->
22282228

22292229
* `options` {Object}

0 commit comments

Comments
 (0)