Skip to content

Commit

Permalink
Merge branch 'develop' into fix_readme_table
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolozCh authored Apr 5, 2022
2 parents 0ae4cf5 + a5018ec commit aa9dac8
Show file tree
Hide file tree
Showing 6 changed files with 346 additions and 494 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
5.3.2:
date: 2022-03-03
fixed bugs:
- Allow the process to exit naturally in CLI mode
chores:
- Updated dependencies

5.3.1:
date: 2022-01-10
chores:
- Updated dependencies

5.3.0:
date: 2021-09-07
new features:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,7 @@ $ newman run file-upload.postman_collection.json

## Using Newman with the Postman API

1 [Generate an API key](https://app.getpostman.com/dashboard/integrations)<br/>
1 [Generate an API key](https://learning.postman.com/docs/developer/intro-api/#generating-a-postman-api-key)<br/>
2 Fetch a list of your collections from: `https://api.getpostman.com/collections?apikey=$apiKey`<br/>
3 Get the collection link via it's `uid`: `https://api.getpostman.com/collections/$uid?apikey=$apiKey`<br/>
4 Obtain the environment URI from: `https://api.getpostman.com/environments?apikey=$apiKey`<br/>
Expand Down
2 changes: 1 addition & 1 deletion bin/newman.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ program
console.error(`error: ${err.message || err}\n`);
err.friendly && console.error(` ${err.friendly}\n`);
}
runError && !_.get(options, 'suppressExitCode') && process.exit(1);
runError && !_.get(options, 'suppressExitCode') && (process.exitCode = 1);
});
});

Expand Down
2 changes: 1 addition & 1 deletion docker/images/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:10-alpine
FROM node:16-alpine
LABEL maintainer="Postman Labs <help@postman.com>"

ARG NEWMAN_VERSION
Expand Down
Loading

0 comments on commit aa9dac8

Please sign in to comment.