postman-runtime 7.37.3 → 7.39.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 +17 -0
- package/dist/index.js +1 -1
- package/lib/authorizer/digest.js +19 -0
- package/lib/authorizer/edgegrid.js +34 -6
- package/lib/authorizer/ntlm.js +19 -8
- package/lib/runner/create-item-context.js +2 -2
- package/lib/runner/extensions/http-request.command.js +11 -3
- package/lib/runner/extensions/request.command.js +1 -81
- package/lib/runner/replay-controller.js +3 -0
- package/lib/runner/request-helpers-presend.js +6 -2
- package/lib/runner/util.js +84 -0
- package/package.json +3 -3
package/CHANGELOG.yaml
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
7.39.0:
|
|
2
|
+
date: 2024-04-17
|
|
3
|
+
new features:
|
|
4
|
+
- GH-1399 Added support for max body size in EdgeGrid auth
|
|
5
|
+
fixed bugs:
|
|
6
|
+
- >-
|
|
7
|
+
GH-1400 Fixed a bug where NTLM auth state was not handled correctly when
|
|
8
|
+
configured at folder or collection level
|
|
9
|
+
- >-
|
|
10
|
+
GH-1403 Fixed a bug where Digest Auth nonce count value was not updated
|
|
11
|
+
for successive requests
|
|
12
|
+
|
|
13
|
+
7.38.0:
|
|
14
|
+
date: 2024-04-03
|
|
15
|
+
new features:
|
|
16
|
+
- GH-1401 Deprecated legacy sandbox APIs
|
|
17
|
+
|
|
1
18
|
7.37.3:
|
|
2
19
|
date: 2024-04-03
|
|
3
20
|
chores:
|