Skip to content

doc: update stability status for diagnostics_channel to experimental #58261

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

Merged
merged 3 commits into from
May 13, 2025
Merged
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
22 changes: 16 additions & 6 deletions doc/api/diagnostics_channel.md
Original file line number Diff line number Diff line change
Expand Up @@ -1103,14 +1103,10 @@ for the sync error and one for the async error.

### Built-in Channels

> Stability: 1 - Experimental

While the diagnostics\_channel API is now considered stable, the built-in
channels currently available are not. Each channel must be declared stable
independently.

Comment on lines -1106 to -1111
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was initially unsure whether this part should be removed, but after seeing the CI fail due to a duplicate stability status inherited from the parent (https://github.com/nodejs/node/actions/runs/14946879215/job/41993454082?pr=58261), it seems that it needs to be taken out.

#### Console

> Stability: 1 - Experimental

`console.log`

* `args` {any\[]}
Expand Down Expand Up @@ -1148,6 +1144,8 @@ passed to `console.error()`.

#### HTTP

> Stability: 1 - Experimental

`http.client.request.created`

* `request` {http.ClientRequest}
Expand Down Expand Up @@ -1203,6 +1201,8 @@ Emitted when server sends a response.

#### HTTP/2

> Stability: 1 - Experimental

`http2.client.stream.created`

* `stream` {ClientHttp2Stream}
Expand All @@ -1212,6 +1212,8 @@ Emitted when a stream is created on the client.

#### Modules

> Stability: 1 - Experimental

`module.require.start`

* `event` {Object} containing the following properties
Expand Down Expand Up @@ -1264,6 +1266,8 @@ Emitted when a `import()` throws an error. See [`error` event][].

#### NET

> Stability: 1 - Experimental

`net.client.socket`

* `socket` {net.Socket}
Expand Down Expand Up @@ -1298,6 +1302,8 @@ Emitted when [`net.Server.listen()`][] is returning an error.

#### UDP

> Stability: 1 - Experimental

`udp.socket`

* `socket` {dgram.Socket}
Expand All @@ -1306,6 +1312,8 @@ Emitted when a new UDP socket is created.

#### Process

> Stability: 1 - Experimental

<!-- YAML
added: v16.18.0
-->
Expand All @@ -1326,6 +1334,8 @@ Emitted when [`process.execve()`][] is invoked.

#### Worker Thread

> Stability: 1 - Experimental

<!-- YAML
added: v16.18.0
-->
Expand Down
Loading