From 477d3cc73dab7cbaf7b2e49199c195881fb29ba3 Mon Sep 17 00:00:00 2001 From: Daniel Szoke Date: Tue, 17 Dec 2024 13:58:15 +0100 Subject: [PATCH] feat(chunks): Declare Proguard chunk upload support Update the `accept` field of the payload returned by the chunk upload endpoint to indicate that the Sentry server supports receiving chunk-uploaded Proguard mappings. Support for receiving chunk-uploaded Proguard mappings was added in [TODO: mention PR here]. --- src/sentry/api/endpoints/chunk.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sentry/api/endpoints/chunk.py b/src/sentry/api/endpoints/chunk.py index e0173ee086e215..f8e1c275f05037 100644 --- a/src/sentry/api/endpoints/chunk.py +++ b/src/sentry/api/endpoints/chunk.py @@ -36,6 +36,7 @@ "portablepdbs", # Portable PDB debug file "artifact_bundles", # Artifact Bundles for JavaScript Source Maps "artifact_bundles_v2", # The `assemble` endpoint will check for missing chunks + "proguard", # Chunk-uploaded proguard mappings )