postman-runtime 7.40.0 → 7.41.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.yaml +19 -0
- package/README.md +3 -0
- package/dist/index.js +1 -1
- package/lib/requester/core.js +5 -1
- package/lib/requester/requester-pool.js +1 -0
- package/lib/requester/requester.js +3 -2
- package/lib/runner/extensions/event.command.js +12 -3
- package/lib/runner/extensions/item.command.js +6 -4
- package/package.json +11 -11
package/CHANGELOG.yaml
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
7.41.1:
|
|
2
|
+
date: 2024-08-06
|
|
3
|
+
chores:
|
|
4
|
+
- Updated dependencies
|
|
5
|
+
|
|
6
|
+
7.41.0:
|
|
7
|
+
date: 2024-08-01
|
|
8
|
+
new features:
|
|
9
|
+
- GH-1427 Added support for HTTP/2. Configurable via `protocolVersion`
|
|
10
|
+
- GH-1412 Added support for `pm.vault` in scripts
|
|
11
|
+
fixed bugs:
|
|
12
|
+
- >-
|
|
13
|
+
GH-1433 Fixed a bug where errors from `pm.sendRequest` were not
|
|
14
|
+
transmitted correctly
|
|
15
|
+
- GH-1437 Bailed out from executing empty scripts
|
|
16
|
+
chores:
|
|
17
|
+
- GH-1426 Added variable to track the downloaded content size in response
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
|
|
1
20
|
7.40.0:
|
|
2
21
|
date: 2024-06-19
|
|
3
22
|
new features:
|
package/README.md
CHANGED
|
@@ -94,6 +94,9 @@ runner.run(collection, {
|
|
|
94
94
|
// Maximum allowed response size in bytes (only supported on Node, ignored in the browser)
|
|
95
95
|
maxResponseSize: 1000000,
|
|
96
96
|
|
|
97
|
+
// HTTP Protocol version to use. Valid options are http1, http2, and auto (only supported on Node, ignored in the browser)
|
|
98
|
+
protocolVersion: 'http1',
|
|
99
|
+
|
|
97
100
|
// Enable to use WHATWG URL parser and encoder
|
|
98
101
|
useWhatWGUrlParser: true,
|
|
99
102
|
|