Skip to content

Commit 50c1206

Browse files
committed
Merge branch 'feat/cache-tracing-wrappers' into feat/cache-tracing-option
2 parents 5e081fc + 94ae0e1 commit 50c1206

File tree

50 files changed

+3090
-543
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+3090
-543
lines changed

.claude/skills/create-java-pr/SKILL.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ Derive the branch name from the changes being made. Use `feat/`, `fix/`, `ref/`,
3535

3636
**For stacked PRs:** For the first PR in a new stack, first create and push the collection branch (see `.cursor/rules/pr.mdc` § "Creating the Collection Branch"), then branch the PR off it. For subsequent PRs, branch off the previous stack branch. Use the naming conventions from `.cursor/rules/pr.mdc` § "Branch Naming".
3737

38+
**CRITICAL: Never merge, fast-forward, or push commits into the collection branch.** It stays at its initial position until the user merges stack PRs through GitHub. Updating it will auto-merge and destroy the entire PR stack.
39+
3840
## Step 2: Format Code and Regenerate API Files
3941

4042
```bash
@@ -111,14 +113,15 @@ Fill in each section based on the changes being PR'd. Check any checklist items
111113
- Pass `--base <previous-stack-branch>` so the PR targets the previous branch (first PR in a stack targets the collection branch).
112114
- Use the stacked PR title format: `<type>(<scope>): [<Topic> <N>] <Subject>` (see `.cursor/rules/pr.mdc` § "PR Title Naming").
113115
- Include the stack list at the top of the PR body, before the `## :scroll: Description` section (see `.cursor/rules/pr.mdc` § "Stack List in PR Description" for the format).
116+
- Add a merge method reminder at the very end of the PR body (see `.cursor/rules/pr.mdc` § "Stack List in PR Description" for the exact text). This only applies to stack PRs, not the collection branch PR.
114117

115118
Then continue to Step 5.5 (stacked PRs only) or Step 6.
116119

117120
## Step 5.5: Update Stack List on All PRs (stacked PRs only)
118121

119122
Skip this step for standalone PRs.
120123

121-
After creating the PR, update the PR description on **every other PR in the stack** so all PRs have the same up-to-date stack list. Follow the format and commands in `.cursor/rules/pr.mdc` § "Stack List in PR Description".
124+
After creating the PR, update the PR description on **every other PR in the stack — including the collection branch PR** so all PRs have the same up-to-date stack list. Follow the format and commands in `.cursor/rules/pr.mdc` § "Stack List in PR Description".
122125

123126
## Step 6: Update Changelog
124127

.cursor/rules/pr.mdc

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,8 @@ git push -u origin HEAD
185185
gh pr create --base main --draft --title "<type>(<scope>): <Topic>" --body "Collection PR for the <Topic> stack. Squash-merge this once all stack PRs are merged."
186186
```
187187

188+
**CRITICAL: Do NOT manually update the collection branch.** Never merge, fast-forward, or push stack branch commits into the collection branch. The collection branch stays at its initial position (the empty commit on `main`) until the user merges individual stack PRs into it one by one through GitHub. If you fast-forward the collection branch to include stack commits, GitHub will auto-merge and delete all stack PR branches, destroying the entire stack.
189+
188190
### Creating a New Stacked PR
189191

190192
1. Start from the tip of the previous stack branch (or the collection branch for the first PR).
@@ -197,7 +199,7 @@ gh pr create --base main --draft --title "<type>(<scope>): <Topic>" --body "Coll
197199

198200
### Stack List in PR Description
199201

200-
Every PR in the stack must have a stack list **at the top of its description** (before the `## :scroll: Description` section). When a new PR is added, update the description on **all** PRs in the stack.
202+
Every PR in the stack — **including the collection branch PR** — must have a stack list **at the top of its description** (before the `## :scroll: Description` section). When a new PR is added, update the description on **all** PRs in the stack and on the collection branch PR.
201203

202204
Format:
203205

@@ -213,6 +215,14 @@ Format:
213215

214216
No status column — GitHub already shows that. The `---` separates the stack list from the rest of the PR description.
215217

218+
**Merge method reminder:** On stack PRs (not the collection branch PR), add the following line at the very end of the PR description:
219+
220+
```markdown
221+
> ⚠️ **Merge this PR using a merge commit** (not squash). Only the collection branch is squash-merged into main.
222+
```
223+
224+
This does not apply to standalone PRs or the collection branch PR.
225+
216226
To update the PR description, use `--body-file` to avoid shell quoting issues with special characters in the body:
217227

218228
```bash
@@ -237,12 +247,12 @@ Once all stack PRs are merged into the collection branch, the collection PR is *
237247

238248
### Syncing the Stack
239249

240-
When a base PR changes (e.g. after addressing review feedback on PR 1), merge the changes forward through the stack:
250+
When a base PR changes (e.g. after addressing review feedback on PR 1), merge the changes forward through the stack **between adjacent stack PR branches only**:
241251

242252
```bash
243253
# On the branch for PR 2
244254
git checkout feat/scope-attributes-logger
245-
git merge feat/scope-attributes
255+
git merge feat/scope-attributes-api
246256
git push
247257

248258
# On the branch for PR 3
@@ -251,4 +261,6 @@ git merge feat/scope-attributes-logger
251261
git push
252262
```
253263

264+
**Never merge into the collection branch.** Syncing only happens between stack PR branches. The collection branch is untouched until the user merges PRs through GitHub.
265+
254266
Prefer merge over rebase — it preserves commit history, doesn't invalidate existing review comments, and avoids the need for force-pushing. Only rebase if explicitly requested.

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @adinauer @romtsn @markushi @lcian
1+
* @adinauer @romtsn @markushi
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Check Tombstone Proto Schema
2+
3+
on:
4+
schedule:
5+
- cron: '0 9 * * *'
6+
workflow_dispatch:
7+
8+
jobs:
9+
check:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v6
14+
15+
- name: Check for newer Tombstone proto schema
16+
run: ./scripts/check-tombstone-proto-schema.sh

CHANGELOG.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
# Changelog
22

3-
## Unreleased
3+
## 8.34.1
44

55
### Fixes
66

77
- Common: Finalize previous session even when auto session tracking is disabled ([#5154](https://github.com/getsentry/sentry-java/pull/5154))
8+
- Android: Add `filterTouchesWhenObscured` to prevent Tapjacking on user feedback dialog ([#5155](https://github.com/getsentry/sentry-java/pull/5155))
89
- Android: Add proguard rules to prevent error about missing Replay classes ([#5153](https://github.com/getsentry/sentry-java/pull/5153))
10+
- Android: Remove the dependency on protobuf-lite for tombstones ([#5157](https://github.com/getsentry/sentry-java/pull/5157))
911

1012
## 8.34.0
1113

@@ -44,6 +46,14 @@
4446
<meta-data android:name="io.sentry.screenshot.mask-all-images" android:value="true" />
4547
```
4648
- The `ManifestMetaDataReader` now read the `DIST` ([#5107](https://github.com/getsentry/sentry-java/pull/5107))
49+
- Add new experimental option to capture profiles for ANRs ([#4899](https://github.com/getsentry/sentry-java/pull/4899))
50+
- This feature will capture a stack profile of the main thread when it gets unresponsive
51+
- The profile gets attached to the ANR event on the next app start, providing a flamegraph of the ANR issue on the sentry issue details page
52+
- Enable via `options.setAnrProfilingSampleRate(<sample-rate>)` or AndroidManifest.xml: `<meta-data android:name="io.sentry.anr.profiling.sample-rate" android:value="[0.0-1.0]" />`
53+
- The sample rate controls the probability of collecting a profile for each detected foreground ANR (0.0 to 1.0, null to disable)
54+
- Add `enableAnrFingerprinting` option to reduce ANR noise by assigning static fingerprints to ANR events with system-only stacktraces
55+
- When enabled, ANRs whose stacktraces contain only system frames (e.g. `java.lang` or `android.os`) are grouped into a single issue instead of creating many separate issues
56+
- Enable via `options.setEnableAnrFingerprinting(true)` or AndroidManifest.xml: `<meta-data android:name="io.sentry.anr.enable-fingerprinting" android:value="true" />`
4757

4858
### Fixes
4959

@@ -179,7 +189,7 @@
179189
- Discard envelopes on `4xx` and `5xx` response ([#4950](https://github.com/getsentry/sentry-java/pull/4950))
180190
- This aims to not overwhelm Sentry after an outage or load shedding (including HTTP 429) where too many events are sent at once
181191

182-
### Feature
192+
### Features
183193

184194
- Add a Tombstone integration that detects native crashes without relying on the NDK integration, but instead using `ApplicationExitInfo.REASON_CRASH_NATIVE` on Android 12+. ([#4933](https://github.com/getsentry/sentry-java/pull/4933))
185195
- Currently exposed via options as an _internal_ API only.

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ android.useAndroidX=true
1212
android.experimental.lint.version=8.9.0
1313

1414
# Release information
15-
versionName=8.34.0
15+
versionName=8.34.1
1616

1717
# Override the SDK name on native crashes on Android
1818
sentryAndroidSdkName=sentry.native.android

gradle/libs.versions.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ spotless = "7.0.4"
4141
gummyBears = "0.12.0"
4242
camerax = "1.3.0"
4343
openfeature = "1.18.2"
44-
protobuf = "3.25.8"
4544

4645
[plugins]
4746
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
@@ -61,7 +60,6 @@ spotless = { id = "com.diffplug.spotless", version.ref = "spotless" }
6160
detekt = { id = "io.gitlab.arturbosch.detekt", version = "1.23.8" }
6261
jacoco-android = { id = "com.mxalbert.gradle.jacoco-android", version = "0.2.0" }
6362
kover = { id = "org.jetbrains.kotlinx.kover", version = "0.7.3" }
64-
protobuf = { id = "com.google.protobuf", version = "0.9.5" }
6563
vanniktech-maven-publish = { id = "com.vanniktech.maven.publish", version = "0.30.0" }
6664
springboot2 = { id = "org.springframework.boot", version.ref = "springboot2" }
6765
springboot3 = { id = "org.springframework.boot", version.ref = "springboot3" }
@@ -145,8 +143,7 @@ otel-javaagent-extension-api = { module = "io.opentelemetry.javaagent:openteleme
145143
otel-semconv = { module = "io.opentelemetry.semconv:opentelemetry-semconv", version.ref = "otelSemanticConventions" }
146144
otel-semconv-incubating = { module = "io.opentelemetry.semconv:opentelemetry-semconv-incubating", version.ref = "otelSemanticConventionsAlpha" }
147145
p6spy = { module = "p6spy:p6spy", version = "3.9.1" }
148-
protobuf-javalite = { module = "com.google.protobuf:protobuf-javalite", version.ref = "protobuf"}
149-
protoc = { module = "com.google.protobuf:protoc", version.ref = "protobuf" }
146+
epitaph = { module = "com.abovevacant:epitaph", version = "0.1.0" }
150147
quartz = { module = "org.quartz-scheduler:quartz", version = "2.3.0" }
151148
reactor-core = { module = "io.projectreactor:reactor-core", version = "3.5.3" }
152149
retrofit = { module = "com.squareup.retrofit2:retrofit", version.ref = "retrofit" }
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#!/usr/bin/env bash
2+
set -euo pipefail
3+
4+
TRACKED_COMMIT="981d145117e8992842cdddee555c57e60c7a220a"
5+
6+
# tail -n +2 to remove the magic anti-XSSI prefix from the Gitiles JSON response
7+
LATEST_COMMIT=$(curl -sf \
8+
'https://android.googlesource.com/platform/system/core/+log/refs/heads/main/debuggerd/proto/tombstone.proto?format=JSON' \
9+
| tail -n +2 \
10+
| jq -r '.log[0].commit')
11+
12+
if [ -z "$LATEST_COMMIT" ] || [ "$LATEST_COMMIT" = "null" ]; then
13+
echo "ERROR: Failed to fetch latest commit from Gitiles" >&2
14+
exit 1
15+
fi
16+
17+
echo "Tracked commit: $TRACKED_COMMIT"
18+
echo "Latest commit: $LATEST_COMMIT"
19+
20+
if [ "$LATEST_COMMIT" != "$TRACKED_COMMIT" ]; then
21+
echo "Schema has been updated! Latest: https://android.googlesource.com/platform/system/core/+/${LATEST_COMMIT}/debuggerd/proto/tombstone.proto"
22+
exit 1
23+
fi
24+
25+
echo "Schema is up to date."

sentry-android-core/api/sentry-android-core.api

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,7 @@ public final class io/sentry/android/core/SentryAndroidDateProvider : io/sentry/
347347
public final class io/sentry/android/core/SentryAndroidOptions : io/sentry/SentryOptions {
348348
public fun <init> ()V
349349
public fun enableAllAutoBreadcrumbs (Z)V
350+
public fun getAnrProfilingSampleRate ()Ljava/lang/Double;
350351
public fun getAnrTimeoutIntervalMillis ()J
351352
public fun getBeforeScreenshotCaptureCallback ()Lio/sentry/android/core/SentryAndroidOptions$BeforeCaptureCallback;
352353
public fun getBeforeViewHierarchyCaptureCallback ()Lio/sentry/android/core/SentryAndroidOptions$BeforeCaptureCallback;
@@ -357,6 +358,7 @@ public final class io/sentry/android/core/SentryAndroidOptions : io/sentry/Sentr
357358
public fun getScreenshot ()Lio/sentry/android/core/SentryScreenshotOptions;
358359
public fun getStartupCrashDurationThresholdMillis ()J
359360
public fun isAnrEnabled ()Z
361+
public fun isAnrProfilingEnabled ()Z
360362
public fun isAnrReportInDebug ()Z
361363
public fun isAttachAnrThreadDump ()Z
362364
public fun isAttachScreenshot ()Z
@@ -365,6 +367,7 @@ public final class io/sentry/android/core/SentryAndroidOptions : io/sentry/Sentr
365367
public fun isCollectExternalStorageContext ()Z
366368
public fun isEnableActivityLifecycleBreadcrumbs ()Z
367369
public fun isEnableActivityLifecycleTracingAutoFinish ()Z
370+
public fun isEnableAnrFingerprinting ()Z
368371
public fun isEnableAppComponentBreadcrumbs ()Z
369372
public fun isEnableAppLifecycleBreadcrumbs ()Z
370373
public fun isEnableAutoActivityLifecycleTracing ()Z
@@ -381,6 +384,7 @@ public final class io/sentry/android/core/SentryAndroidOptions : io/sentry/Sentr
381384
public fun isReportHistoricalTombstones ()Z
382385
public fun isTombstoneEnabled ()Z
383386
public fun setAnrEnabled (Z)V
387+
public fun setAnrProfilingSampleRate (Ljava/lang/Double;)V
384388
public fun setAnrReportInDebug (Z)V
385389
public fun setAnrTimeoutIntervalMillis (J)V
386390
public fun setAttachAnrThreadDump (Z)V
@@ -393,6 +397,7 @@ public final class io/sentry/android/core/SentryAndroidOptions : io/sentry/Sentr
393397
public fun setDebugImagesLoader (Lio/sentry/android/core/IDebugImagesLoader;)V
394398
public fun setEnableActivityLifecycleBreadcrumbs (Z)V
395399
public fun setEnableActivityLifecycleTracingAutoFinish (Z)V
400+
public fun setEnableAnrFingerprinting (Z)V
396401
public fun setEnableAppComponentBreadcrumbs (Z)V
397402
public fun setEnableAppLifecycleBreadcrumbs (Z)V
398403
public fun setEnableAutoActivityLifecycleTracing (Z)V
@@ -553,6 +558,79 @@ public final class io/sentry/android/core/ViewHierarchyEventProcessor : io/sentr
553558
public static fun snapshotViewHierarchyAsData (Landroid/app/Activity;Lio/sentry/util/thread/IThreadChecker;Lio/sentry/ISerializer;Lio/sentry/ILogger;)[B
554559
}
555560

561+
public class io/sentry/android/core/anr/AggregatedStackTrace {
562+
public fun <init> ([Ljava/lang/StackTraceElement;IIJF)V
563+
public fun addOccurrence (J)V
564+
public fun getStack ()[Ljava/lang/StackTraceElement;
565+
}
566+
567+
public class io/sentry/android/core/anr/AnrCulpritIdentifier {
568+
public fun <init> ()V
569+
public static fun identify (Ljava/util/List;)Lio/sentry/android/core/anr/AggregatedStackTrace;
570+
public static fun isSystemFrame (Ljava/lang/String;)Z
571+
}
572+
573+
public class io/sentry/android/core/anr/AnrProfile {
574+
public final field endTimeMs J
575+
public final field stacks Ljava/util/List;
576+
public final field startTimeMs J
577+
public fun <init> (Ljava/util/List;)V
578+
}
579+
580+
public class io/sentry/android/core/anr/AnrProfileManager : java/lang/AutoCloseable {
581+
public fun <init> (Lio/sentry/SentryOptions;)V
582+
public fun <init> (Lio/sentry/SentryOptions;Ljava/io/File;)V
583+
public fun add (Lio/sentry/android/core/anr/AnrStackTrace;)V
584+
public fun clear ()V
585+
public fun close ()V
586+
public fun load ()Lio/sentry/android/core/anr/AnrProfile;
587+
}
588+
589+
public class io/sentry/android/core/anr/AnrProfileRotationHelper {
590+
public fun <init> ()V
591+
public static fun deleteLastFile (Ljava/io/File;)Z
592+
public static fun getFileForRecording (Ljava/io/File;)Ljava/io/File;
593+
public static fun getLastFile (Ljava/io/File;)Ljava/io/File;
594+
public static fun rotate ()V
595+
}
596+
597+
public class io/sentry/android/core/anr/AnrProfilingIntegration : io/sentry/Integration, io/sentry/android/core/AppState$AppStateListener, java/io/Closeable, java/lang/Runnable {
598+
public static final field POLLING_INTERVAL_MS J
599+
public static final field THRESHOLD_ANR_MS J
600+
public fun <init> ()V
601+
protected fun checkMainThread (Ljava/lang/Thread;)V
602+
public fun close ()V
603+
protected fun getProfileManager ()Lio/sentry/android/core/anr/AnrProfileManager;
604+
protected fun getState ()Lio/sentry/android/core/anr/AnrProfilingIntegration$MainThreadState;
605+
public fun onBackground ()V
606+
public fun onForeground ()V
607+
public fun register (Lio/sentry/IScopes;Lio/sentry/SentryOptions;)V
608+
public fun run ()V
609+
}
610+
611+
protected final class io/sentry/android/core/anr/AnrProfilingIntegration$MainThreadState : java/lang/Enum {
612+
public static final field ANR_DETECTED Lio/sentry/android/core/anr/AnrProfilingIntegration$MainThreadState;
613+
public static final field IDLE Lio/sentry/android/core/anr/AnrProfilingIntegration$MainThreadState;
614+
public static final field SUSPICIOUS Lio/sentry/android/core/anr/AnrProfilingIntegration$MainThreadState;
615+
public static fun valueOf (Ljava/lang/String;)Lio/sentry/android/core/anr/AnrProfilingIntegration$MainThreadState;
616+
public static fun values ()[Lio/sentry/android/core/anr/AnrProfilingIntegration$MainThreadState;
617+
}
618+
619+
public final class io/sentry/android/core/anr/AnrStackTrace : java/lang/Comparable {
620+
public final field stack [Ljava/lang/StackTraceElement;
621+
public final field timestampMs J
622+
public fun <init> (J[Ljava/lang/StackTraceElement;)V
623+
public fun compareTo (Lio/sentry/android/core/anr/AnrStackTrace;)I
624+
public synthetic fun compareTo (Ljava/lang/Object;)I
625+
public static fun deserialize (Ljava/io/DataInputStream;)Lio/sentry/android/core/anr/AnrStackTrace;
626+
public fun serialize (Ljava/io/DataOutputStream;)V
627+
}
628+
629+
public final class io/sentry/android/core/anr/StackTraceConverter {
630+
public fun <init> ()V
631+
public static fun convert (Lio/sentry/android/core/anr/AnrProfile;)Lio/sentry/protocol/profiling/SentryProfile;
632+
}
633+
556634
public final class io/sentry/android/core/cache/AndroidEnvelopeCache : io/sentry/cache/EnvelopeCache {
557635
public static final field LAST_ANR_MARKER_LABEL Ljava/lang/String;
558636
public static final field LAST_ANR_REPORT Ljava/lang/String;

sentry-android-core/build.gradle.kts

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ plugins {
88
alias(libs.plugins.jacoco.android)
99
alias(libs.plugins.errorprone)
1010
alias(libs.plugins.gradle.versions)
11-
alias(libs.plugins.protobuf)
1211
}
1312

1413
android {
@@ -84,7 +83,7 @@ dependencies {
8483
implementation(libs.androidx.lifecycle.common.java8)
8584
implementation(libs.androidx.lifecycle.process)
8685
implementation(libs.androidx.core)
87-
implementation(libs.protobuf.javalite)
86+
implementation(libs.epitaph)
8887

8988
errorprone(libs.errorprone.core)
9089
errorprone(libs.nopen.checker)
@@ -113,10 +112,3 @@ dependencies {
113112
testRuntimeOnly(libs.androidx.fragment.ktx)
114113
testRuntimeOnly(libs.timber)
115114
}
116-
117-
protobuf {
118-
protoc { artifact = libs.protoc.get().toString() }
119-
generateProtoTasks {
120-
all().forEach { task -> task.builtins { create("java") { option("lite") } } }
121-
}
122-
}

0 commit comments

Comments
 (0)