Merge pull request #2416 from caprover/agent/fix-large-webhook-payloads

Allow larger webhook payloads
This commit is contained in:
Kasra Bigdeli
2026-07-16 21:40:49 -07:00
committed by GitHub
3 changed files with 8 additions and 1 deletions
+1
View File
@@ -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
View File
@@ -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) {