File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
sentry-cli/integration-test Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 22
33## Unreleased
44
5+ ### Features
6+
7+ - Add Proguard artifact endpoint for Android builds in sentry-server ([ #100 ] ( https://github.com/getsentry/github-workflows/pull/100 ) )
8+
59### Security
610
711- Updater - Prevent script injection vulnerabilities through workflow inputs ([ #98 ] ( https://github.com/getsentry/github-workflows/pull/98 ) )
Original file line number Diff line number Diff line change @@ -93,6 +93,8 @@ def do_POST(self):
9393 self .writeJSON ('{ }' )
9494 elif self .isApi ('api/0/organizations/{}/chunk-upload/' .format (apiOrg )):
9595 self .writeJSON ('{ }' )
96+ elif self .isApi ('/api/0/projects/{}/{}/files/proguard-artifact-releases/' .format (apiOrg , apiProject )):
97+ self .writeJSON ('{ }' )
9698 elif self .isApi ('api/0/envelope' ):
9799 sys .stdout .write (" envelope start\n " )
98100 sys .stdout .write (self .body )
You can’t perform that action at this time.
0 commit comments