-
Notifications
You must be signed in to change notification settings - Fork 11.7k
Chore: refactor/tsc-perf
#26040
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: refactor/tsc-perf
#26040
Conversation
1eb54e1
to
d98b590
Compare
@@ -104,7 +104,7 @@ | |||
publicKeyString: session.publicKeyString, | |||
}); | |||
} catch (e) { | |||
res.status(400).send(e.message); | |||
res.status(400).send(e instanceof Error ? e.message : String(e)); |
Check warning
Code scanning / CodeQL
Exception text reinterpreted as HTML
@@ -124,7 +124,7 @@ | |||
res.send(await session.encrypt(result)); | |||
} catch (e) { | |||
console.error(e); | |||
res.status(400).send(e.message); | |||
res.status(400).send(e instanceof Error ? e.message : String(e)); |
Check warning
Code scanning / CodeQL
Exception text reinterpreted as HTML
@@ -193,7 +193,7 @@ | |||
try { | |||
proxy(req, res, session); | |||
} catch (e) { | |||
res.status(400).send(e.message); | |||
res.status(400).send(e instanceof Error ? e.message : String(e)); |
Check warning
Code scanning / CodeQL
Exception text reinterpreted as HTML
@@ -229,7 +229,7 @@ | |||
try { | |||
proxy(req, res, session, xhrDataRequestProcess, xhrDataResponseProcess); | |||
} catch (e) { | |||
res.status(400).send(e.message); | |||
res.status(400).send(e instanceof Error ? e.message : String(e)); |
Check warning
Code scanning / CodeQL
Exception text reinterpreted as HTML
@@ -245,7 +245,7 @@ | |||
try { | |||
proxy(req, res, session, undefined, xhrDataResponseProcess); | |||
} catch (e) { | |||
res.status(400).send(e.message); | |||
res.status(400).send(e instanceof Error ? e.message : String(e)); |
Check warning
Code scanning / CodeQL
Exception text reinterpreted as HTML
@@ -104,7 +104,7 @@ | |||
publicKeyString: session.publicKeyString, | |||
}); | |||
} catch (e) { | |||
res.status(400).send(e.message); | |||
res.status(400).send(e instanceof Error ? e.message : String(e)); |
Check warning
Code scanning / CodeQL
Information exposure through a stack trace
@@ -124,7 +124,7 @@ | |||
res.send(await session.encrypt(result)); | |||
} catch (e) { | |||
console.error(e); | |||
res.status(400).send(e.message); | |||
res.status(400).send(e instanceof Error ? e.message : String(e)); |
Check warning
Code scanning / CodeQL
Information exposure through a stack trace
@@ -193,7 +193,7 @@ | |||
try { | |||
proxy(req, res, session); | |||
} catch (e) { | |||
res.status(400).send(e.message); | |||
res.status(400).send(e instanceof Error ? e.message : String(e)); |
Check warning
Code scanning / CodeQL
Information exposure through a stack trace
@@ -229,7 +229,7 @@ | |||
try { | |||
proxy(req, res, session, xhrDataRequestProcess, xhrDataResponseProcess); | |||
} catch (e) { | |||
res.status(400).send(e.message); | |||
res.status(400).send(e instanceof Error ? e.message : String(e)); |
Check warning
Code scanning / CodeQL
Information exposure through a stack trace
@@ -245,7 +245,7 @@ | |||
try { | |||
proxy(req, res, session, undefined, xhrDataResponseProcess); | |||
} catch (e) { | |||
res.status(400).send(e.message); | |||
res.status(400).send(e instanceof Error ? e.message : String(e)); |
Check warning
Code scanning / CodeQL
Information exposure through a stack trace
This pull request introduces 5 alerts when merging d98b590 into 26c310c - view on LGTM.com new alerts:
|
d98b590
to
92a8323
Compare
This pull request introduces 5 alerts when merging 92a8323 into 3394c0d - view on LGTM.com new alerts:
|
92a8323
to
a56230e
Compare
This pull request introduces 5 alerts when merging a56230e into 3394c0d - view on LGTM.com new alerts:
|
This pull request introduces 5 alerts when merging cf08a10 into bef0b2d - view on LGTM.com new alerts:
|
cf08a10
to
c321587
Compare
This pull request introduces 5 alerts when merging c321587 into 58e32cf - view on LGTM.com new alerts:
|
This pull request introduces 5 alerts when merging 96c9017 into 0bc25a0 - view on LGTM.com new alerts:
|
This pull request introduces 5 alerts when merging 6d0b620 into 4d99ef0 - view on LGTM.com new alerts:
|
This pull request introduces 5 alerts when merging 2a0e6ae into 4d99ef0 - view on LGTM.com new alerts:
|
This pull request introduces 5 alerts when merging 16894df into 12c1cf6 - view on LGTM.com new alerts:
|
* 'develop' of github.com:RocketChat/Rocket.Chat: (29 commits) Chore: move fork of cas module to the monorepo (#26107) Chore: Add Agenda fork to the monorepo (#25681) Chore: Bump deps (#25624) [NEW][ENTERPRISE] Device Management (#25791) Chore: `refactor/tsc-perf` (#26040) [BREAK] Upgrade to version 5.0 can be done only from version 4.x (#26100) [BREAK] Remove support to old MongoDB versions (#26098) [NEW] Matrix Federation UX improvements (#25847) Regression: en.i18n.json spaces [NEW][ENTERPRISE] Introducing dial pad component into sidebar, calls table, contextual bar (#26081) Chore: Settings UI issue (#26053) Chore: Adding default message parser template (#26064) Regression: [VideoConference] If the caller loses connection, direct calls are never canceled (#26099) Chore: Handle errors on index creation (#26094) Chore: fix watermark condition (#26095) [FIX] Validate room access (#24534) [BREAK] VideoConference (#25570) [FIX] Undefined headers on API Client (#26083) Regression: Add Error boundary to katex render component (#26067) Chore: Allow endpoints to optionally require authentication (#26084) ...
Proposed changes (including videos or screenshots)
Issue(s)
Steps to test or reproduce
Further comments