Skip to content

Commit 8930eba

Browse files
committed
assert: change status of legacy asserts
Previously marked deprecated, but these are unlikely to ever see breaking changes or complete removal. Mark as legacy instead. Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: #38113 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
1 parent 15b8e6b commit 8930eba

File tree

1 file changed

+20
-4
lines changed

1 file changed

+20
-4
lines changed

doc/api/assert.md

+20-4
Original file line numberDiff line numberDiff line change
@@ -455,6 +455,10 @@ An alias of [`assert.ok()`][].
455455
<!-- YAML
456456
added: v0.1.21
457457
changes:
458+
- version: REPLACEME
459+
pr-url: https://github.com/nodejs/node/pull/38113
460+
description: In Legacy assertion mode, changed status from Deprecated to
461+
Legacy.
458462
- version: v14.0.0
459463
pr-url: https://github.com/nodejs/node/pull/30766
460464
description: NaN is now treated as being identical in case both sides are
@@ -496,7 +500,7 @@ An alias of [`assert.deepStrictEqual()`][].
496500

497501
**Legacy assertion mode**
498502

499-
> Stability: 0 - Deprecated: Use [`assert.deepStrictEqual()`][] instead.
503+
> Stability: 3 - Legacy: Use [`assert.deepStrictEqual()`][] instead.
500504
501505
Tests for deep equality between the `actual` and `expected` parameters. Consider
502506
using [`assert.deepStrictEqual()`][] instead. [`assert.deepEqual()`][] can have
@@ -1122,6 +1126,10 @@ assert.doesNotThrow(
11221126
<!-- YAML
11231127
added: v0.1.21
11241128
changes:
1129+
- version: REPLACEME
1130+
pr-url: https://github.com/nodejs/node/pull/38113
1131+
description: In Legacy assertion mode, changed status from Deprecated to
1132+
Legacy.
11251133
- version: v14.0.0
11261134
pr-url: https://github.com/nodejs/node/pull/30766
11271135
description: NaN is now treated as being identical in case both sides are
@@ -1138,7 +1146,7 @@ An alias of [`assert.strictEqual()`][].
11381146

11391147
**Legacy assertion mode**
11401148

1141-
> Stability: 0 - Deprecated: Use [`assert.strictEqual()`][] instead.
1149+
> Stability: 3 - Legacy: Use [`assert.strictEqual()`][] instead.
11421150
11431151
Tests shallow, coercive equality between the `actual` and `expected` parameters
11441152
using the [Abstract Equality Comparison][] ( `==` ). `NaN` is special handled
@@ -1446,6 +1454,10 @@ instance of an [`Error`][] then it will be thrown instead of the
14461454
<!-- YAML
14471455
added: v0.1.21
14481456
changes:
1457+
- version: REPLACEME
1458+
pr-url: https://github.com/nodejs/node/pull/38113
1459+
description: In Legacy assertion mode, changed status from Deprecated to
1460+
Legacy.
14491461
- version: v14.0.0
14501462
pr-url: https://github.com/nodejs/node/pull/30766
14511463
description: NaN is now treated as being identical in case both sides are
@@ -1483,7 +1495,7 @@ An alias of [`assert.notDeepStrictEqual()`][].
14831495

14841496
**Legacy assertion mode**
14851497

1486-
> Stability: 0 - Deprecated: Use [`assert.notDeepStrictEqual()`][] instead.
1498+
> Stability: 3 - Legacy: Use [`assert.notDeepStrictEqual()`][] instead.
14871499
14881500
Tests for any deep inequality. Opposite of [`assert.deepEqual()`][].
14891501

@@ -1622,6 +1634,10 @@ instead of the [`AssertionError`][].
16221634
<!-- YAML
16231635
added: v0.1.21
16241636
changes:
1637+
- version: REPLACEME
1638+
pr-url: https://github.com/nodejs/node/pull/38113
1639+
description: In Legacy assertion mode, changed status from Deprecated to
1640+
Legacy.
16251641
- version: v14.0.0
16261642
pr-url: https://github.com/nodejs/node/pull/30766
16271643
description: NaN is now treated as being identical in case both sides are
@@ -1638,7 +1654,7 @@ An alias of [`assert.notStrictEqual()`][].
16381654

16391655
**Legacy assertion mode**
16401656

1641-
> Stability: 0 - Deprecated: Use [`assert.notStrictEqual()`][] instead.
1657+
> Stability: 3 - Legacy: Use [`assert.notStrictEqual()`][] instead.
16421658
16431659
Tests shallow, coercive inequality with the [Abstract Equality Comparison][]
16441660
(`!=` ). `NaN` is special handled and treated as being identical in case both

0 commit comments

Comments
 (0)