Skip to content

Commit

Permalink
chore(release): set package.json to 1.0.1 [skip ci]
Browse files Browse the repository at this point in the history
## [1.0.1](v1.0.0...v1.0.1) (2021-09-30)

### Bug Fixes

* remove handling of NO_PROXY ([#3](#3)) ([2803e44](2803e44))
  • Loading branch information
semantic-release-bot committed Sep 30, 2021
1 parent 2803e44 commit bb5dde7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.0.1](https://github.com/Safe-Security/praxios/compare/v1.0.0...v1.0.1) (2021-09-30)


### Bug Fixes

* remove handling of NO_PROXY ([#3](https://github.com/Safe-Security/praxios/issues/3)) ([2803e44](https://github.com/Safe-Security/praxios/commit/2803e44eb1bd2115688171f135765bfb4921f685))

# 1.0.0 (2021-09-29)


Expand Down
3 changes: 1 addition & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var axios_1 = require("axios");
exports.baseAxios = axios_1.default;
var tunnel = require("tunnel");
exports.tunnel = tunnel;
var _a = process.env, PROXY_HOST = _a.PROXY_HOST, PROXY_PORT = _a.PROXY_PORT, PROXY_USERNAME = _a.PROXY_USERNAME, PROXY_PASSWORD = _a.PROXY_PASSWORD, NO_PROXY = _a.NO_PROXY;
var _a = process.env, PROXY_HOST = _a.PROXY_HOST, PROXY_PORT = _a.PROXY_PORT, PROXY_USERNAME = _a.PROXY_USERNAME, PROXY_PASSWORD = _a.PROXY_PASSWORD;
var isProxyDefined = function () {
return PROXY_HOST !== undefined && PROXY_PORT !== undefined;
};
Expand All @@ -21,7 +21,6 @@ if (isProxyDefined()) {
proxy: {
host: PROXY_HOST,
port: Number(PROXY_PORT),
localAddress: NO_PROXY,
proxyAuth: getProxyAuth(),
},
});
Expand Down

0 comments on commit bb5dde7

Please sign in to comment.