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

Update socket.io and uuid packages #7793

Merged
merged 8 commits into from
Jan 1, 2023
Merged
Prev Previous commit
Next Next commit
Update express to latest in 4.x line, fix tests
  • Loading branch information
sulkaharo committed Dec 31, 2022
commit b9321bead49baf55b867a0b74053662f99dc3683
2 changes: 1 addition & 1 deletion lib/client/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1033,7 +1033,7 @@ client.load = function load (serverSettings, callback) {
// Client-side code to connect to server and handle incoming data
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/* global io */
client.socket = socket = io({ transports: ["polling"] });
client.socket = socket = io.connect({ transports: ["polling"] });

socket.on('dataUpdate', dataUpdate);

Expand Down
2 changes: 1 addition & 1 deletion 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
Expand Up @@ -92,7 +92,7 @@
"errorhandler": "^1.5.1",
"event-stream": "3.3.4",
"expose-loader": "^2.0.0",
"express": "^4.17.1",
"express": "^4.18.2",
"express-minify": "^1.0.0",
"fast-password-entropy": "^1.1.1",
"file-loader": "^6.2.0",
Expand Down