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
- Run cargo fmt across all contracts: fixes formatting diffs that were
causing cargo fmt --check to fail in CI (access_control, api, batch,
credit, metering, oracle, proxy, security, subscription modules)
- Remove stray match arm in contracts/batch/src/lib.rs:264 that had
drifted outside any match expression, causing a compile-time parse
error and blocking cargo fmt from processing the file
- Fix k6 baseline JSON import: ES module import of .json files is
evaluated as JavaScript source by Goja, failing at string-keyed
properties. Use JSON.parse(open()) instead, which is the correct
k6 API for reading files in the init phase
- Fix Detox iOS workspace case: expo prebuild generates SubTrackr.xcworkspace
from the app name field but .detoxrc.js was pointing to subtrackr
(lowercase), causing xcodebuild to report the workspace does not exist
- Strengthen e2e Kotlin patch: the previous sed on android/build.gradle
did not reach the four expo Gradle included builds which each declare
their own kotlin("jvm") version "1.9.24" independently. Patch all four
node_modules plugin build.gradle.kts files directly before Gradle runs
0 commit comments