Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: move stability index after history section for consistency #56997

Merged
merged 1 commit into from
Feb 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions doc/api/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -590,14 +590,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
Expand Down Expand Up @@ -800,19 +800,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:
Expand All @@ -823,6 +821,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`,
Expand Down
4 changes: 2 additions & 2 deletions doc/api/inspector.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
4 changes: 2 additions & 2 deletions doc/api/url.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
10 changes: 4 additions & 6 deletions doc/api/util.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -384,6 +382,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
Expand Down Expand Up @@ -1725,14 +1725,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.
Expand Down Expand Up @@ -1926,8 +1926,6 @@ console.log(util.stripVTControlCharacters('\u001B[4mvalue\u001B[0m'));

## `util.styleText(format, text[, options])`

> Stability: 2 - Stable.

<!-- YAML
added:
- v21.7.0
Expand Down
Loading