postman-runtime 7.31.1 → 7.32.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 +27 -8
- package/dist/index.js +1 -1
- package/lib/authorizer/jwt.js +11 -4
- package/lib/requester/dry-run.js +43 -4
- package/lib/requester/requester.js +14 -2
- package/lib/requester/sse-processor.js +2 -2
- package/lib/runner/extensions/event.command.js +2 -2
- package/lib/runner/request-helpers-presend.js +37 -1
- package/package.json +7 -6
package/CHANGELOG.yaml
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
7.32.0:
|
|
2
|
+
date: 2023-03-31
|
|
3
|
+
new features:
|
|
4
|
+
- GH-1274 Added support for stripping JSON comments in raw body
|
|
5
|
+
fixed bugs:
|
|
6
|
+
- GH-1279 Fixed a bug in JWT where empty header prefix was not handled
|
|
7
|
+
chores:
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
|
|
10
|
+
7.31.3:
|
|
11
|
+
date: 2023-03-10
|
|
12
|
+
fixed bugs:
|
|
13
|
+
- GH-1272 Fixed `content-type` check for detecting SSE stream
|
|
14
|
+
|
|
15
|
+
7.31.2:
|
|
16
|
+
date: 2023-03-10
|
|
17
|
+
chores:
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
|
|
1
20
|
7.31.1:
|
|
2
21
|
date: 2023-02-22
|
|
3
22
|
chores:
|
|
@@ -460,7 +479,7 @@
|
|
|
460
479
|
date: 2019-04-26
|
|
461
480
|
new features:
|
|
462
481
|
- GH-818 Added support for multiple files in form-data body
|
|
463
|
-
- GH-819 Handle CookieStore events on `execution.cookies.${id}`
|
|
482
|
+
- 'GH-819 Handle CookieStore events on `execution.cookies.${id}`'
|
|
464
483
|
chores:
|
|
465
484
|
- GH-815 Allow empty string as variables in GraphQL body
|
|
466
485
|
- Updated dependencies
|
|
@@ -797,7 +816,7 @@
|
|
|
797
816
|
6.4.0:
|
|
798
817
|
date: 2017-09-28
|
|
799
818
|
new features:
|
|
800
|
-
- Improved flows for NTLM, Digest, and OAuth2
|
|
819
|
+
- 'Improved flows for NTLM, Digest, and OAuth2'
|
|
801
820
|
- GH-382 Added script timeout option
|
|
802
821
|
- GH-408 Prevented max replay errors from bubling up
|
|
803
822
|
- GH-386 Added support for bearer-token auth
|
|
@@ -835,7 +854,7 @@
|
|
|
835
854
|
`request` event
|
|
836
855
|
- GH-337 Prevented headers with falsy keys from being sent with requests
|
|
837
856
|
chores:
|
|
838
|
-
- GH-353,354 Bumped Collection SDK to `v2.1.1` and Sandbox to `v2.3.1`
|
|
857
|
+
- 'GH-353,354 Bumped Collection SDK to `v2.1.1` and Sandbox to `v2.3.1`'
|
|
839
858
|
- GH-342 Expanded documentation for the `assertion` event
|
|
840
859
|
- GH-327 Ensured that the `tunnel` value is set from the request protocol
|
|
841
860
|
- Updated dependencies
|
|
@@ -866,7 +885,7 @@
|
|
|
866
885
|
- >-
|
|
867
886
|
GH-298 Bumped Postman Sandbox to v2.3.0, which includes support for
|
|
868
887
|
synchronous csv-parse
|
|
869
|
-
- GH-297 Bumped Postman Collection SDK to v1.2.9, with critical bugfixes
|
|
888
|
+
- 'GH-297 Bumped Postman Collection SDK to v1.2.9, with critical bugfixes'
|
|
870
889
|
- Updated other dependencies
|
|
871
890
|
|
|
872
891
|
6.2.1:
|
|
@@ -899,7 +918,7 @@
|
|
|
899
918
|
// }
|
|
900
919
|
}
|
|
901
920
|
chores:
|
|
902
|
-
- Updated dependencies, pruned lodash3
|
|
921
|
+
- 'Updated dependencies, pruned lodash3'
|
|
903
922
|
- GH-281 Used updated Sandbox with momentjs included
|
|
904
923
|
|
|
905
924
|
6.1.6:
|
|
@@ -1306,7 +1325,7 @@
|
|
|
1306
1325
|
2.4.0:
|
|
1307
1326
|
date: 2016-08-12
|
|
1308
1327
|
new features:
|
|
1309
|
-
- Changes to the Node script sandbox, SugarJS now works correctly.
|
|
1328
|
+
- 'Changes to the Node script sandbox, SugarJS now works correctly.'
|
|
1310
1329
|
- Ensure that `getResponseCookie` is case-insensitive always
|
|
1311
1330
|
- >-
|
|
1312
1331
|
Check to ensure that Runtime does not crash if the path for file uploads
|
|
@@ -1372,8 +1391,8 @@
|
|
|
1372
1391
|
2.2.1:
|
|
1373
1392
|
date: 2016-07-21
|
|
1374
1393
|
fixed bugs:
|
|
1375
|
-
- Allow setting of duplicate headers (same name, but different value)
|
|
1376
|
-
- Do not send a request body if the body type is set, but it is empty
|
|
1394
|
+
- 'Allow setting of duplicate headers (same name, but different value)'
|
|
1395
|
+
- 'Do not send a request body if the body type is set, but it is empty'
|
|
1377
1396
|
|
|
1378
1397
|
2.2.0:
|
|
1379
1398
|
date: 2016-07-19
|