| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 1e0f331 commit e688175
7 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -29,7 +29,8 @@ release. | |||
| 29 | 29 | </tr> | |
| 30 | 30 | <tr> | |
| 31 | 31 | <td valign="top"> | |
| 32 | - <b><a href="doc/changelogs/CHANGELOG_V9.md#9.3.0">9.3.0</a></b><br/> | ||
| 32 | + <b><a href="doc/changelogs/CHANGELOG_V9.md#9.4.0">9.4.0</a></b><br/> | ||
| 33 | + <a href="doc/changelogs/CHANGELOG_V9.md#9.3.0">9.3.0</a><br/> | ||
| 33 | 34 | <a href="doc/changelogs/CHANGELOG_V9.md#9.2.1">9.2.1</a><br/> | |
| 34 | 35 | <a href="doc/changelogs/CHANGELOG_V9.md#9.2.0">9.2.0</a><br/> | |
| 35 | 36 | <a href="doc/changelogs/CHANGELOG_V9.md#9.1.0">9.1.0</a><br/> | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -576,7 +576,7 @@ Returns a reference to the `EventEmitter`, so that calls can be chained. | |||
| 576 | 576 | ||
| 577 | 577 | ### emitter.rawListeners(eventName) | |
| 578 | 578 | <!-- YAML | |
| 579 | - added: REPLACEME | ||
| 579 | + added: v9.4.0 | ||
| 580 | 580 | --> | |
| 581 | 581 | - `eventName` {string|symbol} | |
| 582 | 582 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -734,7 +734,7 @@ changes: | |||
| 734 | 734 | description: The default action of calling `.destroy()` on the `socket` | |
| 735 | 735 | will no longer take place if there are listeners attached | |
| 736 | 736 | for `clientError`. | |
| 737 | - - version: REPLACEME | ||
| 737 | + - version: v9.4.0 | ||
| 738 | 738 | pr-url: https://github.com/nodejs/node/pull/17672 | |
| 739 | 739 | description: The rawPacket is the current buffer that just parsed. Adding | |
| 740 | 740 | this buffer to the error object of clientError event is to make | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -285,7 +285,7 @@ session.on('timeout', () => { /** .. **/ }); | |||
| 285 | 285 | ||
| 286 | 286 | #### http2session.alpnProtocol | |
| 287 | 287 | <!-- YAML | |
| 288 | - added: REPLACEME | ||
| 288 | + added: v9.4.0 | ||
| 289 | 289 | --> | |
| 290 | 290 | ||
| 291 | 291 | * Value: {string|undefined} | |
@@ -297,7 +297,7 @@ property. | |||
| 297 | 297 | ||
| 298 | 298 | #### http2session.close([callback]) | |
| 299 | 299 | <!-- YAML | |
| 300 | - added: REPLACEME | ||
| 300 | + added: v9.4.0 | ||
| 301 | 301 | --> | |
| 302 | 302 | ||
| 303 | 303 | * `callback` {Function} | |
@@ -312,7 +312,7 @@ If specified, the `callback` function is registered as a handler for the | |||
| 312 | 312 | ||
| 313 | 313 | #### http2session.closed | |
| 314 | 314 | <!-- YAML | |
| 315 | - added: REPLACEME | ||
| 315 | + added: v9.4.0 | ||
| 316 | 316 | --> | |
| 317 | 317 | ||
| 318 | 318 | * Value: {boolean} | |
@@ -354,7 +354,7 @@ longer be used, otherwise `false`. | |||
| 354 | 354 | ||
| 355 | 355 | #### http2session.encrypted | |
| 356 | 356 | <!-- YAML | |
| 357 | - added: REPLACEME | ||
| 357 | + added: v9.4.0 | ||
| 358 | 358 | --> | |
| 359 | 359 | ||
| 360 | 360 | * Value: {boolean|undefined} | |
@@ -366,7 +366,7 @@ or stream. | |||
| 366 | 366 | ||
| 367 | 367 | #### http2session.goaway([code, [lastStreamID, [opaqueData]]]) | |
| 368 | 368 | <!-- YAML | |
| 369 | - added: REPLACEME | ||
| 369 | + added: v9.4.0 | ||
| 370 | 370 | --> | |
| 371 | 371 | ||
| 372 | 372 | * `code` {number} An HTTP/2 error code | |
@@ -389,7 +389,7 @@ A prototype-less object describing the current local settings of this | |||
| 389 | 389 | ||
| 390 | 390 | #### http2session.originSet | |
| 391 | 391 | <!-- YAML | |
| 392 | - added: REPLACEME | ||
| 392 | + added: v9.4.0 | ||
| 393 | 393 | --> | |
| 394 | 394 | ||
| 395 | 395 | * Value: {string[]|undefined} | |
@@ -450,7 +450,7 @@ If the `payload` argument is not specified, the default payload will be the | |||
| 450 | 450 | ||
| 451 | 451 | #### http2session.ref() | |
| 452 | 452 | <!-- YAML | |
| 453 | - added: REPLACEME | ||
| 453 | + added: v9.4.0 | ||
| 454 | 454 | --> | |
| 455 | 455 | ||
| 456 | 456 | Calls [`ref()`][`net.Socket.prototype.ref`] on this `Http2Session` | |
@@ -599,7 +599,7 @@ client. | |||
| 599 | 599 | ||
| 600 | 600 | #### http2session.unref() | |
| 601 | 601 | <!-- YAML | |
| 602 | - added: REPLACEME | ||
| 602 | + added: v9.4.0 | ||
| 603 | 603 | --> | |
| 604 | 604 | ||
| 605 | 605 | Calls [`unref()`][`net.Socket.prototype.unref`] on this `Http2Session` | |
@@ -612,7 +612,7 @@ added: v8.4.0 | |||
| 612 | 612 | ||
| 613 | 613 | #### serverhttp2session.altsvc(alt, originOrStream) | |
| 614 | 614 | <!-- YAML | |
| 615 | - added: REPLACEME | ||
| 615 | + added: v9.4.0 | ||
| 616 | 616 | --> | |
| 617 | 617 | ||
| 618 | 618 | * `alt` {string} A description of the alternative service configuration as | |
@@ -683,7 +683,7 @@ added: v8.4.0 | |||
| 683 | 683 | ||
| 684 | 684 | #### Event: 'altsvc' | |
| 685 | 685 | <!-- YAML | |
| 686 | - added: REPLACEME | ||
| 686 | + added: v9.4.0 | ||
| 687 | 687 | --> | |
| 688 | 688 | ||
| 689 | 689 | The `'altsvc'` event is emitted whenever an `ALTSVC` frame is received by | |
@@ -929,7 +929,7 @@ connected HTTP/2 peer. | |||
| 929 | 929 | ||
| 930 | 930 | #### http2stream.closed | |
| 931 | 931 | <!-- YAML | |
| 932 | - added: REPLACEME | ||
| 932 | + added: v9.4.0 | ||
| 933 | 933 | --> | |
| 934 | 934 | ||
| 935 | 935 | * Value: {boolean} | |
@@ -948,7 +948,7 @@ usable. | |||
| 948 | 948 | ||
| 949 | 949 | #### http2stream.pending | |
| 950 | 950 | <!-- YAML | |
| 951 | - added: REPLACEME | ||
| 951 | + added: v9.4.0 | ||
| 952 | 952 | --> | |
| 953 | 953 | ||
| 954 | 954 | * Value: {boolean} | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -446,7 +446,7 @@ Return the value of `highWaterMark` passed when constructing this | |||
| 446 | 446 | ||
| 447 | 447 | ##### writable.writableLength | |
| 448 | 448 | <!-- YAML | |
| 449 | - added: REPLACEME | ||
| 449 | + added: v9.4.0 | ||
| 450 | 450 | --> | |
| 451 | 451 | ||
| 452 | 452 | This property contains the number of bytes (or objects) in the queue | |
@@ -961,7 +961,7 @@ event has been emitted will return `null`. No runtime error will be raised. | |||
| 961 | 961 | ||
| 962 | 962 | ##### readable.readableLength | |
| 963 | 963 | <!-- YAML | |
| 964 | - added: REPLACEME | ||
| 964 | + added: v9.4.0 | ||
| 965 | 965 | --> | |
| 966 | 966 | ||
| 967 | 967 | This property contains the number of bytes (or objects) in the queue | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -286,7 +286,7 @@ Compression strategy. | |||
| 286 | 286 | <!-- YAML | |
| 287 | 287 | added: v0.11.1 | |
| 288 | 288 | changes: | |
| 289 | - - version: REPLACEME | ||
| 289 | + - version: v9.4.0 | ||
| 290 | 290 | pr-url: https://github.com/nodejs/node/pull/16042 | |
| 291 | 291 | description: The `dictionary` option can be an ArrayBuffer. | |
| 292 | 292 | - version: v8.0.0 | |
@@ -526,7 +526,7 @@ without a callback. | |||
| 526 | 526 | <!-- YAML | |
| 527 | 527 | added: v0.6.0 | |
| 528 | 528 | changes: | |
| 529 | - - version: REPLACEME | ||
| 529 | + - version: v9.4.0 | ||
| 530 | 530 | pr-url: https://github.com/nodejs/node/pull/16042 | |
| 531 | 531 | description: The `buffer` parameter can be an ArrayBuffer. | |
| 532 | 532 | - version: v8.0.0 | |
@@ -540,7 +540,7 @@ changes: | |||
| 540 | 540 | <!-- YAML | |
| 541 | 541 | added: v0.11.12 | |
| 542 | 542 | changes: | |
| 543 | - - version: REPLACEME | ||
| 543 | + - version: v9.4.0 | ||
| 544 | 544 | pr-url: https://github.com/nodejs/node/pull/16042 | |
| 545 | 545 | description: The `buffer` parameter can be an ArrayBuffer. | |
| 546 | 546 | - version: v8.0.0 | |
@@ -570,7 +570,7 @@ changes: | |||
| 570 | 570 | <!-- YAML | |
| 571 | 571 | added: v0.11.12 | |
| 572 | 572 | changes: | |
| 573 | - - version: REPLACEME | ||
| 573 | + - version: v9.4.0 | ||
| 574 | 574 | pr-url: https://github.com/nodejs/node/pull/16042 | |
| 575 | 575 | description: The `buffer` parameter can be an ArrayBuffer. | |
| 576 | 576 | - version: v8.0.0 | |
@@ -589,7 +589,7 @@ Compress a chunk of data with [DeflateRaw][]. | |||
| 589 | 589 | <!-- YAML | |
| 590 | 590 | added: v0.6.0 | |
| 591 | 591 | changes: | |
| 592 | - - version: REPLACEME | ||
| 592 | + - version: v9.4.0 | ||
| 593 | 593 | pr-url: https://github.com/nodejs/node/pull/16042 | |
| 594 | 594 | description: The `buffer` parameter can be an ArrayBuffer. | |
| 595 | 595 | - version: v8.0.0 | |
@@ -603,7 +603,7 @@ changes: | |||
| 603 | 603 | <!-- YAML | |
| 604 | 604 | added: v0.11.12 | |
| 605 | 605 | changes: | |
| 606 | - - version: REPLACEME | ||
| 606 | + - version: v9.4.0 | ||
| 607 | 607 | pr-url: https://github.com/nodejs/node/pull/16042 | |
| 608 | 608 | description: The `buffer` parameter can be an ArrayBuffer. | |
| 609 | 609 | - version: v8.0.0 | |
@@ -622,7 +622,7 @@ Decompress a chunk of data with [Gunzip][]. | |||
| 622 | 622 | <!-- YAML | |
| 623 | 623 | added: v0.6.0 | |
| 624 | 624 | changes: | |
| 625 | - - version: REPLACEME | ||
| 625 | + - version: v9.4.0 | ||
| 626 | 626 | pr-url: https://github.com/nodejs/node/pull/16042 | |
| 627 | 627 | description: The `buffer` parameter can be an ArrayBuffer. | |
| 628 | 628 | - version: v8.0.0 | |
@@ -636,7 +636,7 @@ changes: | |||
| 636 | 636 | <!-- YAML | |
| 637 | 637 | added: v0.11.12 | |
| 638 | 638 | changes: | |
| 639 | - - version: REPLACEME | ||
| 639 | + - version: v9.4.0 | ||
| 640 | 640 | pr-url: https://github.com/nodejs/node/pull/16042 | |
| 641 | 641 | description: The `buffer` parameter can be an ArrayBuffer. | |
| 642 | 642 | - version: v8.0.0 | |
@@ -655,7 +655,7 @@ Compress a chunk of data with [Gzip][]. | |||
| 655 | 655 | <!-- YAML | |
| 656 | 656 | added: v0.6.0 | |
| 657 | 657 | changes: | |
| 658 | - - version: REPLACEME | ||
| 658 | + - version: v9.4.0 | ||
| 659 | 659 | pr-url: https://github.com/nodejs/node/pull/16042 | |
| 660 | 660 | description: The `buffer` parameter can be an ArrayBuffer. | |
| 661 | 661 | - version: v8.0.0 | |
@@ -669,7 +669,7 @@ changes: | |||
| 669 | 669 | <!-- YAML | |
| 670 | 670 | added: v0.11.12 | |
| 671 | 671 | changes: | |
| 672 | - - version: REPLACEME | ||
| 672 | + - version: v9.4.0 | ||
| 673 | 673 | pr-url: https://github.com/nodejs/node/pull/16042 | |
| 674 | 674 | description: The `buffer` parameter can be an ArrayBuffer. | |
| 675 | 675 | - version: v8.0.0 | |
@@ -688,7 +688,7 @@ Decompress a chunk of data with [Inflate][]. | |||
| 688 | 688 | <!-- YAML | |
| 689 | 689 | added: v0.6.0 | |
| 690 | 690 | changes: | |
| 691 | - - version: REPLACEME | ||
| 691 | + - version: v9.4.0 | ||
| 692 | 692 | pr-url: https://github.com/nodejs/node/pull/16042 | |
| 693 | 693 | description: The `buffer` parameter can be an ArrayBuffer. | |
| 694 | 694 | - version: v8.0.0 | |
@@ -702,7 +702,7 @@ changes: | |||
| 702 | 702 | <!-- YAML | |
| 703 | 703 | added: v0.11.12 | |
| 704 | 704 | changes: | |
| 705 | - - version: REPLACEME | ||
| 705 | + - version: v9.4.0 | ||
| 706 | 706 | pr-url: https://github.com/nodejs/node/pull/16042 | |
| 707 | 707 | description: The `buffer` parameter can be an ArrayBuffer. | |
| 708 | 708 | - version: v8.0.0 | |
@@ -721,7 +721,7 @@ Decompress a chunk of data with [InflateRaw][]. | |||
| 721 | 721 | <!-- YAML | |
| 722 | 722 | added: v0.6.0 | |
| 723 | 723 | changes: | |
| 724 | - - version: REPLACEME | ||
| 724 | + - version: v9.4.0 | ||
| 725 | 725 | pr-url: https://github.com/nodejs/node/pull/16042 | |
| 726 | 726 | description: The `buffer` parameter can be an ArrayBuffer. | |
| 727 | 727 | - version: v8.0.0 | |
@@ -735,7 +735,7 @@ changes: | |||
| 735 | 735 | <!-- YAML | |
| 736 | 736 | added: v0.11.12 | |
| 737 | 737 | changes: | |
| 738 | - - version: REPLACEME | ||
| 738 | + - version: v9.4.0 | ||
| 739 | 739 | pr-url: https://github.com/nodejs/node/pull/16042 | |
| 740 | 740 | description: The `buffer` parameter can be an ArrayBuffer. | |
| 741 | 741 | - version: v8.0.0 | |
| Back | FazBrowse Home | New Git URL |
0 commit comments