postman-runtime 7.43.4 → 7.44.0
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 +5 -0
- package/README.md +4 -1
- package/dist/index.js +1 -1
- package/lib/requester/core.js +3 -0
- package/lib/requester/requester-pool.js +2 -1
- package/package.json +1 -1
package/CHANGELOG.yaml
CHANGED
package/README.md
CHANGED
|
@@ -97,6 +97,9 @@ runner.run(collection, {
|
|
|
97
97
|
// Maximum allowed response size in bytes (only supported on Node, ignored in the browser)
|
|
98
98
|
maxResponseSize: 1000000,
|
|
99
99
|
|
|
100
|
+
// Maximum allowed header size in bytes (only supported on Node HTTP/1, ignored in the browser and when using HTTP/2)
|
|
101
|
+
maxHeaderSize: 1000000,
|
|
102
|
+
|
|
100
103
|
// HTTP Protocol version to use. Valid options are http1, http2, and auto (only supported on Node, ignored in the browser)
|
|
101
104
|
protocolVersion: 'http1',
|
|
102
105
|
|
|
@@ -125,7 +128,7 @@ runner.run(collection, {
|
|
|
125
128
|
implicitTraceHeader: true,
|
|
126
129
|
|
|
127
130
|
// Add system headers to all requests which cannot be overridden or disabled
|
|
128
|
-
systemHeaders: { 'User-Agent': 'PostmanRuntime' }
|
|
131
|
+
systemHeaders: { 'User-Agent': 'PostmanRuntime' },
|
|
129
132
|
|
|
130
133
|
// Extend well known "root" CAs with the extra certificates in file. The file should consist of one or more trusted certificates in PEM format. (only supported on Node, ignored in the browser)
|
|
131
134
|
extendedRootCA: 'path/to/extra/CA/certs.pem',
|