@sentry/junior 0.107.0 → 0.107.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3392,12 +3392,7 @@ async function normalizeConversation(args) {
3392
3392
  replacementCount = matchingMessagePrefix(previous, current);
3393
3393
  } else {
3394
3394
  const end = checkpointEnd(current);
3395
- if (end < 0) {
3396
- throw new Error(
3397
- `Cannot find ${reason} summary at event ${marker.seq} during upgrade`
3398
- );
3399
- }
3400
- replacementCount = end + 1;
3395
+ replacementCount = end < 0 ? current.length : end + 1;
3401
3396
  }
3402
3397
  const replacementRows = current.slice(0, replacementCount);
3403
3398
  replacementHistory = replacementRows.map(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/junior",
3
- "version": "0.107.0",
3
+ "version": "0.107.1",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -75,7 +75,7 @@
75
75
  "pg": "^8.16.3",
76
76
  "yaml": "^2.9.0",
77
77
  "zod": "^4.4.3",
78
- "@sentry/junior-plugin-api": "0.107.0"
78
+ "@sentry/junior-plugin-api": "0.107.1"
79
79
  },
80
80
  "devDependencies": {
81
81
  "@emnapi/core": "^1.10.0",
@@ -92,9 +92,9 @@
92
92
  "typescript": "^6.0.3",
93
93
  "vercel": "^54.4.0",
94
94
  "vitest": "^4.1.7",
95
- "@sentry/junior-github": "0.107.0",
96
- "@sentry/junior-memory": "0.107.0",
97
- "@sentry/junior-scheduler": "0.107.0",
95
+ "@sentry/junior-github": "0.107.1",
96
+ "@sentry/junior-memory": "0.107.1",
97
+ "@sentry/junior-scheduler": "0.107.1",
98
98
  "@sentry/junior-testing": "0.0.0"
99
99
  },
100
100
  "scripts": {