postman-runtime 7.40.0-beta.1 → 7.41.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,32 @@
1
+ 7.41.0:
2
+ date: 2024-08-01
3
+ new features:
4
+ - GH-1427 Added support for HTTP/2. Configurable via `protocolVersion`
5
+ - GH-1412 Added support for `pm.vault` in scripts
6
+ fixed bugs:
7
+ - >-
8
+ GH-1433 Fixed a bug where errors from `pm.sendRequest` were not
9
+ transmitted correctly
10
+ - GH-1437 Bailed out from executing empty scripts
11
+ chores:
12
+ - GH-1426 Added variable to track the downloaded content size in response
13
+ - Updated dependencies
14
+
15
+ 7.40.0:
16
+ date: 2024-06-19
17
+ new features:
18
+ - GH-1415 Added support for top-level await in scripts
19
+ chores:
20
+ - GH-1415 Updated `postman-sandbox` to v5.0.0
21
+ - GH-1418 Dropped support for Node.js < v16
22
+ - GH-1418 Updated ESLint rules
23
+ - GH-1418 Updated dependencies
24
+
25
+ 7.39.1:
26
+ date: 2024-06-14
27
+ chores:
28
+ - Bumped postman-request dependency
29
+
1
30
  7.39.0:
2
31
  date: 2024-04-17
3
32
  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