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 CHANGED
@@ -1,3 +1,13 @@
1
+ 7.50.0:
2
+ date: 2025-11-06
3
+ new features:
4
+ - GH-1534 Add support for disabling cookie jar via requester options
5
+
6
+ 7.49.1:
7
+ date: 2025-10-30
8
+ chores:
9
+ - Updated dependencies
10
+
1
11
  7.49.0:
2
12
  date: 2025-10-16
3
13
  new features:
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