Skip to content

Commit

Permalink
fix: bump versions of fast-xml-parser and proxy-agent (#1006)
Browse files Browse the repository at this point in the history
* fix: bump versions of fast-xml-parser and proxy-agent

* chore: deps

---------

Co-authored-by: mshanemc <shane.mclaughlin@salesforce.com>
  • Loading branch information
shetzel and mshanemc authored Jun 12, 2023
1 parent 22b54a9 commit cf67f0d
Show file tree
Hide file tree
Showing 3 changed files with 137 additions and 356 deletions.
17 changes: 8 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,23 +25,22 @@
"node": ">=16.0.0"
},
"dependencies": {
"@salesforce/core": "^4.1.2",
"@salesforce/kit": "^3.0.2",
"@salesforce/ts-types": "^2.0.2",
"@salesforce/core": "^4.2.2",
"@salesforce/kit": "^3.0.3",
"@salesforce/ts-types": "^2.0.3",
"fast-levenshtein": "^3.0.0",
"fast-xml-parser": "^4.2.2",
"fast-xml-parser": "^4.2.4",
"got": "^11.8.6",
"graceful-fs": "^4.2.11",
"ignore": "^5.2.4",
"jszip": "^3.10.1",
"mime": "2.6.0",
"minimatch": "^5.1.6",
"proxy-agent": "^5.0.0",
"proxy-from-env": "^1.1.0",
"proxy-agent": "^6.2.1",
"unzipper": "0.10.14"
},
"devDependencies": {
"@salesforce/cli-plugins-testkit": "^4.0.1",
"@salesforce/cli-plugins-testkit": "^4.1.1",
"@salesforce/dev-config": "^4.0.1",
"@salesforce/dev-scripts": "^5.4.2",
"@salesforce/prettier-config": "^0.0.3",
Expand Down Expand Up @@ -69,7 +68,7 @@
"eslint-plugin-jsdoc": "^44.2.7",
"eslint-plugin-sf-plugin": "^1.15.6",
"husky": "^7.0.4",
"jsforce": "^2.0.0-beta.23",
"jsforce": "^2.0.0-beta.24",
"mocha": "^9.2.2",
"mocha-junit-reporter": "^1.23.3",
"nyc": "^15.1.0",
Expand Down Expand Up @@ -192,4 +191,4 @@
"output": []
}
}
}
}
5 changes: 2 additions & 3 deletions src/registry/coverage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,15 @@

import { OptionsOfTextResponseBody } from 'got';
import got from 'got';
import * as ProxyAgent from 'proxy-agent';
import { getProxyForUrl } from 'proxy-from-env';
import { ProxyAgent } from 'proxy-agent';
import { CoverageObject } from '../../src/registry/types';

const getProxiedOptions = (url: string): OptionsOfTextResponseBody => ({
timeout: {
request: 10000,
},
agent: {
https: ProxyAgent(getProxyForUrl(url)),
https: new ProxyAgent(),
},
url,
});
Expand Down
Loading

0 comments on commit cf67f0d

Please sign in to comment.