postman-runtime 7.36.1 → 7.36.3
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 +18 -0
- package/README.md +8 -1
- package/dist/index.js +1 -1
- package/lib/runner/extensions/event.command.js +12 -26
- package/lib/runner/extensions/item.command.js +1 -1
- package/lib/runner/extensions/request.command.js +40 -13
- package/lib/runner/extensions/waterfall.command.js +4 -0
- package/lib/runner/util.js +73 -1
- package/package.json +4 -4
package/CHANGELOG.yaml
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
7.36.3:
|
|
2
|
+
date: 2024-02-01
|
|
3
|
+
fixed bugs:
|
|
4
|
+
- >-
|
|
5
|
+
GH-1374 Fixed a bug where execution.skipRequest listeners were not getting
|
|
6
|
+
garbage collected
|
|
7
|
+
- >-
|
|
8
|
+
Fixed a bug where vault variables were not getting resolved for request
|
|
9
|
+
URL without protocol
|
|
10
|
+
|
|
11
|
+
7.36.2:
|
|
12
|
+
date: 2024-01-19
|
|
13
|
+
chores:
|
|
14
|
+
- >-
|
|
15
|
+
GH-1362 Added an argument to item callback to identify if the item
|
|
16
|
+
execution was skipped
|
|
17
|
+
- GH-1368 Added support for domain property in vault variables
|
|
18
|
+
|
|
1
19
|
7.36.1:
|
|
2
20
|
date: 2023-12-20
|
|
3
21
|
chores:
|
package/README.md
CHANGED
|
@@ -252,7 +252,7 @@ runner.run(collection, { /* options */ }, function(err, run) {
|
|
|
252
252
|
},
|
|
253
253
|
|
|
254
254
|
// Called after completion of an Item
|
|
255
|
-
item: function (err, cursor, item, visualizer) {
|
|
255
|
+
item: function (err, cursor, item, visualizer, result) {
|
|
256
256
|
// err, cursor, item: Same as arguments for "beforeItem"
|
|
257
257
|
|
|
258
258
|
// visualizer: null or object containing visualizer result that looks like this:
|
|
@@ -266,6 +266,13 @@ runner.run(collection, { /* options */ }, function(err, run) {
|
|
|
266
266
|
// -- Processed template
|
|
267
267
|
// processedTemplate: <String>
|
|
268
268
|
// }
|
|
269
|
+
|
|
270
|
+
// result: undefined or object containing following properties
|
|
271
|
+
// {
|
|
272
|
+
// -- True for items skipped using pm.execution.skipRequest
|
|
273
|
+
// isSkipped: <Boolean>
|
|
274
|
+
// }
|
|
275
|
+
|
|
269
276
|
},
|
|
270
277
|
|
|
271
278
|
// Called before running pre-request script(s) (Yes, Runtime supports multiple pre-request scripts!)
|