Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

### Features

- Add Proguard artifact endpoint for Android builds in sentry-server ([#100](https://github.com/getsentry/github-workflows/pull/100))

### Security

- Updater - Prevent script injection vulnerabilities through workflow inputs ([#98](https://github.com/getsentry/github-workflows/pull/98))
Expand Down
2 changes: 2 additions & 0 deletions sentry-cli/integration-test/sentry-server.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ def do_POST(self):
self.writeJSON('{ }')
elif self.isApi('api/0/organizations/{}/chunk-upload/'.format(apiOrg)):
self.writeJSON('{ }')
elif self.isApi('/api/0/projects/{}/{}/files/proguard-artifact-releases/'.format(apiOrg, apiProject)):
self.writeJSON('{ }')
elif self.isApi('api/0/envelope'):
sys.stdout.write(" envelope start\n")
sys.stdout.write(self.body)
Expand Down
Loading