postman-runtime 7.43.3 → 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 CHANGED
@@ -1,3 +1,13 @@
1
+ 7.44.0:
2
+ date: 2025-05-15
3
+ new features:
4
+ - GH-1511 Add support for configurable maxHeaderSize in HTTP/1 requests
5
+
6
+ 7.43.4:
7
+ date: 2025-04-28
8
+ chores:
9
+ - Updated dependencies
10
+
1
11
  7.43.3:
2
12
  date: 2025-03-27
3
13
  chores:
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',