Skip to content

Commit fe7ff01

Browse files
authored
format markdown files with remark (#1115)
* update dependencies in package-lock.json * update markdown files in project root with remark
1 parent dbfa672 commit fe7ff01

5 files changed

+245
-229
lines changed

OpenSSL-Strategy.md

+25-25
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ For Node.js >= 10.16.0:
5151
* OpenSSL version: 1.1.1
5252
* Allowed shared OpenSSL version: 1.1.0 or 1.1.1
5353
* Default minimum TLS version is TLSv1, default maximum is TLSv1.2. It is
54-
expected that TLS1.3 support will be backported to 10.x, but it will *not* be
54+
expected that TLS1.3 support will be backported to 10.x, but it will _not_ be
5555
supported by default, only by explicit run-time configuration.
5656
* FIPS: not supported
5757

@@ -102,7 +102,7 @@ For Node.js >= 11.9.0:
102102
* OpenSSL version: 1.1.0
103103
* Allowed shared OpenSSL version: 1.1.0 or 1.1.1
104104
* Default minimum TLS version is TLSv1, default maximum is TLSv1.2. It is
105-
expected that TLS1.3 support will be backported to 11.x, but it will *not* be
105+
expected that TLS1.3 support will be backported to 11.x, but it will _not_ be
106106
supported by default, only by explicit run-time configuration.
107107
* FIPS: not supported
108108

@@ -111,7 +111,7 @@ For Node.js >= 11.9.0:
111111
* OpenSSL version: 1.1.1
112112
* Allowed shared OpenSSL version: 1.1.1
113113
* Default minimum TLS version is TLSv1.2, default maximum is TLSv1.3. TLSv1
114-
and TLSv1.1 are *not* supported by default, only by explicit run-time
114+
and TLSv1.1 are _not_ supported by default, only by explicit run-time
115115
configuration.
116116
* FIPS: not supported
117117

@@ -124,13 +124,13 @@ Node.js EOL dates:
124124
## Node.js version 15.x (est. Oct 2020) (EOL Jun 2021)
125125

126126
* quictls/OpenSSL version: 1.1.1+quic
127-
Node.js currently uses a temporary OpenSSL fork, which closely tracks the main
128-
openssl/openssl releases with the addition of APIs to support the QUIC protocol.
129-
Details on the fork, as well as the latest sources, can be found at
130-
<https://github.com/quictls/openssl>.
127+
Node.js currently uses a temporary OpenSSL fork, which closely tracks the main
128+
openssl/openssl releases with the addition of APIs to support the QUIC protocol.
129+
Details on the fork, as well as the latest sources, can be found at
130+
<https://github.com/quictls/openssl>.
131131
* Allowed shared OpenSSL version: 1.1.1
132132
* Default minimum TLS version is TLSv1.2, default maximum is TLSv1.3. TLSv1
133-
and TLSv1.1 are *not* supported by default, only by explicit run-time
133+
and TLSv1.1 are _not_ supported by default, only by explicit run-time
134134
configuration.
135135
* FIPS: not supported
136136

@@ -142,14 +142,14 @@ of 15.x (which is only about 8 months), that experimental support for OpenSSL
142142
## Node.js version 16.x (est Apr 2021) (EOL Apr 2024)
143143

144144
* quictls/OpenSSL version: openssl-3.0.0+quic
145-
Node.js currently uses a temporary OpenSSL fork, which closely tracks the main
146-
openssl/openssl releases with the addition of APIs to support the QUIC protocol.
147-
This will be used until OpenSSL releases support for the QUIC protocol. Details
148-
on the fork, as well as the latest sources, can be found at
149-
<https://github.com/quictls/openssl>.
145+
Node.js currently uses a temporary OpenSSL fork, which closely tracks the main
146+
openssl/openssl releases with the addition of APIs to support the QUIC protocol.
147+
This will be used until OpenSSL releases support for the QUIC protocol. Details
148+
on the fork, as well as the latest sources, can be found at
149+
<https://github.com/quictls/openssl>.
150150
* Allowed shared OpenSSL version: 3.0.0, 3.0.0+quic, 1.1.1, 1.1.1+quic
151151
* Default minimum TLS version is TLSv1.2, default maximum is TLSv1.3. TLSv1
152-
and TLSv1.1 are *not* supported by default, only by explicit run-time
152+
and TLSv1.1 are _not_ supported by default, only by explicit run-time
153153
configuration.
154154
* FIPS: unpredictable, see below
155155

@@ -166,19 +166,19 @@ building against OpenSSL 1.1.1 out-of-tree, even if OpenSSL 3.x was in-tree.
166166
The plan described above is to:
167167

168168
* Once OpenSSL has been updated with support for the QUIC protocol replace the
169-
temporary quictls/openssl depencency with it.
169+
temporary quictls/openssl depencency with it.
170170

171171
Challenges are:
172172

173173
1. OpenSSL 3.x moved many algorithms into a legacy library, that is only
174-
accessible as a dynamically loaded provider, so cannot ship with Node.js
174+
accessible as a dynamically loaded provider, so cannot ship with Node.js
175175
2. Node.js has a build system wrapped around OpenSSL 1.1.1, it is currently
176-
incompatible with the OpenSSL 3.x build system (effort to fix this is
177-
unknown).
176+
incompatible with the OpenSSL 3.x build system (effort to fix this is
177+
unknown).
178178
3. OpenSSL 3.x has compile-time warning-deprecated a number of OpenSSL 1.1.1
179-
APIs, but the alternatives to those deprecated APIs do not exist in OpenSSL
180-
1.1.1. So, Node.js 16.x either needs to ship calling deprecated APIs, or
181-
break compatibility with OpenSSL 1.1.1 (so it will _only build with 3.x_).
179+
APIs, but the alternatives to those deprecated APIs do not exist in OpenSSL
180+
1.1.1. So, Node.js 16.x either needs to ship calling deprecated APIs, or
181+
break compatibility with OpenSSL 1.1.1 (so it will _only build with 3.x_).
182182

183183
Tracking issue: <https://github.com/nodejs/node/issues/29817>
184184

@@ -197,7 +197,7 @@ for more information about OpenSSL-compatible libraries.
197197

198198
Shared OpenSSL libraries will lack our floating patches, and may also not be the
199199
latest OpenSSL patch release. Node.js supports being configured to build against
200-
a shared OpenSSL library. Node.js does *not* support the resulting Node.js
200+
a shared OpenSSL library. Node.js does _not_ support the resulting Node.js
201201
binaries built with this non-default configuration, doing so is the
202202
responsibility of the distributor.
203203

@@ -241,7 +241,7 @@ Currently, there are three supported versions of OpenSSL as per the
241241
* Version 1.1.0: supported until 2019-09-11, not a LTS release line
242242
* Version 1.1.1: supported until 2023-09-11, designated Long-term Support (LTS)
243243
* Version 3.0.0: first release: Q4 2020 (estimated), designation as LTS:
244-
*unknown*
244+
_unknown_
245245

246246
### OpenSSL 1.0.2 and FIPS
247247

@@ -281,7 +281,7 @@ means that Node.js 6.x and 8.x are the only versions of Node.js that currently
281281
support FIPS.
282282

283283
In particular, note that Node.js 10.x, the most recent Node.js LTS release
284-
line, does not and *will not* support FIPS.
284+
line, does not and _will not_ support FIPS.
285285

286286
Aside from some manual configuration that is
287287
required in order to support GYP builds (instead of the Perl-based Configure
@@ -338,7 +338,7 @@ support TLS 1.3, however Node.js' TLS1.3 support requires at least OpenSSL
338338

339339
The next release of OpenSSL will be 3.0.0. It is skipping 2.0 because that
340340
version has been used for OpenSSL FIPS. It is a major re-architecting, and while
341-
it is expected to be API compatible with OpenSSL 1.1.1, it is *not* expected to
341+
it is expected to be API compatible with OpenSSL 1.1.1, it is _not_ expected to
342342
be ABI compatible, re-compilation will be necessary to upgrade from OpenSSL
343343
1.1.1 to 3.0.0.
344344

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ responsibilities as defined below.
1515

1616
### Node.js Core
1717

18-
*Node.js Core* is defined as the contents of the repository located at
18+
_Node.js Core_ is defined as the contents of the repository located at
1919
<https://github.com/nodejs/node> from which the `node` executable and associated
2020
packages are built, excluding the vendored projects included in the codebase
2121
located in the [deps][] and [tools][] directories that are copied in from

Security-Team.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ These non-TSC and TSC Emeriti also have access:
5454
* [vdeturckheim](https://github.com/vdeturckheim) - **Vladimir de Turckheim**
5555
* [@watson](https://github.com/watson) - **Thomas Watson**
5656

57-
List is from the [member page](https://hackerone.com/nodejs/team\_members) for
57+
List is from the [member page](https://hackerone.com/nodejs/team_members) for
5858
the Node.js program on HackerOne.
5959

6060
## Team with access to private security patches to Node.js

WORKING_GROUPS.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Once formed the work defined in the Working Group charter is the
88
responsibility of the WG rather than the TSC.
99

1010
It is important that Working Groups are not formed pre-maturely. Working
11-
Groups are not formed to *begin* a set of tasks but instead are formed
11+
Groups are not formed to _begin_ a set of tasks but instead are formed
1212
once that work is already underway and the contributors
1313
think it would benefit from being done as an autonomous project.
1414

@@ -27,8 +27,8 @@ the working group's repository.
2727
## Starting A Core Working Group
2828

2929
A Working Group is established by first defining a charter that can be
30-
ratified by the TSC. A charter is a *statement of purpose*, a
31-
*list of responsibilities* and a *list of initial membership*.
30+
ratified by the TSC. A charter is a _statement of purpose_, a
31+
_list of responsibilities_ and a _list of initial membership_.
3232

3333
A working group needs 3 initial members. These should be individuals
3434
already undertaking the work described in the charter.
@@ -439,7 +439,7 @@ Responsibilities include:
439439
GitHub organization including but not limited to:
440440
* Managing the list of organization owners which supplement the standard
441441
Node.js organization owners as outlined in:
442-
[https://github.com/nodejs/admin/blob/master/GITHUB_ORG_MANAGEMENT_POLICY.md#owners](https://github.com/nodejs/admin/blob/master/GITHUB_ORG_MANAGEMENT_POLICY.md#owners)
442+
<https://github.com/nodejs/admin/blob/master/GITHUB_ORG_MANAGEMENT_POLICY.md#owners>
443443
* Overseeing new repositories (creating, moving, removing)
444444
* Managing the maintainer teams for all of the repositories.
445445
* Contribution policy for repositories

0 commit comments

Comments
 (0)