@runanywhere/core 0.17.7 → 0.17.8

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.
@@ -421,13 +421,12 @@ std::shared_ptr<Promise<bool>> HybridRunAnywhereCore::initialize(
421
421
  };
422
422
 
423
423
  callbacks.user_data = nullptr;
424
- // Only auto-fetch in staging/production, not development
425
- bool shouldAutoFetch = (env != SDKEnvironment::Development);
426
- callbacks.auto_fetch = shouldAutoFetch ? RAC_TRUE : RAC_FALSE;
424
+ // Note: auto_fetch was removed from rac_assignment_callbacks struct
425
+ // Fetching is now controlled manually via rac_model_assignment_fetch()
427
426
 
428
427
  result = rac_model_assignment_set_callbacks(&callbacks);
429
428
  if (result == RAC_SUCCESS) {
430
- LOGI("Model assignment callbacks registered (autoFetch: %s)", shouldAutoFetch ? "true" : "false");
429
+ LOGI("Model assignment callbacks registered");
431
430
  } else {
432
431
  LOGE("Failed to register model assignment callbacks: %d", result);
433
432
  // Continue - not fatal, models can be fetched later
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@runanywhere/core",
3
- "version": "0.17.7",
3
+ "version": "0.17.8",
4
4
  "description": "Core SDK for RunAnywhere React Native - includes RACommons bindings, native bridges, and public API",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",