postman-runtime 7.26.8 → 7.28.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,34 @@
1
+ 7.28.0:
2
+ date: 2021-04-11
3
+ new features:
4
+ - GH-1143 Updated history object to include request and response headers
5
+ chores:
6
+ - Updated dependencies
7
+
8
+ 7.27.0:
9
+ date: 2021-03-24
10
+ new features:
11
+ - >-
12
+ GH-1130 Added support to disable TLSv1.3 in tlsDisabledProtocols protocol
13
+ profile behavior
14
+ - >-
15
+ GH-1128 Added `systemHeaders` requester option to add default system
16
+ headers
17
+ - GH-1139 Added support for request body mutation via prerequest scripts
18
+ chores:
19
+ - Updated dependencies
20
+
21
+ 7.26.10:
22
+ date: 2021-01-03
23
+ chores:
24
+ - GH-1113 Updated browser requester to accept cookie jar
25
+ - Updated dependencies
26
+
27
+ 7.26.9:
28
+ date: 2020-12-15
29
+ chores:
30
+ - GH-1110 Updated browser requester to accept custom agentClass
31
+
1
32
  7.26.8:
2
33
  date: 2020-10-21
3
34
  chores:
package/README.md CHANGED
@@ -122,6 +122,9 @@ runner.run(collection, {
122
122
  // Implicitly add `Postman-Token` system header in request (only supported on Node, ignored in the browser)
123
123
  implicitTraceHeader: true,
124
124
 
125
+ // Add system headers to all requests which cannot be overridden or disabled
126
+ systemHeaders: { 'User-Agent': 'PostmanRuntime' }
127
+
125
128
  // 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)
126
129
  extendedRootCA: 'path/to/extra/CA/certs.pem',
127
130