| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent b6cc5d7 commit ccfd9d9
8 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -741,7 +741,7 @@ Refs: | |||
| 741 | 741 | [Visual Studio 2022 (17.13 or newer)](https://visualstudio.microsoft.com/downloads/) | |
| 742 | 742 | or the "C++ build tools" workload from the | |
| 743 | 743 | [Build Tools](https://aka.ms/vs/17/release/vs_buildtools.exe), | |
| 744 | - with the default optional components. Starting with Node.js v24, ClangCL is required to compile | ||
| 744 | + with the default optional components. As of Node.js 24.0.0, ClangCL is required to compile | ||
| 745 | 745 | on Windows. To enable it, two additional components are needed: | |
| 746 | 746 | * C++ Clang Compiler for Windows (Microsoft.VisualStudio.Component.VC.Llvm.Clang) | |
| 747 | 747 | * 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 | |
|---|---|---|---|
@@ -3868,7 +3868,7 @@ removed: v15.0.0 | |||
| 3868 | 3868 | --> | |
| 3869 | 3869 | ||
| 3870 | 3870 | This error code was replaced by [`ERR_MISSING_TRANSFERABLE_IN_TRANSFER_LIST`][] | |
| 3871 | - in Node.js v15.0.0, because it is no longer accurate as other types of | ||
| 3871 | + in Node.js 15.0.0, because it is no longer accurate as other types of | ||
| 3872 | 3872 | transferable objects also exist now. | |
| 3873 | 3873 | ||
| 3874 | 3874 | <a id="ERR_MISSING_TRANSFERABLE_IN_TRANSFER_LIST"></a> | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -4249,7 +4249,7 @@ When a new value is assigned, different platforms will impose different maximum | |||
| 4249 | 4249 | length restrictions on the title. Usually such restrictions are quite limited. | |
| 4250 | 4250 | For instance, on Linux and macOS, `process.title` is limited to the size of the | |
| 4251 | 4251 | binary name plus the length of the command-line arguments because setting the | |
| 4252 | - `process.title` overwrites the `argv` memory of the process. Node.js v0.8 | ||
| 4252 | + `process.title` overwrites the `argv` memory of the process. Node.js 0.8 | ||
| 4253 | 4253 | allowed for longer process title strings by also overwriting the `environ` | |
| 4254 | 4254 | memory but that was potentially insecure and confusing in some (rather obscure) | |
| 4255 | 4255 | cases. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -3452,7 +3452,7 @@ deprecated: v24.2.0 | |||
| 3452 | 3452 | ||
| 3453 | 3453 | > Stability: 0 - Deprecated: Use [`Error.isError`][] instead. | |
| 3454 | 3454 | ||
| 3455 | - **Note:** As of Node.js v24, `Error.isError()` is currently slower than `util.types.isNativeError()`. | ||
| 3455 | + **Note:** As of Node.js 24, `Error.isError()` is currently slower than `util.types.isNativeError()`. | ||
| 3456 | 3456 | If performance is critical, consider benchmarking both in your environment. | |
| 3457 | 3457 | ||
| 3458 | 3458 | * `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