From 37fdf34ea265416d672d5990bcbe0b9817a97e97 Mon Sep 17 00:00:00 2001 From: Alex Sohn Date: Wed, 17 Sep 2025 16:20:36 -0400 Subject: [PATCH 1/2] Add Proguard artifact endpoint for Android builds --- sentry-cli/integration-test/sentry-server.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sentry-cli/integration-test/sentry-server.py b/sentry-cli/integration-test/sentry-server.py index 2e418ac9..58d8dce6 100644 --- a/sentry-cli/integration-test/sentry-server.py +++ b/sentry-cli/integration-test/sentry-server.py @@ -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) From 0d89a303a0b64a89d4d8eb6c433d87356ae3912a Mon Sep 17 00:00:00 2001 From: Alex Sohn Date: Wed, 17 Sep 2025 16:28:41 -0400 Subject: [PATCH 2/2] update changelog.md --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 83ed5ef7..3ad3522a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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))