Skip to content

Commit 0ee6d58

Browse files
authored
Fix(sentry-server): Add Proguard artifact endpoint for Android builds (#100)
1 parent b379f7d commit 0ee6d58

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
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))

sentry-cli/integration-test/sentry-server.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)