Merge pull request #27246 from overleaf/jpa-hotfix-5-5-3

[server-pro] add hotfix 5.5.3

GitOrigin-RevId: 6bd266afb8f5ba622224b6095204ee6801c05a44
This commit is contained in:
Brian Gough
2025-07-29 14:46:33 +01:00
committed by Copybot
parent 7f8a423104
commit ae180fba46
14 changed files with 6674 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
#!/bin/bash
for PR in "$@"; do
gh pr diff "$PR" --patch \
| node -e 'const blob = require("fs").readFileSync("/dev/stdin", "utf-8"); console.log(blob.replace(/From [\s\S]+?\d+ files? changed,.+/g, ""))' \
> "pr_$PR.patch"
done