| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 4a88ed0 commit fc9c906
8 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -661,7 +661,7 @@ Refs: | |||
| 661 | 661 | [Visual Studio 2022 (17.6 or newer)](https://visualstudio.microsoft.com/downloads/) | |
| 662 | 662 | or the "C++ build tools" workload from the | |
| 663 | 663 | [Build Tools](https://aka.ms/vs/17/release/vs_buildtools.exe), | |
| 664 | - with the default optional components. Starting with Node.js v24, ClangCL is required to compile | ||
| 664 | + with the default optional components. As of Node.js 24.0.0, ClangCL is required to compile | ||
| 665 | 665 | on Windows. To enable it, two additional components are needed: | |
| 666 | 666 | * C++ Clang Compiler for Windows (Microsoft.VisualStudio.Component.VC.Llvm.Clang) | |
| 667 | 667 | * MSBuild support for LLVM toolset (Microsoft.VisualStudio.Component.VC.Llvm.ClangToolset) | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -6013,7 +6013,7 @@ binary data. As such, many `crypto` classes have methods not | |||
| 6013 | 6013 | typically found on other Node.js classes that implement the [streams][stream] | |
| 6014 | 6014 | API (e.g. `update()`, `final()`, or `digest()`). Also, many methods accepted | |
| 6015 | 6015 | and returned `'latin1'` encoded strings by default rather than `Buffer`s. This | |
| 6016 | - default was changed after Node.js v0.8 to use [`Buffer`][] objects by default | ||
| 6016 | + default was changed in Node.js 0.9.3 to use [`Buffer`][] objects by default | ||
| 6017 | 6017 | instead. | |
| 6018 | 6018 | ||
| 6019 | 6019 | ### Support for weak or compromised algorithms | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -273,7 +273,7 @@ in Node.js 6.0 because the method defaulted to using the non-recommended | |||
| 273 | 273 | Node.js 8.0.0, calling `crypto.pbkdf2()` or `crypto.pbkdf2Sync()` with | |
| 274 | 274 | `digest` set to `undefined` will throw a `TypeError`. | |
| 275 | 275 | ||
| 276 | - Beginning in Node.js v11.0.0, calling these functions with `digest` set to | ||
| 276 | + Beginning in Node.js 11.0.0, calling these functions with `digest` set to | ||
| 277 | 277 | `null` would print a deprecation warning to align with the behavior when `digest` | |
| 278 | 278 | is `undefined`. | |
| 279 | 279 | ||
@@ -509,7 +509,7 @@ changes: | |||
| 509 | 509 | ||
| 510 | 510 | Type: End-of-Life | |
| 511 | 511 | ||
| 512 | - The `Server.connections` property was deprecated in Node.js v0.9.7 and has | ||
| 512 | + The `Server.connections` property was deprecated in Node.js 0.9.7 and has | ||
| 513 | 513 | been removed. Please use the [`Server.getConnections()`][] method instead. | |
| 514 | 514 | ||
| 515 | 515 | ### DEP0021: `Server.listenFD` | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -3864,7 +3864,7 @@ removed: v15.0.0 | |||
| 3864 | 3864 | --> | |
| 3865 | 3865 | ||
| 3866 | 3866 | This error code was replaced by [`ERR_MISSING_TRANSFERABLE_IN_TRANSFER_LIST`][] | |
| 3867 | - in Node.js v15.0.0, because it is no longer accurate as other types of | ||
| 3867 | + in Node.js 15.0.0, because it is no longer accurate as other types of | ||
| 3868 | 3868 | transferable objects also exist now. | |
| 3869 | 3869 | ||
| 3870 | 3870 | <a id="ERR_MISSING_TRANSFERABLE_IN_TRANSFER_LIST"></a> | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -4330,7 +4330,7 @@ When a new value is assigned, different platforms will impose different maximum | |||
| 4330 | 4330 | length restrictions on the title. Usually such restrictions are quite limited. | |
| 4331 | 4331 | For instance, on Linux and macOS, `process.title` is limited to the size of the | |
| 4332 | 4332 | binary name plus the length of the command-line arguments because setting the | |
| 4333 | - `process.title` overwrites the `argv` memory of the process. Node.js v0.8 | ||
| 4333 | + `process.title` overwrites the `argv` memory of the process. Node.js 0.8 | ||
| 4334 | 4334 | allowed for longer process title strings by also overwriting the `environ` | |
| 4335 | 4335 | memory but that was potentially insecure and confusing in some (rather obscure) | |
| 4336 | 4336 | cases. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -3391,7 +3391,7 @@ deprecated: v24.2.0 | |||
| 3391 | 3391 | ||
| 3392 | 3392 | > Stability: 0 - Deprecated: Use [`Error.isError`][] instead. | |
| 3393 | 3393 | ||
| 3394 | - **Note:** As of Node.js v24, `Error.isError()` is currently slower than `util.types.isNativeError()`. | ||
| 3394 | + **Note:** As of Node.js 24, `Error.isError()` is currently slower than `util.types.isNativeError()`. | ||
| 3395 | 3395 | If performance is critical, consider benchmarking both in your environment. | |
| 3396 | 3396 | ||
| 3397 | 3397 | * `value` {any} | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -28,4 +28,4 @@ that doing so is not a breaking change. | |||
| 28 | 28 | ||
| 29 | 29 | ## History | |
| 30 | 30 | ||
| 31 | - * [corepack](https://github.com/nodejs/corepack) was added in Node.js v14.9.0 and v16.9.0. It is no longer distributed as of Node.js v25.0.0. | ||
| 31 | + * [corepack](https://github.com/nodejs/corepack) was added in Node.js 14.9.0 and 16.9.0. It is no longer distributed as of Node.js 25.0.0. | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -19,7 +19,7 @@ Both V8 and Node.js use ICU to provide internationalization functionality. | |||
| 19 | 19 | ||
| 20 | 20 | Note: | |
| 21 | 21 | ||
| 22 | - > The files in this directory were written for the Node.js v0.12 effort. | ||
| 22 | + > The files in this directory were written for the Node.js 0.12 effort. | ||
| 23 | 23 | > The original intent was to merge the tools such as `icutrim.py` and `iculslocs.cc` | |
| 24 | 24 | > back into ICU. ICU has gained its own “data slicer” tool. | |
| 25 | 25 | > There is an issue open, <https://github.com/nodejs/node/issues/25136> | |
| Back | FazBrowse Home | New Git URL |
0 commit comments