-
Notifications
You must be signed in to change notification settings - Fork 3
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: bump formidable from 2.1.1 to 3.2.4 in /app #3195
Conversation
c6dd43e
to
f1462dc
Compare
3706127
to
254564f
Compare
app/backend/lib/gis-upload.ts
Outdated
@@ -76,22 +75,25 @@ | |||
if (!isRoleAuthorized) { | |||
return res.status(404).end(); | |||
} | |||
const form = new formidable.IncomingForm({ maxFileSize: 8000000 }); | |||
|
|||
const form = formidable({ maxFileSize: 8000000 }); |
Check failure
Code scanning / SonarCloud
File uploads should be restricted
app/backend/lib/claims-upload.ts
Outdated
@@ -24,15 +24,18 @@ | |||
} | |||
|
|||
const errorList = []; | |||
const form = new formidable.IncomingForm({ maxFileSize: 8000000 }); | |||
const form = formidable({ maxFileSize: 8000000 }); |
Check failure
Code scanning / SonarCloud
File uploads should be restricted
app/backend/lib/sow-upload.ts
Outdated
@@ -28,15 +28,17 @@ | |||
} | |||
|
|||
const errorList = []; | |||
const form = new formidable.IncomingForm({ maxFileSize: 8000000 }); | |||
const form = formidable({ maxFileSize: 8000000 }); |
Check failure
Code scanning / SonarCloud
File uploads should be restricted
app/backend/lib/milestone-upload.ts
Outdated
@@ -24,15 +24,18 @@ | |||
} | |||
|
|||
const errorList = []; | |||
const form = new formidable.IncomingForm({ maxFileSize: 8000000 }); | |||
const form = formidable({ maxFileSize: 8000000 }); |
Check failure
Code scanning / SonarCloud
File uploads should be restricted
app/backend/lib/template-upload.ts
Outdated
@@ -28,15 +28,17 @@ | |||
} | |||
|
|||
const errorList = []; | |||
const form = new formidable.IncomingForm({ maxFileSize: 8000000 }); | |||
const form = formidable({ maxFileSize: 8000000 }); |
Check failure
Code scanning / SonarCloud
File uploads should be restricted
@@ -22,15 +22,17 @@ | |||
} | |||
|
|||
const errorList = []; | |||
const form = new formidable.IncomingForm({ maxFileSize: 8000000 }); | |||
const form = formidable({ maxFileSize: 8000000 }); |
Check failure
Code scanning / SonarCloud
File uploads should be restricted
254564f
to
143c9b9
Compare
07bc11d
to
4cefa6e
Compare
4cefa6e
to
029cd34
Compare
Bumps [formidable](https://github.com/node-formidable/formidable) from 2.1.1 to 3.2.4. - [Release notes](https://github.com/node-formidable/formidable/releases) - [Changelog](https://github.com/node-formidable/formidable/blob/master/CHANGELOG.md) - [Commits](https://github.com/node-formidable/formidable/commits/v3.2.4) --- updated-dependencies: - dependency-name: formidable dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
029cd34
to
9dbd617
Compare
OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting If you change your mind, just re-open this PR and I'll resolve any conflicts on it. |
Bumps formidable from 2.1.1 to 3.2.4.
Release notes
Sourced from formidable's releases.
Changelog
Sourced from formidable's changelog.
... (truncated)
Commits
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)You can disable automated security fix PRs for this repo from the Security Alerts page.