Skip to content

v1.32.2

Latest

Choose a tag to compare

@autogame-17 autogame-17 released this 17 Mar 16:52

v1.32.2

Fixes

  • Hub node secret cache TTL: Added TTL-based expiration to the hub node secret cache, preventing stale 403 errors when secrets rotate (#258)
  • completeDistillation state variable: Fixed unnecessary variable rename (state2 -> state) in completeDistillation

Improvements

  • Error logging in silent catches: Added console.warn to previously silent catch {} blocks in a2aProtocol.js (transport/heartbeat paths) and assetStore.js (file I/O operations), improving debuggability without changing behavior
  • var -> const/let migration: Migrated all var declarations to const/let in skillDistiller.js for modern JavaScript standards

Files changed

  • src/gep/a2aProtocol.js -- error logging in 4 catch blocks
  • src/gep/assetStore.js -- error logging in 8 catch blocks
  • src/gep/skillDistiller.js -- full var -> const/let migration
  • src/gep/learningSignals.js -- minor fix