You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: parser correctness, API pagination, sourcemap exclusion, misc cleanups
- binary.ts: versionName scrub now only strips UTF-16 NUL padding (was
deleting spaces and all non-ASCII chars, e.g. Chinese version names);
readDimension complexToFloat uses the raw value for unit extraction
- zip.ts: regex entry matching also tests the original (case-preserved)
entry name, fixing AAB manifest lookup that never matched
- check-lockfile.ts: recognize pnpm-workspace.yaml as monorepo root
- api.ts: getAllPackages pages through results (server caps limit at 100);
query() throws on 200-with-non-JSON body instead of returning undefined
- bundle-runner.ts: harmony Sentry properties, spawn error listener,
close-callback error propagation, compose-source-maps resolution
- bundle-pack.ts: derive sourcemap exclusion from actual bundleName;
drop dead '.'/'..' entries
- app.ts: deleteApp returns after cancel instead of deleting /app/undefined
- http-helper.ts: clear ping timeout so the process isn't held alive ~5s
- provider.ts: listPackages requires appId
- utils/index.ts: guard NaN buildTime; close zip fd on read errors
- .gitignore: fix broken '.pushytest-output/' line (now ignores .pushy and
test-output*/), drop personal bench entries; remove pr.md, .prettierrc.json
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
'Cannot find @sentry/react-native, please make sure it is properly installed',
135
137
sentryCliNotFound:
136
138
'Cannot find Sentry CLI tool, please make sure @sentry/cli is properly installed',
137
139
sentryReleaseCreated: 'Sentry release created for version: {{version}}',
@@ -182,6 +184,8 @@ This can reduce the risk of inconsistent dependencies and supply chain attacks.
182
184
nodeHdiffpatchRequired:
183
185
'This function needs "node-hdiffpatch". Please run "{{scriptName}} install node-hdiffpatch" to install',
184
186
apkExtracted: 'APK extracted to {{output}}',
187
+
composeSourceMapsNotFound:
188
+
'Cannot find react-native/scripts/compose-source-maps.js, skipping hermes sourcemap composing. The uploaded sourcemap may not match the compiled bundle.',
185
189
installPackageRequired:
186
190
'Please specify the package to install, e.g. "{{scriptName}} install node-hdiffpatch"',
187
191
installFailed: 'Failed to install {{packages}}: {{error}}',
0 commit comments