summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/api/async_hooks.md2
-rw-r--r--doc/api/deprecations.md2
-rw-r--r--doc/api/esm.md2
-rw-r--r--doc/api/http2.md2
-rw-r--r--doc/api/inspector.md2
-rw-r--r--doc/api/intl.md2
-rw-r--r--doc/api/n-api.md2
-rw-r--r--doc/api/perf_hooks.md5
-rw-r--r--doc/api/tracing.md2
9 files changed, 17 insertions, 4 deletions
diff --git a/doc/api/async_hooks.md b/doc/api/async_hooks.md
index bc90b16837..4135282081 100644
--- a/doc/api/async_hooks.md
+++ b/doc/api/async_hooks.md
@@ -1,5 +1,7 @@
# Async Hooks
+<!--introduced_in=v8.1.0-->
+
> Stability: 1 - Experimental
The `async_hooks` module provides an API to register callbacks tracking the
diff --git a/doc/api/deprecations.md b/doc/api/deprecations.md
index 9e386b1bd9..8a01b22c47 100644
--- a/doc/api/deprecations.md
+++ b/doc/api/deprecations.md
@@ -1,5 +1,7 @@
# Deprecated APIs
+<!--introduced_in=v7.7.0-->
+
Node.js may deprecate APIs when either: (a) use of the API is considered to be
unsafe, (b) an improved alternative API has been made available, or (c)
breaking changes to the API are expected in a future major release.
diff --git a/doc/api/esm.md b/doc/api/esm.md
index d8143da378..c33badf3af 100644
--- a/doc/api/esm.md
+++ b/doc/api/esm.md
@@ -1,6 +1,6 @@
# ECMAScript Modules
-<!--introduced_in=v9.x.x-->
+<!--introduced_in=v8.5.0-->
> Stability: 1 - Experimental
diff --git a/doc/api/http2.md b/doc/api/http2.md
index dad14d5ce3..c1000661a9 100644
--- a/doc/api/http2.md
+++ b/doc/api/http2.md
@@ -1,5 +1,7 @@
# HTTP2
+<!--introduced_in=v8.4.0-->
+
> Stability: 1 - Experimental
The `http2` module provides an implementation of the [HTTP/2][] protocol. It
diff --git a/doc/api/inspector.md b/doc/api/inspector.md
index 32629af8c2..a3426d4b5d 100644
--- a/doc/api/inspector.md
+++ b/doc/api/inspector.md
@@ -1,5 +1,7 @@
# Inspector
+<!--introduced_in=v8.0.0-->
+
> Stability: 1 - Experimental
The `inspector` module provides an API for interacting with the V8 inspector.
diff --git a/doc/api/intl.md b/doc/api/intl.md
index c7ac7fd2b6..224c00a62f 100644
--- a/doc/api/intl.md
+++ b/doc/api/intl.md
@@ -1,5 +1,7 @@
# Internationalization Support
+<!--introduced_in=v8.2.0-->
+
Node.js has many features that make it easier to write internationalized
programs. Some of them are:
diff --git a/doc/api/n-api.md b/doc/api/n-api.md
index 7852454a92..df9038182f 100644
--- a/doc/api/n-api.md
+++ b/doc/api/n-api.md
@@ -1,5 +1,7 @@
# N-API
+<!--introduced_in=v7.10.0-->
+
> Stability: 1 - Experimental
N-API (pronounced N as in the letter, followed by API)
diff --git a/doc/api/perf_hooks.md b/doc/api/perf_hooks.md
index 09582cea80..08edafe5b7 100644
--- a/doc/api/perf_hooks.md
+++ b/doc/api/perf_hooks.md
@@ -1,7 +1,6 @@
# Performance Timing API
-<!-- YAML
-added: v8.5.0
--->
+
+<!--introduced_in=v8.5.0-->
> Stability: 1 - Experimental
diff --git a/doc/api/tracing.md b/doc/api/tracing.md
index 53c6dac55d..e03477b1ad 100644
--- a/doc/api/tracing.md
+++ b/doc/api/tracing.md
@@ -1,5 +1,7 @@
# Tracing
+<!--introduced_in=v7.7.0-->
+
Trace Event provides a mechanism to centralize tracing information generated by
V8, Node core, and userspace code.