postman-runtime 7.49.0 → 7.50.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 +10 -0
- package/README.md +3 -0
- package/dist/index.js +1 -1
- package/lib/requester/core.js +5 -2
- package/lib/requester/dry-run.js +5 -1
- package/lib/requester/requester-pool.js +1 -0
- package/package.json +3 -3
package/CHANGELOG.yaml
CHANGED
package/README.md
CHANGED
|
@@ -85,6 +85,9 @@ runner.run(collection, {
|
|
|
85
85
|
// jar.allowProgrammaticAccess = function (domain) { return domain === 'postman-echo.com'; };
|
|
86
86
|
cookieJar: jar,
|
|
87
87
|
|
|
88
|
+
// Prevents cookie jar from being used for in a request
|
|
89
|
+
disableCookies: false,
|
|
90
|
+
|
|
88
91
|
// Controls redirect behavior (only supported on Node, ignored in the browser)
|
|
89
92
|
followRedirects: true,
|
|
90
93
|
|