doc: move stability index after history section for consistency

PR-URL: https://github.com/nodejs/node/pull/56997
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
This commit is contained in:
Antoine du Hamel 2025-02-12 19:25:09 +01:00 committed by GitHub
parent 85f5a6cc1e
commit 25b4a5d2fe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 14 additions and 16 deletions

View File

@ -592,14 +592,14 @@ Disable the ability of starting a debugging session by sending a
### `--disable-warning=code-or-type`
> Stability: 1.1 - Active development
<!-- YAML
added:
- v21.3.0
- v20.11.0
-->
> Stability: 1.1 - Active development
Disable specific process warnings by `code` or `type`.
Warnings emitted from [`process.emitWarning()`][emit_warning] may contain a
@ -802,19 +802,17 @@ node --entry-url 'data:text/javascript,console.log("Hello")'
### `--env-file-if-exists=config`
> Stability: 1.1 - Active development
<!-- YAML
added: v22.9.0
-->
> Stability: 1.1 - Active development
Behavior is the same as [`--env-file`][], but an error is not thrown if the file
does not exist.
### `--env-file=config`
> Stability: 1.1 - Active development
<!-- YAML
added: v20.6.0
changes:
@ -825,6 +823,8 @@ changes:
description: Add support to multi-line values.
-->
> Stability: 1.1 - Active development
Loads environment variables from a file relative to the current directory,
making them available to applications on `process.env`. The [environment
variables which configure Node.js][environment_variables], such as `NODE_OPTIONS`,

View File

@ -31,12 +31,12 @@ const inspector = require('node:inspector');
## Promises API
> Stability: 1 - Experimental
<!-- YAML
added: v19.0.0
-->
> Stability: 1 - Experimental
### Class: `inspector.Session`
* Extends: {EventEmitter}

View File

@ -716,12 +716,12 @@ if `input` is not a valid.
### Class: `URLPattern`
> Stability: 1 - Experimental
<!-- YAML
added: REPLACEME
-->
> Stability: 1 - Experimental
The `URLPattern` API provides an interface to match URLs or parts of URLs
against a pattern.

View File

@ -366,8 +366,6 @@ util.formatWithOptions({ colors: true }, 'See object %O', { foo: 42 });
## `util.getCallSites(frameCountOrOptions, [options])`
> Stability: 1.1 - Active development
<!-- YAML
added: v22.9.0
changes:
@ -388,6 +386,8 @@ changes:
description: The API is renamed from `util.getCallSite` to `util.getCallSites()`.
-->
> Stability: 1.1 - Active development
* `frameCount` {number} Optional number of frames to capture as call site objects.
**Default:** `10`. Allowable range is between 1 and 200.
* `options` {Object} Optional
@ -1729,14 +1729,14 @@ $ node negate.js --no-logfile --logfile=test.log --color --no-color
## `util.parseEnv(content)`
> Stability: 1.1 - Active development
<!-- YAML
added:
- v21.7.0
- v20.12.0
-->
> Stability: 1.1 - Active development
* `content` {string}
The raw contents of a `.env` file.
@ -1930,8 +1930,6 @@ console.log(util.stripVTControlCharacters('\u001B[4mvalue\u001B[0m'));
## `util.styleText(format, text[, options])`
> Stability: 2 - Stable.
<!-- YAML
added:
- v21.7.0