Skip to content

Commit

Permalink
chore(release): 4.5.0 (#929)
Browse files Browse the repository at this point in the history
* Chore(deps): Bump elliptic from 6.5.3 to 6.5.4 (#917)
* Chore(deps): Bump y18n from 3.2.1 to 3.2.2 (#919)
* Track time it takes to get a response from DevX API (#875)
* Fix: javascript injection (#925)
  • Loading branch information
thewahome authored Apr 13, 2021
1 parent bc65ddf commit 5368580
Show file tree
Hide file tree
Showing 19 changed files with 333 additions and 230 deletions.
168 changes: 49 additions & 119 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graph-explorer-v2",
"version": "4.4.2",
"version": "4.5.0",
"private": true,
"dependencies": {
"@babel/core": "7.12.13",
Expand Down
4 changes: 2 additions & 2 deletions scripts/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ checkBrowsers(paths.appPath, isInteractive)
openBrowser(urls.localUrlForBrowser);
});

['SIGINT', 'SIGTERM'].forEach(function(sig) {
process.on(sig, function() {
['SIGINT', 'SIGTERM'].forEach(function (sig) {
process.on(sig, function () {
devServer.close();
process.exit();
});
Expand Down
4 changes: 3 additions & 1 deletion src/app/services/actions/permissions-action-creator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,14 @@ export function fetchScopes(query?: IQuery): Function {
}
throw (response);
} catch (error) {
const errorMessage = error instanceof Response ?
`ApiError: ${error.status}` : `${error}`;
telemetry.trackException(
new Error(errorTypes.NETWORK_ERROR),
SeverityLevel.Error,
{
ComponentName: componentNames.FETCH_PERMISSIONS_ACTION,
Message: `${error}`
Message: errorMessage
});
return dispatch(fetchScopesError(error));
}
Expand Down
Loading

0 comments on commit 5368580

Please sign in to comment.