Skip to content

Commit 875c3d3

Browse files
nschonniBridgeAR
authored andcommitted
doc: remove multiple consecutive blank lines
These are rendered as single breaks. Addresses Markdownlint MD012 rule. PR-URL: #29352 Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
1 parent 3737bd9 commit 875c3d3

29 files changed

+0
-58
lines changed

CPP_STYLE_GUIDE.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
* [Avoid throwing JavaScript errors in C++ methods](#avoid-throwing-javascript-errors-in-c)
3030
* [Avoid throwing JavaScript errors in nested C++ methods](#avoid-throwing-javascript-errors-in-nested-c-methods)
3131

32-
3332
## Guides and References
3433

3534
The Node.js C++ codebase strives to be consistent in its use of language
@@ -385,7 +384,6 @@ side effects.
385384
Node.js is built [without C++ exception handling][], so code using `throw` or
386385
even `try` and `catch` **will** break.
387386

388-
389387
[C++ Core Guidelines]: http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines
390388
[Google C++ Style Guide]: https://google.github.io/styleguide/cppguide.html
391389
[Google’s `cpplint`]: https://github.com/google/styleguide

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ The Node.js project uses an [open governance model](./GOVERNANCE.md). The
1616

1717
**This project is bound by a [Code of Conduct][].**
1818

19-
2019
# Table of Contents
2120

2221
* [Support](#support)
@@ -89,7 +88,6 @@ Version-specific documentation is available in each release directory in the
8988
_docs_ subdirectory. Version-specific documentation is also at
9089
<https://nodejs.org/download/docs/>.
9190

92-
9391
### Verifying Binaries
9492

9593
Download directories contain a `SHASUMS256.txt` file with SHA checksums for the

benchmark/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ See [the guide on writing benchmarks](../doc/guides/writing-and-running-benchmar
8383
The default benchmarker used to run HTTP benchmarks.
8484
See [the guide on writing HTTP benchmarks](../doc/guides/writing-and-running-benchmarks.md#creating-an-http-benchmark).
8585

86-
8786
### PORT
8887

8988
The default port used to run HTTP benchmarks.
@@ -95,4 +94,3 @@ Used in special benchmarks that can't use `createBenchmark` and the object
9594
it returns to accomplish what they need. This function reports timing
9695
data to the parent process (usually created by running `compare.js`, `run.js` or
9796
`scatter.js`).
98-

doc/api/documentation.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ Node.js is a JavaScript runtime built on the [V8 JavaScript engine][].
1212
Report errors in this documentation in [the issue tracker][]. See
1313
[the contributing guide][] for directions on how to submit pull requests.
1414

15-
1615
## Stability Index
1716

1817
<!--type=misc-->

doc/api/errors.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,6 @@ The OpenSSL library the error originates in.
608608

609609
A human-readable string describing the reason for the error.
610610

611-
612611
<a id="nodejs-error-codes"></a>
613612
## Node.js Error Codes
614613

@@ -2164,7 +2163,6 @@ removed: v10.0.0
21642163

21652164
The `repl` module was unable to parse data from the REPL history file.
21662165

2167-
21682166
<a id="ERR_STDERR_CLOSE"></a>
21692167
### ERR_STDERR_CLOSE
21702168
<!-- YAML

doc/api/events.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,6 @@ to each.
307307

308308
Returns `true` if the event had listeners, `false` otherwise.
309309

310-
311310
```js
312311
const EventEmitter = require('events');
313312
const myEmitter = new EventEmitter();

doc/api/fs.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,6 @@ added: v10.10.0
357357

358358
Returns `true` if the `fs.Dirent` object describes a symbolic link.
359359

360-
361360
### dirent.name
362361
<!-- YAML
363362
added: v10.10.0

doc/api/globals.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,6 @@ added: v11.0.0
195195

196196
The WHATWG `TextEncoder` class. See the [`TextEncoder`][] section.
197197

198-
199198
## URL
200199
<!-- YAML
201200
added: v10.0.0

doc/api/https.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ See [`http.Server#headersTimeout`][].
7575
Starts the HTTPS server listening for encrypted connections.
7676
This method is identical to [`server.listen()`][] from [`net.Server`][].
7777

78-
7978
### server.maxHeadersCount
8079

8180
- {number} **Default:** `2000`

doc/api/n-api.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2429,7 +2429,6 @@ returns `napi_bigint_expected`.
24292429
This API returns the C `int64_t` primitive equivalent of the given JavaScript
24302430
`BigInt`. If needed it will truncate the value, setting `lossless` to `false`.
24312431

2432-
24332432
#### napi_get_value_bigint_uint64
24342433
<!-- YAML
24352434
added: v10.7.0
@@ -2457,7 +2456,6 @@ returns `napi_bigint_expected`.
24572456
This API returns the C `uint64_t` primitive equivalent of the given JavaScript
24582457
`BigInt`. If needed it will truncate the value, setting `lossless` to `false`.
24592458

2460-
24612459
#### napi_get_value_bigint_words
24622460
<!-- YAML
24632461
added: v10.7.0

doc/api/policy.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,5 +183,4 @@ module.exports = function fn(...args) {
183183
};
184184
```
185185

186-
187186
[relative url string]: https://url.spec.whatwg.org/#relative-url-with-fragment-string

doc/api/tls.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1644,7 +1644,6 @@ added: v11.4.0
16441644
the default to `'TLSv1.3'`. If multiple of the options are provided, the
16451645
highest maximum is used.
16461646

1647-
16481647
## tls.DEFAULT_MIN_VERSION
16491648
<!-- YAML
16501649
added: v11.4.0
@@ -1659,7 +1658,6 @@ added: v11.4.0
16591658
`'TLSv1.3'`. If multiple of the options are provided, the lowest minimum is
16601659
used.
16611660

1662-
16631661
## Deprecated APIs
16641662

16651663
### Class: CryptoStream

doc/api/v8.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,6 @@ Returns an object with the following properties:
134134
* `number_of_native_contexts` {number}
135135
* `number_of_detached_contexts` {number}
136136

137-
138137
`does_zap_garbage` is a 0/1 boolean, which signifies whether the
139138
`--zap_code_space` option is enabled or not. This makes V8 overwrite heap
140139
garbage with a bit pattern. The RSS footprint (resident memory set) gets bigger

doc/changelogs/CHANGELOG_IOJS.md

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@
7676
* [0.10.x](CHANGELOG_V010.md)
7777
* [Archive](CHANGELOG_ARCHIVE.md)
7878

79-
8079
<a id="3.3.1"></a>
8180
## 2015-09-15, io.js Version 3.3.1 @rvagg
8281

@@ -614,7 +613,6 @@ See https://github.com/nodejs/node/labels/confirmed-bug for complete and current
614613
* [[`842eb5b853`](https://github.com/nodejs/node/commit/842eb5b853)] - **test**: add test for dgram.setTTL (Evan Lucas) [#2121](https://github.com/nodejs/node/pull/2121)
615614
* [[`cff7300a57`](https://github.com/nodejs/node/commit/cff7300a57)] - **win,node-gyp**: enable delay-load hook by default (Bert Belder) [iojs/io.js#1433](https://github.com/iojs/io.js/pull/1433)
616615

617-
618616
<a id="2.3.4"></a>
619617
## 2015-07-09, Version 2.3.4, @Fishrock123
620618

@@ -651,7 +649,6 @@ See https://github.com/nodejs/node/labels/confirmed-bug for complete and current
651649
* [[`ee3ce2ed88`](https://github.com/nodejs/node/commit/ee3ce2ed88)] - **tools**: install gdbinit from v8 to $PREFIX/share (Ali Ijaz Sheikh) [#2123](https://github.com/nodejs/node/pull/2123)
652650
* [[`dd523c75da`](https://github.com/nodejs/node/commit/dd523c75da)] - **win,node-gyp**: enable delay-load hook by default (Bert Belder) [iojs/io.js#1433](https://github.com/iojs/io.js/pull/1433)
653651

654-
655652
<a id="1.8.4"></a>
656653
## 2015-07-09, Version 1.8.4, @Fishrock123
657654

@@ -675,7 +672,6 @@ See https://github.com/nodejs/node/labels/confirmed-bug for complete and current
675672
* [[`c70e68fa32`](https://github.com/nodejs/node/commit/c70e68fa32)] - **deps**: update deps/openssl/conf/arch/*/opensslconf.h (Shigeki Ohtsu) [#2141](https://github.com/nodejs/node/pull/2141)
676673
* [[`ca93f7f2e6`](https://github.com/nodejs/node/commit/ca93f7f2e6)] - **deps**: upgrade openssl sources to 1.0.2d (Shigeki Ohtsu) [#2141](https://github.com/nodejs/node/pull/2141)
677674

678-
679675
<a id="2.3.3"></a>
680676
## 2015-07-04, Version 2.3.3, @Fishrock123
681677

@@ -699,7 +695,6 @@ See https://github.com/nodejs/node/labels/confirmed-bug for complete and current
699695
* [[`0f09b8db28`](https://github.com/nodejs/node/commit/0f09b8db28)] - **doc**: don't recommend domains for error handling (Benjamin Gruenbaum) [#2056](https://github.com/nodejs/node/pull/2056)
700696
* [[`9cd44bb2b6`](https://github.com/nodejs/node/commit/9cd44bb2b6)] - **util**: prepend '(node) ' to deprecation messages (Sakthipriyan Vairamani) [#1892](https://github.com/nodejs/node/pull/1892)
701697

702-
703698
<a id="1.8.3"></a>
704699
## 2015-07-04, Version 1.8.3, @rvagg
705700

@@ -751,7 +746,6 @@ See https://github.com/nodejs/node/labels/confirmed-bug for complete and current
751746
* [[`c65484a74d`](https://github.com/nodejs/node/commit/c65484a74d)] - **tls**: make server not use DHE in less than 1024bits (Shigeki Ohtsu) [#1739](https://github.com/nodejs/node/pull/1739)
752747
* [[`77f518403f`](https://github.com/nodejs/node/commit/77f518403f)] - **win,node-gyp**: make delay-load hook C89 compliant (Sharat M R) [TooTallNate/node-gyp#616](https://github.com/TooTallNa
753748

754-
755749
<a id="2.3.2"></a>
756750
## 2015-07-01, Version 2.3.2, @rvagg
757751

@@ -814,7 +808,6 @@ See https://github.com/nodejs/node/labels/confirmed-bug for complete and current
814808
* [[`6c61ca5325`](https://github.com/nodejs/node/commit/6c61ca5325)] - **url**: fix typo in comment (Rich Trott) [#2071](https://github.com/nodejs/node/pull/2071)
815809
* [[`1a51f0058c`](https://github.com/nodejs/node/commit/1a51f0058c)] - **v8**: cherry-pick JitCodeEvent patch from upstream (Ben Noordhuis) [#2075](https://github.com/nodejs/node/pull/2075)
816810

817-
818811
<a id="2.3.1"></a>
819812
## 2015-06-23, Version 2.3.1, @rvagg
820813

@@ -884,7 +877,6 @@ See https://github.com/nodejs/node/labels/confirmed-bug for complete and current
884877
* [[`953b3e75e8`](https://github.com/nodejs/node/commit/953b3e75e8)] - **win,node-gyp**: enable delay-load hook by default (Bert Belder) [iojs/io.js#1433](https://github.com/iojs/io.js/pull/1433)
885878
* [[`3806d875d3`](https://github.com/nodejs/node/commit/3806d875d3)] - **zlib**: prevent uncaught exception in zlibBuffer (Michaël Zasso) [#1811](https://github.com/nodejs/node/pull/1811)
886879

887-
888880
<a id="2.3.0"></a>
889881
## 2015-06-13, Version 2.3.0, @rvagg
890882

@@ -1008,7 +1000,6 @@ See https://github.com/nodejs/node/labels/confirmed-bug for complete and current
10081000
* [[`628845b816`](https://github.com/nodejs/node/commit/628845b816)] - **(SEMVER-MINOR)** **util**: introduce `printDeprecationMessage` function (Vladimir Kurchatkin) [#1822](https://github.com/nodejs/node/pull/1822)
10091001
* [[`91d0a8b19c`](https://github.com/nodejs/node/commit/91d0a8b19c)] - **win,node-gyp**: enable delay-load hook by default (Bert Belder) [iojs/io.js#1433](https://github.com/iojs/io.js/pull/1433)
10101002

1011-
10121003
<a id="2.2.1"></a>
10131004
## 2015-06-01, Version 2.2.1, @rvagg
10141005

@@ -1032,7 +1023,6 @@ See https://github.com/nodejs/node/labels/confirmed-bug for complete and current
10321023
* [[`5d83401086`](https://github.com/nodejs/node/commit/5d83401086)] - **doc**: put SEMVER-MINOR on pre-load module fix 2.2.0 (Rod Vagg)
10331024
* [[`4d6b768e5d`](https://github.com/nodejs/node/commit/4d6b768e5d)] - **http**: revert deprecation of client property (Michaël Zasso) [#1852](https://github.com/nodejs/node/pull/1852)
10341025

1035-
10361026
<a id="2.2.0"></a>
10371027
## 2015-05-31, Version 2.2.0, @rvagg
10381028

@@ -1395,7 +1385,6 @@ See https://github.com/nodejs/node/labels/confirmed-bug for complete and current
13951385
* [[`30e83d2e84`](https://github.com/nodejs/node/commit/30e83d2e84)] - **win,node-gyp**: optionally allow node.exe/iojs.exe to be renamed (Bert Belder) [#1266](https://github.com/nodejs/node/pull/1266)
13961386
* [[`3bda6cbfa4`](https://github.com/nodejs/node/commit/3bda6cbfa4)] - **(SEMVER-MAJOR)** **win,node-gyp**: enable delay-load hook by default (Bert Belder) [#1433](https://github.com/nodejs/node/pull/1433)
13971387

1398-
13991388
<a id="1.8.1"></a>
14001389
## 2015-04-20, Version 1.8.1, @chrisdickinson
14011390

doc/changelogs/CHANGELOG_V010.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,6 @@ Security Update
285285
* [517986c2f4] - win: backport bringing back xp/2k3 support (Bert Belder) https://github.com/nodejs/node-v0.x-archive/pull/25569
286286
* [10f251e8dd] - win: backport set env before generating projects (Alexis Campailla) https://github.com/nodejs/node-v0.x-archive/pull/25569
287287

288-
289288
<a id="0.10.40"></a>
290289
## 2015-07-09, Version 0.10.40 (Maintenance)
291290

doc/changelogs/CHANGELOG_V012.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,6 @@ This is a security release. All Node.js users should consult the security releas
132132
* [a113e02f16] - deps: backport 3a9bfec from v8 upstream (Ben Noordhuis)
133133
* [8138055c88] - test: fix test failure due to expired certificates (Ben Noordhuis) https://github.com/nodejs/node/pull/7195
134134

135-
136135
<a id="0.12.14"></a>
137136
## 2016-05-06, Version 0.12.14 (Maintenance), @rvagg
138137

doc/changelogs/CHANGELOG_V11.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2648,7 +2648,6 @@ Fixes for the following CVEs are included in this release:
26482648
* [[`48a2568f41`](https://github.com/nodejs/node/commit/48a2568f41)] - **(SEMVER-MINOR)** **timers**: add hasRef method to Timeout & Immediate (Anatoli Papirovski) [#20898](https://github.com/nodejs/node/pull/20898)
26492649
* [[`bed4a8c6e0`](https://github.com/nodejs/node/commit/bed4a8c6e0)] - **(SEMVER-MINOR)** **tls**: support changing credentials dynamically (cjihrig) [#23644](https://github.com/nodejs/node/pull/23644)
26502650

2651-
26522651
### Semver-Patch Commits
26532652

26542653
* [[`eccc65919a`](https://github.com/nodejs/node/commit/eccc65919a)] - **assert**: add comments for diff algorithm (Ruben Bridgewater) [#23048](https://github.com/nodejs/node/pull/23048)

doc/changelogs/CHANGELOG_V4.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@
7070
* [io.js](CHANGELOG_IOJS.md)
7171
* [Archive](CHANGELOG_ARCHIVE.md)
7272

73-
7473
*Note*: Node.js v4 is covered by the
7574
[Node.js Long Term Support Plan](https://github.com/nodejs/LTS) and
7675
will be supported actively until April 2017 and maintained until April 2018.
@@ -246,7 +245,6 @@ This is a security release. All Node.js users should consult the security releas
246245
* [[`d6969a717f`](https://github.com/nodejs/node/commit/d6969a717f)] - **http**: use Buffer.from to avoid Buffer(num) call (Сковорода Никита Андреевич) [nodejs/node-private#83](https://github.com/nodejs/node-private/pull/83)
247246
* [[`58a8f150e5`](https://github.com/nodejs/node/commit/58a8f150e5)] - **test**: verify hash seed uniqueness (Ali Ijaz Sheikh) [nodejs/node-private#84](https://github.com/nodejs/node-private/pull/84)
248247

249-
250248
<a id="4.8.3"></a>
251249
## 2017-05-02, Version 4.8.3 'Argon' (Maintenance), @MylesBorins
252250

@@ -3050,7 +3048,6 @@ See https://github.com/nodejs/node/labels/confirmed-bug for complete and current
30503048

30513049
### Commits
30523050

3053-
30543051
* [[`8383c4fe00`](https://github.com/nodejs/node/commit/8383c4fe00)] - **assert**: support arrow functions in .throws() (Ben Noordhuis) [#3276](https://github.com/nodejs/node/pull/3276)
30553052
* [[`3eaa593a32`](https://github.com/nodejs/node/commit/3eaa593a32)] - **async_wrap**: correctly pass parent to init callback (Trevor Norris) [#3216](https://github.com/nodejs/node/pull/3216)
30563053
* [[`54795620f6`](https://github.com/nodejs/node/commit/54795620f6)] - **buffer**: don't abort on prototype getters (Trevor Norris) [#3302](https://github.com/nodejs/node/pull/3302)

doc/changelogs/CHANGELOG_V5.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ This is a security release. All Node.js users should consult the security releas
9191
* [[`c1ddefdd79`](https://github.com/nodejs/node/commit/c1ddefdd79)] - **openssl**: fix keypress requirement in apps on win32 (Shigeki Ohtsu) [iojs/io.js#1389](https://github.com/iojs/io.js/pull/1389)
9292
* [[`bec5d50f1e`](https://github.com/nodejs/node/commit/bec5d50f1e)] - **test**: fix alpn tests for openssl1.0.2h (Shigeki Ohtsu) [#6552](https://github.com/nodejs/node/pull/6552)
9393

94-
9594
<a id="5.11.0"></a>
9695
## 2016-04-20, Version 5.11.0 (Stable), @thealphanerd
9796

@@ -913,7 +912,6 @@ This is an important security release. All Node.js users should consult the secu
913912
* [[`386ad7e0b5`](https://github.com/nodejs/node/commit/386ad7e0b5)] - **tools**: fix setting path containing an ampersand (Brian White) [#4804](https://github.com/nodejs/node/pull/4804)
914913
* [[`e415eb27e5`](https://github.com/nodejs/node/commit/e415eb27e5)] - **url**: change scoping of variables with let (Kári Tristan Helgason) [#4867](https://github.com/nodejs/node/pull/4867)
915914

916-
917915
<a id="5.5.0"></a>
918916
## 2016-01-20, Version 5.5.0 (Stable), @evanlucas
919917

@@ -1186,7 +1184,6 @@ This is an important security release. All Node.js users should consult the secu
11861184
* **deps**:
11871185
- Upgrade libuv to 1.8.0. (Saúl Ibarra Corretgé) [#4276](https://github.com/nodejs/node/pull/4276).
11881186

1189-
11901187
### Known issues
11911188

11921189
* Surrogate pair in REPL can freeze terminal. [#690](https://github.com/nodejs/node/issues/690)
@@ -1262,7 +1259,6 @@ This is an important security release. All Node.js users should consult the secu
12621259
- Multiple CA certificates can now be passed with the `ca` option to TLS methods as an array of strings or in a single new-line separated string. (Ben Noordhuis) [#4099](https://github.com/nodejs/node/pull/4099)
12631260
* **tools**: Include a tick processor in core, exposed via the `--prof-process` command-line argument which can be used to process V8 profiling output files generated when using the `--prof` command-line argument. (Matt Loring) [#4021](https://github.com/nodejs/node/pull/4021).
12641261

1265-
12661262
### Known issues
12671263

12681264
* Surrogate pair in REPL can freeze terminal. [#690](https://github.com/nodejs/node/issues/690)
@@ -1609,7 +1605,6 @@ This is an important security release. All Node.js users should consult the secu
16091605
* `url.resolve` may transfer the auth portion of the url when resolving between two full hosts, see [#1435](https://github.com/nodejs/node/issues/1435).
16101606
* Unicode characters in filesystem paths are not handled consistently across platforms or Node.js APIs. See [#2088](https://github.com/nodejs/node/issues/2088), [#3401](https://github.com/nodejs/node/issues/3401) and [#3519](https://github.com/nodejs/node/issues/3519).
16111607

1612-
16131608
### Commits
16141609

16151610
* [[`6a04cc0a43`](https://github.com/nodejs/node/commit/6a04cc0a43)] - **buffer**: fix value check for writeUInt{B,L}E (Trevor Norris) [#3500](https://github.com/nodejs/node/pull/3500)

doc/changelogs/CHANGELOG_V6.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,6 @@ Fixes for the following CVEs are included in this release:
258258

259259
* [[`7dbcfc6217`](https://github.com/nodejs/node/commit/7dbcfc6217)] - **src**: avoid hanging on Buffer#fill 0-length input (Сковорода Никита Андреевич) [nodejs-private/node-private#121](https://github.com/nodejs-private/node-private/pull/121)
260260

261-
262261
<a id="6.14.2"></a>
263262
## 2018-04-30, Version 6.14.2 'Boron' (LTS), @MylesBorins
264263

@@ -2600,7 +2599,6 @@ The SEMVER-MINOR changes include:
26002599
* **process**: add `process.memoryUsage.external` (Fedor Indutny) [#9587](https://github.com/nodejs/node/pull/9587)
26012600
* **src**: add wrapper for process.emitWarning() (Sam Roberts) [#9139](https://github.com/nodejs/node/pull/9139)
26022601

2603-
26042602
Notable SEMVER-PATCH changes include:
26052603

26062604
* **fs**: cache non-symlinks in realpathSync. (Jeremy Yallop) [#10253](https://github.com/nodejs/node/pull/10253)
@@ -4938,7 +4936,6 @@ v5.0.0 release.
49384936
[#5883](https://github.com/nodejs/node/pull/5883) and
49394937
[#5707](https://github.com/nodejs/node/pull/5707).
49404938

4941-
49424939
### Commits
49434940

49444941
Semver-major Changes since v5.0.0
@@ -5033,7 +5030,6 @@ Semver-major Changes since v5.0.0
50335030
* [[`54a5287e3e`](https://github.com/nodejs/node/commit/54a5287e3e)] - **(SEMVER-MAJOR)** **zlib**: fix gzip member head/buffer boundary issue (Anna Henningsen) [#5883](https://github.com/nodejs/node/pull/5883)
50345031
* [[`8b43d3f52d`](https://github.com/nodejs/node/commit/8b43d3f52d)] - **(SEMVER-MAJOR)** **zlib**: do not emit event on *Sync() methods (Rich Trott) [#5707](https://github.com/nodejs/node/pull/5707)
50355032

5036-
50375033
Semver-minor and patch commits since v5.11.0
50385034

50395035
* [[`7d4f652ced`](https://github.com/nodejs/node/commit/7d4f652ced)] - **benchmarks**: fix lint error (Myles Borins) [#6314](https://github.com/nodejs/node/pull/6314)

doc/changelogs/CHANGELOG_V7.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,6 @@ Drysdale)
275275
* [[`e77f1e2177`](https://github.com/nodejs/node/commit/e77f1e2177)] - **v8**: fix stack overflow in recursive method (Ben Noordhuis) [#12460](https://github.com/nodejs/node/pull/12460)
276276
* [[`25b851bdd4`](https://github.com/nodejs/node/commit/25b851bdd4)] - **v8**: fix build errors with g++ 7 (Ben Noordhuis) [#12392](https://github.com/nodejs/node/pull/12392)
277277

278-
279278
<a id="7.9.0"></a>
280279
## 2017-04-11, Version 7.9.0 (Current), @italoacasas
281280

@@ -1235,7 +1234,6 @@ users is "low". Details on this determination can be found
12351234
* [[`d628f3a227`](https://github.com/nodejs/node/commit/d628f3a227)] - **util**: avoid out-of-bounds arguments index access (Teddy Katz) [#10569](https://github.com/nodejs/node/pull/10569)
12361235
* [[`2641cd496d`](https://github.com/nodejs/node/commit/2641cd496d)] - **vm**: improve performance of vm.runIn*() (Rich Trott) [#10816](https://github.com/nodejs/node/pull/10816)
12371236

1238-
12391237
<a id="7.4.0"></a>
12401238
## 2017-01-04, Version 7.4.0 (Current), @evanlucas
12411239

@@ -1394,7 +1392,6 @@ users is "low". Details on this determination can be found
13941392
* [[`495213e545`](https://github.com/nodejs/node/commit/495213e545)] - **url**: mark ignored return value in node::url::Parse(...) (Christopher J. Brody) [#10141](https://github.com/nodejs/node/pull/10141)
13951393
* [[`ba46374cb9`](https://github.com/nodejs/node/commit/ba46374cb9)] - **watchdog**: add flag to mark handler as disabled (Bartosz Sosnowski) [#10248](https://github.com/nodejs/node/pull/10248)
13961394

1397-
13981395
<a id="7.3.0"></a>
13991396
## 2016-12-20, Version 7.3.0 (Current), @cjihrig
14001397

@@ -2015,7 +2012,6 @@ _This is a security release impacting Windows 10 users._
20152012
* [[`4f0596fb03`](https://github.com/nodejs/node/commit/4f0596fb03)] - **util**: use template strings (Alejandro Oviedo Garcia) [#9120](https://github.com/nodejs/node/pull/9120)
20162013
* [[`b083086ff2`](https://github.com/nodejs/node/commit/b083086ff2)] - **vm**: name anonymous functions (solebox) [#9388](https://github.com/nodejs/node/pull/9388)
20172014

2018-
20192015
<a id="7.0.0"></a>
20202016
## 2016-10-25, Version 7.0.0 (Current), @jasnell
20212017

0 commit comments

Comments
 (0)