Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore/dep updates #1155

Open
wants to merge 17 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
91ee157
Bump dot-prop from 4.2.0 to 4.2.1 in /api (#1147)
dependabot[bot] Mar 13, 2021
0fe9182
Bump react-dev-utils from 9.0.1 to 11.0.4 in /app (#1154)
dependabot[bot] Mar 13, 2021
512f4d6
Bump elliptic from 6.5.0 to 6.5.4 in /app (#1153)
dependabot[bot] Mar 13, 2021
15c8838
Bump ini from 1.3.5 to 1.3.7 in /app (#1146)
dependabot[bot] Mar 13, 2021
59aaa24
Bump ini from 1.3.5 to 1.3.7 in /api (#1145)
dependabot[bot] Mar 13, 2021
12b7549
Bump highlight.js from 9.18.1 to 9.18.5 in /api (#1141)
dependabot[bot] Mar 13, 2021
005ff09
Bump node-fetch from 2.6.0 to 2.6.1 in /api (#1125)
dependabot[bot] Mar 13, 2021
48fe5d4
Bump http-proxy from 1.17.0 to 1.18.1 in /app (#1123)
dependabot[bot] Mar 13, 2021
dd5dda1
Bump lodash from 4.17.15 to 4.17.20 in /api (#1114)
dependabot[bot] Mar 13, 2021
68dc10c
Bump markdown-to-jsx from 6.10.2 to 6.11.4 in /app (#1111)
dependabot[bot] Mar 13, 2021
140fd53
Bump express-fileupload from 1.1.6 to 1.1.9 in /api (#1095)
dependabot[bot] Mar 13, 2021
6993f0c
Bump lodash from 4.17.15 to 4.17.19 in /app (#1074)
dependabot[bot] Mar 13, 2021
3389353
Bump websocket-extensions from 0.1.3 to 0.1.4 in /app (#1055)
dependabot[bot] Mar 13, 2021
87f3f82
Bump acorn from 5.7.3 to 5.7.4 in /app (#1052)
dependabot[bot] Mar 13, 2021
bb1edc9
Update dependencies and fix build error
andrewbiang888 Mar 15, 2021
4484539
Bump y18n from 4.0.0 to 4.0.1 in /api (#1156)
dependabot[bot] Apr 6, 2021
40cbbd5
Bump highlight.js from 9.18.1 to 9.18.5 in /api (#1158)
dependabot[bot] Apr 8, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api/controller/users.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export async function login(request: IRequest, response: Response, next: Functio
response.cookie('token', token, { expires: new Date(tokenObj.exp), domain} );
return response.status(204).json({});
} catch (err) {
console.log(err); // debug
if (process.env.NODE_ENV === 'production') {
bugsnagClient.notify(err);
}
Expand Down
83 changes: 30 additions & 53 deletions api/package-lock.json

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

4 changes: 2 additions & 2 deletions api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@
"dateformat": "^3.0.3",
"debug": "~2.6.9",
"express": "~4.16.0",
"express-fileupload": "1.1.6",
"express-fileupload": "1.1.9",
"express-session": "^1.15.6",
"flash": "^1.1.0",
"http-errors": "~1.6.2",
"ioredis": "^4.9.0",
"json2csv": "^4.5.3",
"jsonwebtoken": "^8.5.1",
"morgan": "~1.9.0",
"node-fetch": "^2.6.0",
"node-fetch": "^2.6.1",
"pg": "^7.9.0",
"pg-hstore": "^2.3.2",
"reflect-metadata": "^0.1.13",
Expand Down
2 changes: 1 addition & 1 deletion app/config/webpackDevServer.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ module.exports = function(proxy, allowedHost) {
// We do this in development to avoid hitting the production cache if
// it used the same host and port.
// https://github.com/facebook/create-react-app/issues/2272#issuecomment-302832432
app.use(noopServiceWorkerMiddleware());
app.use(noopServiceWorkerMiddleware('/'));
},
};
};
4 changes: 2 additions & 2 deletions app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"jest-resolve": "24.7.1",
"jest-watch-typeahead": "0.3.0",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.15",
"lodash": "^4.17.19",
"material-table": "1.67.1",
"mini-css-extract-plugin": "0.5.0",
"normalizr": "^3.3.0",
Expand All @@ -78,7 +78,7 @@
"react": "^16.8.6",
"react-app-polyfill": "^1.0.1",
"react-cookie": "^4.0.3",
"react-dev-utils": "^9.0.1",
"react-dev-utils": "^11.0.4",
"react-dom": "^16.8.6",
"react-number-format": "^4.2.0",
"react-redux": "^6.0.1",
Expand Down
Loading