postman-runtime 7.49.1 → 7.51.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 +12 -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/lib/requester/requester.js +10 -1
- package/package.json +4 -4
package/CHANGELOG.yaml
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
7.51.0:
|
|
2
|
+
date: 2025-12-11
|
|
3
|
+
new features:
|
|
4
|
+
- GH-1537 Handle request errors from postman-request with attached response
|
|
5
|
+
chores:
|
|
6
|
+
- Updated dependencies
|
|
7
|
+
|
|
8
|
+
7.50.0:
|
|
9
|
+
date: 2025-11-06
|
|
10
|
+
new features:
|
|
11
|
+
- GH-1534 Add support for disabling cookie jar via requester options
|
|
12
|
+
|
|
1
13
|
7.49.1:
|
|
2
14
|
date: 2025-10-30
|
|
3
15
|
chores:
|
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
|
|