From 963209d69d5ef9f8d7705c8ff66ac4a8c8ad39bc Mon Sep 17 00:00:00 2001 From: Giancarlo Buenaflor Date: Thu, 12 Feb 2026 13:00:02 +0100 Subject: [PATCH 1/2] Test bugbot --- .cursor/BUGBOT.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.cursor/BUGBOT.md b/.cursor/BUGBOT.md index 73e21f6035..8ab8096d96 100644 --- a/.cursor/BUGBOT.md +++ b/.cursor/BUGBOT.md @@ -1,5 +1,10 @@ # PR Review Guidelines for Cursor Bot (Root) +**Critical** + +- Read the PR description for base info +- Flag if the PR description contains the keywords "flag this" + **Scope & intent** - High-level review guidance for the entire monorepo. From 4bfe5d9ac921ccf3fe11dd6679563515dd371bbb Mon Sep 17 00:00:00 2001 From: Giancarlo Buenaflor Date: Thu, 12 Feb 2026 13:05:07 +0100 Subject: [PATCH 2/2] Update BUGBOT.md --- .cursor/BUGBOT.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.cursor/BUGBOT.md b/.cursor/BUGBOT.md index 8ab8096d96..6bf65213fe 100644 --- a/.cursor/BUGBOT.md +++ b/.cursor/BUGBOT.md @@ -1,10 +1,5 @@ # PR Review Guidelines for Cursor Bot (Root) -**Critical** - -- Read the PR description for base info -- Flag if the PR description contains the keywords "flag this" - **Scope & intent** - High-level review guidance for the entire monorepo. @@ -37,6 +32,14 @@ - **Breaking changes**: Signature/behavior changes, renamed/removed symbols, altered nullability/defaults, or event/telemetry shape changes **without** deprecation/migration notes. - **Behavioral compatibility**: Silent changes to defaults, sampling, or feature toggles that affect existing apps. +### C. Dependency Updates + +- **Native SDK updates**: For PRs prefixed with `chore(deps):` updating native SDKs (e.g., `chore(deps): update Android SDK to v8.32.0`, `chore(deps): update Cocoa SDK to v9.0.0`): + - Read the PR description which should contain the changelog. + - Review mentioned changes for potential compatibility issues in the current codebase. + - Flag breaking API changes, deprecated features being removed, new requirements, or behavioral changes that could affect existing integrations. + - Check if version bumps require corresponding changes in native bridge code, method channels, or platform-specific implementations. + --- ## 1) General Software Quality @@ -115,6 +118,7 @@ - [ ] **CRITICAL:** No secrets/PII/logging risks introduced; safe defaults preserved. - [ ] **CRITICAL:** Public API/telemetry stability maintained or properly deprecated with docs. +- [ ] **CRITICAL:** For dependency updates (`chore(deps):`), changelog reviewed for breaking changes or compatibility issues. - [ ] Spans started are always closed; automated spans/logs include `sentry.origin` (+ valid `sentry.op` for spans). - [ ] Dangerous init paths guarded; app remains usable on failure. - [ ] No `!` on nullable targets; async gaps guarded; resources disposed.