postman-runtime 7.48.0 → 7.49.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 +7 -0
- package/README.md +5 -2
- package/dist/index.js +1 -1
- package/lib/requester/core.js +2 -0
- package/lib/requester/requester-pool.js +2 -1
- package/package.json +2 -2
package/CHANGELOG.yaml
CHANGED
package/README.md
CHANGED
|
@@ -165,7 +165,10 @@ runner.run(collection, {
|
|
|
165
165
|
|
|
166
166
|
// The max depth or number of requests a request can invoke via `pm.execution.runRequest`
|
|
167
167
|
// in its pre-request and post-response scripts
|
|
168
|
-
maxInvokableNestedRequests: 5
|
|
168
|
+
maxInvokableNestedRequests: 5,
|
|
169
|
+
|
|
170
|
+
// Enable logging SSL session keys (only supported on Node, ignored in the browser)
|
|
171
|
+
sslKeyLogFile: '/path/to/keylogfile',
|
|
169
172
|
},
|
|
170
173
|
|
|
171
174
|
// Options specific to the script execution
|
|
@@ -234,7 +237,7 @@ runner.run(collection, {
|
|
|
234
237
|
|
|
235
238
|
// *note* Not implemented yet.
|
|
236
239
|
// In the future, this will be used to read certificates from the OS keychain.
|
|
237
|
-
systemCertificate: function() {}
|
|
240
|
+
systemCertificate: function() {},
|
|
238
241
|
}, function (err, run) {
|
|
239
242
|
console.log('Created a new Run!');
|
|
240
243
|
|