mirror of
https://github.com/caprover/caprover
synced 2026-08-24 16:36:29 +00:00
Merge pull request #2416 from caprover/agent/fix-large-webhook-payloads
Allow larger webhook payloads
This commit is contained in:
@@ -8,6 +8,7 @@
|
||||
- Improved: Descriptive error on installations on incompatible systems (e.g. Proxmox LXC) [issues-2326](https://github.com/caprover/caprover/issues/2326)
|
||||
- Improved: Moved one click app creation process to backend for more stability [PR-2334](https://github.com/caprover/caprover/pull/2334)
|
||||
- Improved: Reduced the Backup size by excluding the GoAccess logs [PR-2336](https://github.com/caprover/caprover/pull/2336)
|
||||
- Fixed: Git webhook deployments failing when webhook payloads exceed 100 KB [Issue-1393](https://github.com/caprover/caprover/issues/1393)
|
||||
|
||||
## [1.14.2] - 2026-05-14
|
||||
|
||||
|
||||
+6
-1
@@ -43,10 +43,15 @@ app.use(
|
||||
},
|
||||
})
|
||||
)
|
||||
app.use(bodyParser.json())
|
||||
app.use(
|
||||
bodyParser.json({
|
||||
limit: '2mb',
|
||||
})
|
||||
)
|
||||
app.use(
|
||||
bodyParser.urlencoded({
|
||||
extended: false,
|
||||
limit: '2mb',
|
||||
})
|
||||
)
|
||||
app.use(cookieParser())
|
||||
|
||||
@@ -9,6 +9,7 @@ const router = express.Router()
|
||||
|
||||
const urlencodedParser = bodyParser.urlencoded({
|
||||
extended: true,
|
||||
limit: '2mb',
|
||||
})
|
||||
|
||||
function getPushedBranches(req: express.Request) {
|
||||
|
||||
Reference in New Issue
Block a user