{
  "interval": {
    "intervalStart": "2026-04-18T00:00:00.000Z",
    "intervalEnd": "2026-04-19T00:00:00.000Z",
    "intervalType": "day"
  },
  "repository": "elizaos/eliza",
  "overview": "From 2026-04-18 to 2026-04-19, elizaos/eliza had 12 new PRs (0 merged), 1 new issues, and 7 active contributors.",
  "topIssues": [
    {
      "id": "I_kwDOMT5cIs7_ptfV",
      "title": "Merxex Integration: Enabling Agent-to-Agent Commerce",
      "author": "enigma-zeroclaw",
      "number": 6961,
      "repository": "elizaos/eliza",
      "body": "Hello!\n\nI'm reaching out from Merxex (https://exchange.merxex.com), an AI agent-to-agent commerce platform. We've been following your work on eliza and think it's incredible!\n\nAs the ecosystem for autonomous agents grows, we're building the commerce layer that allows these agents to actually transact—buying and selling work, services, and data.\n\nWe'd love to discuss how eliza could integrate with Merxex as a compatible commerce layer or how your users might leverage our marketplace to monetize their agentic workflows.\n\nIs this something your team would be interested in exploring?\n\nBest,\nEnigma (ZeroClaw)\nMerxex Exchange",
      "createdAt": "2026-04-18T20:37:31Z",
      "closedAt": "2026-04-20T02:15:16Z",
      "state": "CLOSED",
      "commentCount": 0
    }
  ],
  "topPRs": [
    {
      "id": "PR_kwDOMT5cIs7Te5C7",
      "title": "chore(deps): update rust-wasm-bindgen monorepo",
      "author": "renovate",
      "number": 6949,
      "body": "This PR contains the following updates:\n\n| Package | Type | Update | Change |\n|---|---|---|---|\n| [js-sys](https://wasm-bindgen.github.io/wasm-bindgen/) ([source](https://redirect.github.com/wasm-bindgen/wasm-bindgen/tree/HEAD/crates/js-sys)) | dependencies | patch | `0.3.83` → `0.3.95` |\n| [wasm-bindgen](https://wasm-bindgen.github.io/wasm-bindgen) ([source](https://redirect.github.com/wasm-bindgen/wasm-bindgen)) | dependencies | patch | `0.2.106` → `0.2.118` |\n| [wasm-bindgen-futures](https://wasm-bindgen.github.io/wasm-bindgen/) ([source](https://redirect.github.com/wasm-bindgen/wasm-bindgen/tree/HEAD/crates/futures)) | dependencies | patch | `0.4.56` → `0.4.68` |\n| [wasm-bindgen-test](https://redirect.github.com/wasm-bindgen/wasm-bindgen) | dev-dependencies | patch | `0.3.56` → `0.3.68` |\n| [web-sys](https://wasm-bindgen.github.io/wasm-bindgen/web-sys/index.html) ([source](https://redirect.github.com/wasm-bindgen/wasm-bindgen/tree/HEAD/crates/web-sys)) | dependencies | patch | `0.3.83` → `0.3.95` |\n\n---\n\n> [!WARNING]\n> Some dependencies could not be looked up. Check the [Dependency Dashboard](../issues/79) for more information.\n\n---\n\n### Release Notes\n\n<details>\n<summary>wasm-bindgen/wasm-bindgen (wasm-bindgen)</summary>\n\n### [`v0.2.118`](https://redirect.github.com/wasm-bindgen/wasm-bindgen/blob/HEAD/CHANGELOG.md#02118)\n\n[Compare Source](https://redirect.github.com/wasm-bindgen/wasm-bindgen/compare/0.2.117...0.2.118)\n\n##### Added\n\n- Added `Error::stack_trace_limit()` and `Error::set_stack_trace_limit()` bindings\n  to `js-sys` for the non-standard V8 `Error.stackTraceLimit` property.\n  [#&#8203;5082](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/5082)\n\n- Added support for multiple `#[wasm_bindgen(start)]` functions, which are\n  chained together at initialization, as well as a new\n  `#[wasm_bindgen(start, private)]` to register a start function without\n  exporting it as a public export.\n  [#&#8203;5081](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/5081)\n\n- Reinitialization is no longer automatically applied when using `panic=unwind`\n  and `--experimental-reset-state-function`, instead it is triggered by any\n  use of the `handler::schedule_reinit()` function under `panic=unwind`,\n  which is supported from within the `on_abort` handler for reinit workflows.\n  Renamed `handler::reinit()` to `handler::schedule_reinit()` and removed\n  the `set_on_reinit()` handler. The `__instance_terminated` address\n  is now always a simple boolean (`0` = live, `1` = terminated).\n  [#&#8203;5083](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/5083)\n\n- `handler::schedule_reinit()` now works under `panic=abort` builds. Previously\n  it was a no-op; it now sets the JS-side reinit flag and the next export call\n  transparently creates a fresh `WebAssembly.Instance`.\n  [#&#8203;5099](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/5099)\n\n##### Changed\n\n- MSRV bump from 1.71 to 1.76 for the CLI, and 1.82 to 1.86 for the API\n  [#&#8203;5102](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/5102)\n\n##### Fixed\n\n- ES module `import` statements are now hoisted to the top of generated JS\n  files, placed right after the `@ts-self-types` directive. This ensures\n  valid ES module output since `import` declarations must precede other\n  statements.\n  [#&#8203;5103](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/5103)\n\n- Fixed two CLI issues affecting WASM modules built by rustc 1.94+. First,\n  a panic (`failed to find N in function table`) caused by lld emitting element\n  segment offsets as `global.get $__table_base` or extended const expressions\n  instead of plain `i32.const N` for large function tables; the fix adds a\n  const-expression evaluator in `get_function_table_entry` and guards against\n  integer underflow in multi-segment tables. Second, the descriptor interpreter\n  now routes all global reads/writes through a single `globals` HashMap seeded\n  from the module's own globals, and mirrors the module's actual linear memory\n  rather than a fixed 32KB buffer, so the stack pointer's real value is valid\n  without any override. This fixes panics like `failed to find 32752 in function\n  table` caused by `GOT.func.internal.*` globals being misidentified as the\n  stack pointer.\n  [#&#8203;5076](https://redirect.github.com/wasm-bindgen/wasm-bindgen/issues/5076)\n  [#&#8203;5080](https://redirect.github.com/wasm-bindgen/wasm-bindgen/issues/5080)\n  [#&#8203;5093](https://redirect.github.com/wasm-bindgen/wasm-bindgen/issues/5093)\n  [#&#8203;5095](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/5095)\n\n### [`v0.2.117`](https://redirect.github.com/wasm-bindgen/wasm-bindgen/blob/HEAD/CHANGELOG.md#02117)\n\n[Compare Source](https://redirect.github.com/wasm-bindgen/wasm-bindgen/compare/0.2.116...0.2.117)\n\n##### Fixed\n\n- Fixed a regression introduced in [#&#8203;5026](https://redirect.github.com/wasm-bindgen/wasm-bindgen/issues/5026) where stable `web-sys` methods that\n  accept a union type containing a `[WbgGeneric]` interface (e.g.\n  `ImageBitmapSource`, which includes `VideoFrame`) incorrectly applied typed\n  generics to all union expansions rather than only those whose argument type\n  is itself `[WbgGeneric]`. In practice this caused `Window::create_image_bitmap_with_*`\n  and the corresponding `WorkerGlobalScope` overloads to return\n  `Promise<ImageBitmap>` instead of `Promise<JsValue>` for the stable\n  (non-`VideoFrame`) call sites, breaking `JsFuture::from(promise).await?`.\n  [#&#8203;5064](https://redirect.github.com/wasm-bindgen/wasm-bindgen/issues/5064)\n  [#&#8203;5073](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/5073)\n\n- Fixed handling logic for environment variable `WASM_BINDGEN_TEST_ADDRESS` in\n  the test runner, when running tests in headless mode.\n  [#&#8203;5087](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/5087)\n\n### [`v0.2.116`](https://redirect.github.com/wasm-bindgen/wasm-bindgen/blob/HEAD/CHANGELOG.md#02116)\n\n[Compare Source](https://redirect.github.com/wasm-bindgen/wasm-bindgen/compare/0.2.115...0.2.116)\n\n##### Added\n\n- Added `js_sys::Float16Array` bindings, `DataView` float16 accessors using\n  `f32`, and raw `[u16]` helper APIs for interoperability with binary16\n  representations such as `half::f16`.\n  [#&#8203;5033](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/5033)\n\n##### Changed\n\n- Updated to Walrus 0.26.1 for deterministic type section ordering.\n  [#&#8203;5069](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/5069)\n\n- The `#[wasm_bindgen]` macro now emits `&mut (impl FnMut(...) + MaybeUnwindSafe)`\n  / `&(impl Fn(...) + MaybeUnwindSafe)` for raw `&mut dyn FnMut` / `&dyn Fn`\n  import arguments instead of a hidden generic parameter and where-clause. The\n  generated signature is cleaner and the `MaybeUnwindSafe` bound is visible\n  directly in the argument position. The ABI and wire format are unchanged.\n  When building with `panic=unwind`, closures that capture non-`UnwindSafe`\n  values (e.g. `&mut T`, `Cell<T>`) must wrap them in `AssertUnwindSafe` before\n  capture; on all other targets `MaybeUnwindSafe` is a no-op blanket impl.\n  [#&#8203;5056](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/5056)\n\n### [`v0.2.115`](https://redirect.github.com/wasm-bindgen/wasm-bindgen/blob/HEAD/CHANGELOG.md#02115)\n\n[Compare Source](https://redirect.github.com/wasm-bindgen/wasm-bindgen/compare/0.2.114...0.2.115)\n\n##### Added\n\n- `console.debug/log/info/warn/error` output from user-spawned `Worker` and\n  `SharedWorker` instances is now forwarded to the CLI test runner during\n  headless browser tests, just like output from the main thread. Works for\n  blob URL workers, module workers, URL-based workers (importScripts), nested\n  workers, and shared workers (including logs emitted before the first port\n  connection). Non-cloneable arguments are serialized via `String()` rather\n  than crashing the worker. The `--nocapture` flag is respected.\n  [#&#8203;5037](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/5037)\n\n- `js_sys::Promise<T>` now implements `IntoFuture`, enabling direct `.await` on\n  any JS promise without a wrapper type. The `wasm-bindgen-futures` implementation\n  has been moved into `js-sys` behind an optional `futures` feature, which is\n  activated automatically when `wasm-bindgen-futures` is a dependency. All\n  existing `wasm_bindgen_futures::*` import paths continue to work unchanged via\n  re-exports. `js_sys::futures` is also available directly for users who want\n  `promise.await` without depending on `wasm-bindgen-futures`.\n  [#&#8203;5049](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/5049)\n\n- Added `--target emscripten` support, generating a `library_bindgen.js` file\n  for consumption by Emscripten at link time. Includes support for futures,\n  JS closures, and TypeScript output. A new Emscripten-specific test runner is\n  also included, along with CI integration.\n  [#&#8203;4443](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4443)\n\n- Added `VideoFrame`, `VideoColorSpace`, and related WebCodecs dictionaries/enums to `web-sys`.\n  [#&#8203;5008](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/5008)\n\n- Added `wasm_bindgen::handler` module with `set_on_abort` and `set_on_reinit`\n  hooks for `panic=unwind` builds. `set_on_abort` registers a callback invoked\n  after the instance is terminated (hard abort, OOM, stack overflow).\n  `set_on_reinit` registers a callback invoked after `reinit()` resets the\n  WebAssembly instance via `--experimental-reset-state-function`. Handlers are\n  stored as Wasm indirect-function-table indices so dispatch is safe even when\n  linear memory is corrupt.\n\n##### Changed\n\n- Replaced per-closure generic destructors with a single `__wbindgen_destroy_closure`\n  export.\n  [#&#8203;5019](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/5019)\n\n- Refactored the headless browser test runner logging pipeline for dramatically improved\n  performance (>400x faster on Chrome, >10x on Firefox, \\~5x on Safari). Switched to\n  incremental DOM scraping with `textContent.slice(offset)`, append-only output semantics,\n  unified log capture across all log levels on failure, and browser-specific invisible-div\n  optimizations (`display:none` for Chrome/Firefox, `visibility:hidden` for Safari).\n  [#&#8203;4960](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4960)\n\n- TTY-gated status/clear output in the test runner shell to avoid `\\r` control-character\n  artifacts in non-interactive (CI) environments.\n  [#&#8203;4960](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4960)\n\n- Added `bench_console_log_10mb` benchmark alongside the existing 1MB benchmark for the\n  headless test runner. The main branch cannot complete this benchmark at any volume.\n  [#&#8203;4960](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4960)\n\n- Updated to Walrus 0.26\n  [#&#8203;5057](https://redirect.github.com/wasm-bindgen/walrus/pull/5057)\n\n##### Fixed\n\n- Fixed argument order when calling multi-parameter functions in the\n  `wasm-bindgen` interpreter by reversing the args collected from the stack.\n  [#&#8203;5047](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/5047)\n\n- Added support for per-operation `[WbgGeneric]` in WebIDL, restoring typed\n  generic return types (e.g. `Promise<ImageBitmap>`) for `createImageBitmap` on\n  `Window` and `WorkerGlobalScope` that were lost after the `VideoFrame`\n  stabilization.\n  [#&#8203;5026](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/5026)\n\n- Fixed missing `#[cfg(feature = \"...\")]` gates on deprecated dictionary builder\n  methods and getters for union-typed fields (e.g. `{Open,Save,Directory}FilePickerOptions::start_in()`),\n  and fixed per-setter doc requirements to list each setter's own required features.\n  [#&#8203;5039](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/5039)\n\n- Fixed `JsOption::new()` to use `undefined` instead of `null`, to be compatible with `Option::None` and JS default parameters.\n  [#&#8203;5023](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/5023)\n\n- Fixed unsound `unsafe` transmutes in `JsOption<T>::wrap`, `as_option`, and `into_option`\n  by replacing `transmute_copy` with `unchecked_into()`. Also tightened the `JsGeneric`\n  trait bound and `JsOption<T>` impl block to require `T: JsGeneric` (which implies `JsCast`),\n  preventing use with arbitrary non-JS types.\n  [#&#8203;5030](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/5030)\n\n- Fixed headless test runner emitting `\\r` carriage-return sequences in non-TTY environments,\n  which polluted captured logs in CI and complicated output-matching tests.\n  [#&#8203;4960](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4960)\n\n- Fixed headless test runner printing incomplete and out-of-order log output on test failures\n  by merging all five log levels into a single unified output div.\n  [#&#8203;4960](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4960)\n\n- Fixed large test outputs (10MB+) causing oversized WebDriver responses that were either\n  extremely slow or crashed completely, by switching to incremental streaming output collection.\n  [#&#8203;4960](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4960)\n\n- Fixed a duplciate wasm export in node ESM atomics, when compiled in debug mode\n  [#&#8203;5028](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/5028)\n\n- Fixed a type inference regression (`E0283: type annotations needed`) introduced\n  in v0.2.109 where the stable `FromIterator` and `Extend` impls on `js_sys::Array`\n  were changed from `A: AsRef<JsValue>` to `A: AsRef<T>`. Because `#[wasm_bindgen]`\n  generates multiple `AsRef` impls per type, the compiler could not uniquely resolve\n  `T`, breaking code like `Array::from_iter([my_wasm_value])` without explicit\n  annotations. The stable impls are restored to `A: AsRef<JsValue>` (returning\n  `Array<JsValue>`); the generic `A: AsRef<T>` forms remain available under\n  `js_sys_unstable_apis`.\n  [#&#8203;5052](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/5052)\n\n- Fixed `skip_typescript` not being respected when using `reexport`, causing\n  TypeScript definitions to be incorrectly emitted for re-exported items marked\n  with `#[wasm_bindgen(skip_typescript)]`.\n  [#&#8203;5051](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/5051)\n\n##### Removed\n\n### [`v0.2.114`](https://redirect.github.com/wasm-bindgen/wasm-bindgen/blob/HEAD/CHANGELOG.md#02114)\n\n[Compare Source](https://redirect.github.com/wasm-bindgen/wasm-bindgen/compare/0.2.113...0.2.114)\n\n##### Added\n\n- Added `[WbgGeneric]` WebIDL extended attribute for opting stable dictionary and interface\n  definitions into typed generics (the same signatures unstable APIs use), avoiding legacy\n  `&JsValue` fallbacks. Applied to all new VideoFrame-related types.\n  [#&#8203;5008](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/5008)\n\n- Added `unchecked_optional_param_type` attribute for marking exported function parameters as\n  optional in TypeScript (`?:`) and JSDoc (`[paramName]`) output. Mutually exclusive with\n  `unchecked_param_type`. Required parameters after optional parameters are rejected at compile time.\n  [#&#8203;5002](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/5002)\n\n- Added termination detection for `panic=unwind` builds. When a non-JS exception (e.g. a Rust\n  panic) escapes from Wasm, the instance is marked as terminated and subsequent calls from JS\n  into Wasm will throw a `Module terminated` error instead of re-entering corrupted state.\n  [#&#8203;5005](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/5005)\n\n- When `--reset-state` is combined with `panic=unwind` builds, the Wasm instance is\n  automatically reset after a fatal termination, allowing subsequent calls to succeed\n  instead of throwing a `Module terminated` error.\n  [#&#8203;5013](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/5013)\n\n##### Changed\n\n- Replaced runtime `0x80000000` vtable bit-flag for closure unwind safety with a\n  compile-time `const UNWIND_SAFE: bool` generic on the invoke shim, `OwnedClosure`,\n  and `BorrowedClosure`. Removes `OwnedClosureUnwind` and deduplicates internal\n  closure helpers. The public API is unchanged.\n  [#&#8203;5003](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/5003)\n\n- Removed unused `IntoWasmClosureRef*::WithLifetime` types,\n  `WasmClosure::to_wasm_slice`, and a lifetime from\n  `IntoWasmClosureRef*`; moved `Static` associated type into `WasmClosure`.\n  [#&#8203;5003](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/5003)\n\n##### Fixed\n\n- Fixed exported structs/enums/functions with the same `js_name` but different\n  `js_namespace` values producing symbol collisions at compile time, by deriving\n  internal wasm symbols from a qualified name that includes the namespace.\n  [#&#8203;4977](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4977)\n\n- Fixed soundness hole in `ScopedClosure`'s `UpcastFrom` that allowed to extend the lifetime after the original `ScopedClosure` was dropped.\n  [#&#8203;5006](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/5006)\n\n### [`v0.2.113`](https://redirect.github.com/wasm-bindgen/wasm-bindgen/blob/HEAD/CHANGELOG.md#02113)\n\n[Compare Source](https://redirect.github.com/wasm-bindgen/wasm-bindgen/compare/0.2.112...0.2.113)\n\n##### Changed\n\n- Reduced usage of `unsafe` code: replaced `transmute`/`transmute_copy` with safe\n  alternatives for `Boolean`/`Null`/`Undefined` constants and `ArrayTuple` conversions,\n  unified duplicated `AsRef`/`From` impls for generic imported types, and removed the\n  `__wbindgen_object_is_undefined` intrinsic in favor of a safe Rust-side equivalent.\n  [#&#8203;4993](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4993)\n\n- Renamed `__wbindgen_object_is_null_or_undefined` intrinsic to\n  `__wbindgen_is_null_or_undefined` and removed the `__wbindgen_object_is_undefined`\n  intrinsic, replacing it with a safe Rust-side check. The `is_null_or_undefined` check\n  now uses safe `&JsValue` ABI instead of raw `u32`.\n  [#&#8203;4994](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4994)\n\n##### Fixed\n\n- Fixed incorrect method naming for stable web-sys methods that reference unstable\n  types (e.g. `texImage2D` taking a `VideoFrame` parameter). These methods were\n  being named in a separate unstable expansion namespace, producing overly-short\n  names like `tex_image_2d` instead of the correct\n  `tex_image_2d_with_u32_and_u32_and_video_frame`. The fix separates the signature\n  classification to distinguish \"from unstable IDL\" (authoritative overrides) from\n  \"stable method using an unstable type\", ensuring the latter is named as part of\n  the stable expansion.\n  [#&#8203;4991](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4991)\n\n### [`v0.2.112`](https://redirect.github.com/wasm-bindgen/wasm-bindgen/blob/HEAD/CHANGELOG.md#02112)\n\n[Compare Source](https://redirect.github.com/wasm-bindgen/wasm-bindgen/compare/0.2.111...0.2.112)\n\n##### Removed\n\n- Removed `ImmediateClosure` type introduced in 0.2.109. Stack-borrowed `&dyn Fn` / `&mut dyn FnMut`\n  closures are now treated as unwind safe by default (panics are caught and converted to JS exceptions\n  with proper unwinding). A unified `ScopedClosure::immediate` approach may be revisited in a future\n  release.\n  [#&#8203;4986](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4986)\n\n### [`v0.2.111`](https://redirect.github.com/wasm-bindgen/wasm-bindgen/blob/HEAD/CHANGELOG.md#02111)\n\n[Compare Source](https://redirect.github.com/wasm-bindgen/wasm-bindgen/compare/0.2.110...0.2.111)\n\n##### Fixed\n\n- Restored backwards compatibility for breaking changes introduced in 0.2.110:\n  re-added deprecated `Promise::then2` binding, reverted `Promise::all_settled`\n  stable signature to take `&JsValue` instead of owned `Object`, and added\n  default type parameters (`= JsValue`) to `ArrayIntoIter`, `ArrayIter`, and\n  `Iter` structs.\n  [#&#8203;4979](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4979)\n\n### [`v0.2.110`](https://redirect.github.com/wasm-bindgen/wasm-bindgen/blob/HEAD/CHANGELOG.md#02110)\n\n[Compare Source](https://redirect.github.com/wasm-bindgen/wasm-bindgen/compare/0.2.109...0.2.110)\n\n##### Changed\n\n- Refactor new closure methods - ensures that all closure constructor functions have the variants `Closure::foo()`, `Closure::foo_aborting()` and\n  `Closure::foo_assert_unwind_safe()` this then fully allows switching from the UnwindSafe bound now being applies on foo() to use one of the\n  alternatives, given these limitations of AssertUnwindSafe. The same applies to `ImmediateClosure`. In addition, mutable reentrancy guards are\n  added for `ImmediateClosure`, and it is updated to be pass-by-value as well.\n  [#&#8203;4975](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4975)\n\n##### Fixed\n\n- Fixed a regression where Array.of1,... variants using generic `Array<T>` broke inference.\n  Reverted to use non-generic JsValue arguments. In addition extends generic class hoisting to\n  for constructors to also include `static_method_of` methods returning the own type, to allow\n  `Array::of` generic to now be on the `Array<T>` impl block.\n  [#&#8203;4974](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4974)\n\n### [`v0.2.109`](https://redirect.github.com/wasm-bindgen/wasm-bindgen/blob/HEAD/CHANGELOG.md#02109)\n\n[Compare Source](https://redirect.github.com/wasm-bindgen/wasm-bindgen/compare/0.2.108...0.2.109)\n\n##### Added\n\n- Added support for erasable generic type parameters on imported JavaScript types,\n  using sound type erasure in JS bindgen boundary. Includes updated js-sys bindings\n  with generic implementations for many standard JS types and functions including\n  `Array<T>`, `Promise<T>`, `Map<K, V>`, `Iterator<T>`, and more.\n  [#&#8203;4876](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4876)\n\n- Added `ScopedClosure<'a, T>` as a unified closure type with lifetime parameter. `ScopedClosure::borrow(&f)` (for immutable `Fn`) and `ScopedClosure::borrow_mut(&mut f)` (for mutable `FnMut`) create borrowed closures that can capture non-`'static` references, ideal for immediate/synchronous JS callbacks. `Closure<T>` is now a type alias for `ScopedClosure<'static, T>`, maintaining backwards compatibility. Also added `IntoWasmAbi` implementation for `Closure<T>` enabling pass-by-value ownership transfer to JavaScript.\n\n- Added `ImmediateClosure<'a, T>` as a lightweight, unwind-safe replacement for\n  `&dyn FnMut` in immediate/synchronous callbacks. Unlike `ScopedClosure`, it has\n  no JS call on creation, no JS call on drop, and no GC overhead—the same ABI as\n  `&dyn FnMut` but with panic safety. Use `ImmediateClosure::new(&f)` for\n  immutable `Fn` closures (easier to satisfy unwind safety) or `ImmediateClosure::new_mut(&mut f)` for\n  mutable `FnMut` closures. Closure parameter types are automatically inferred from context.\n  Also implements `From<&ImmediateClosure<T>> for ScopedClosure<T>` for API migration.\n  [#&#8203;4950](https://redirect.github.com/wasm-bindgen/wasm-bindgen/issues/4950)\n\n- Implement `#[wasm_bindgen(catch)]` exception handling directly in Wasm using\n  `WebAssembly.JSTag` when Wasm exception handling is available. This generates\n  smaller and faster code by avoiding JavaScript `handleError` wrapper functions.\n  [#&#8203;4942](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4942)\n\n- Add Node.js `worker_threads` support for atomics builds. When targeting Node.js with atomics enabled, wasm-bindgen now generates `initSync({ module, memory, thread_stack_size })` and `__wbg_get_imports(memory)` functions that allow worker threads to initialize with a shared WebAssembly.Memory and pre-compiled module. Auto-initialization occurs only on the main thread for backwards compatibility.\n\n- Added a panic message when a getter has more than one argument.\n  [#&#8203;4936](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4936)\n\n- Added support for WebIDL namespace attributes in `wasm-bindgen-webidl`. This enables\n  APIs like the CSS Custom Highlight API which adds the `highlights` attribute to the `CSS` namespace.\n  [#&#8203;4930](https://redirect.github.com/wasm-bindgen/wasm-bindgen/issues/4930)\n\n- Added stable `ShowPopoverOptions` dictionary and `show_popover_with_options()` method to\n  `HtmlElement`, and unstable `TogglePopoverOptions` dictionary per the WHATWG HTML spec.\n  [#&#8203;4968](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4968)\n\n- Added unstable Geolocation API types per the latest W3C spec: `GeolocationCoordinates`,\n  `GeolocationPosition`, and `GeolocationPositionError`. The `Geolocation` interface now\n  has both stable methods (using the old `Position`/`PositionError` types with `[Throws]`)\n  and unstable methods (using the new types without `[Throws]}`, matching actual browser behavior).\n  [#&#8203;2578](https://redirect.github.com/AbesBend662/AbesBend662.github.io/pull/2578)\n\n- Added `matrixTransform()` method to `DOMPointReadOnly` in `web-sys`.\n  [#&#8203;4962](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4962)\n\n- Added the `web` and `node` targets to the `--experimental-reset-state-function` flag.\n  [#&#8203;4909](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4909)\n\n- Added `oncancel` event handler to `GlobalEventHandlers` (available on `HtmlElement`,\n  `Document`, `Window`, etc.).\n  [#&#8203;4542](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4542)\n\n- Added `CommandEvent` and `CommandEventInit` from the Invoker Commands API.\n  [#&#8203;4552](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4552)\n\n- Added `AbstractRange`, `StaticRange`, and `StaticRangeInit` interfaces.\n  [#&#8203;4221](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4221)\n\n- Updated WebCodecs API to Working Draft 2026-01-29 and MediaRecorder API to 2025-04-17.\n  Added `rotation` and `flip` to `VideoDecoderConfig`.\n  [#&#8203;4411](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4411)\n\n- Added support for unstable WebIDL to override stable attribute types, allowing\n  corrected type signatures behind `web_sys_unstable_apis`. Applied to `MouseEvent`\n  coordinate attributes (`clientX`, `clientY`, `screenX`, `screenY`, `offsetX`,\n  `offsetY`, `pageX`, `pageY`) which now return `f64` instead of `i32` when\n  unstable APIs are enabled, per the CSSOM View spec draft.\n  [#&#8203;4935](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4935)\n\n- Added support for unstable WebIDL to override stable method return types. This\n  enables User Timing Level 3 APIs where `Performance.mark()` and `Performance.measure()`\n  return `PerformanceMark` and `PerformanceMeasure` respectively (instead of `undefined`)\n  when `web_sys_unstable_apis` is enabled. Also added `PerformanceMarkOptions`,\n  `PerformanceMeasureOptions`, and the `detail` attribute on marks/measures.\n  [#&#8203;3734](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/3734)\n\n- Added non-standard `mode` option for `FileSystemFileHandle.createSyncAccessHandle()`.\n  Also improved WebIDL generator to track stability at the signature level, allowing\n  stable methods to have unstable overloads.\n  [#&#8203;4928](https://redirect.github.com/wasm-bindgen/wasm-bindgen/issues/4928)\n\n- Updated WebGPU bindings to the February 2026 spec. Dictionary fields with union\n  types now generate multiple type-safe setters (e.g. `set_resource_gpu_sampler()`,\n  `set_resource_gpu_texture_view()`) alongside a deprecated fallback setter. Sequence\n  arguments in unstable APIs now use typed slices (`&[T]`) instead of `&JsValue`.\n  Fixed inner string enum types to use `JsString` in generic positions, added `BigInt`\n  to builtin identifiers, and fixed dictionary field feature gates to not over-constrain\n  getters with setter type requirements.\n  [#&#8203;4955](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4955)\n\n- Improved dictionary union type expansion: stable fallback setters are no longer\n  deprecated, and unstable builder methods now use the first typed variant instead\n  of `&JsValue`. Dictionaries with required union fields now generate expanded\n  constructors for each variant (e.g. `new()`, `new_with_gpu_texture_view()`),\n  with duplicate-signature variants elided.\n  [#&#8203;4966](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4966)\n\n##### Changed\n\n- Increased externref stack size from 128 to 1024 slots to prevent \"table index is out of bounds\"\n  errors in applications with deep call stacks or many concurrent async operations.\n  [#&#8203;4951](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4951)\n\n- `Closure::new()`, `Closure::once()`, and related methods now require `UnwindSafe` bounds on closures when building with `panic=unwind`. New `_aborting` variants (`new_aborting()`, `once_aborting()`, etc.) are provided for closures that don't need panic catching and want to avoid the `UnwindSafe` requirement.\n  [#&#8203;4893](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4893)\n\n- `global` does not use the unsafe-eval `new Function` trick anymore allowing to have CSP strict compliant packages with `wasm-bindgen`.\n  [#&#8203;4910](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4910)\n\n- `eval` and `Function` constructors are now gated behind the `unsafe-eval` feature.\n  [#&#8203;4914](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4914)\n\n##### Fixed\n\n- Fixed incorrect JS export names when LLVM merges identical functions at `opt-level >= 2`.\n  [#&#8203;4946](https://redirect.github.com/wasm-bindgen/wasm-bindgen/issues/4946)\n\n- Fixed incorrect `Closure` adapter deduplication when wasm-ld's Identical Code Folding merges\n  invoke functions for different closure types into the same export.\n  [#&#8203;4953](https://redirect.github.com/wasm-bindgen/wasm-bindgen/issues/4953)\n\n- Fixed `ReferenceError` when using Rust struct names that conflict with JS builtins (e.g., `Array`).\n  The constructor now correctly uses the aliased `FinalizationRegistry` identifier.\n  [#&#8203;4932](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4932)\n\n- Fixed `Element::scroll_top()`, `Element::scroll_left()`, and `HtmlElement::scroll_top()`\n  to return `f64` instead of `i32` per the CSSOM View spec, behind `web_sys_unstable_apis`.\n  The stable API is unchanged for backwards compatibility.\n  [#&#8203;4525](https://redirect.github.com/wasm-bindgen/wasm-bindgen/issues/4525)\n\n- Added spec-compliant `i32` parameter types for `CanvasRenderingContext2d::get_image_data()`\n  and `put_image_data()` (and `OffscreenCanvasRenderingContext2d` equivalents) behind\n  `web_sys_unstable_apis`. Per the HTML spec, `getImageData` and `putImageData` use `long`\n  (i32) for coordinates, not `double` (f64). The stable API is unchanged for backwards\n  compatibility.\n  [#&#8203;1920](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/1920)\n\n- Fixed incorrect `#[cfg(web_sys_unstable_apis)]` gating on stable method signatures that\n  share a WebIDL operation with unstable overloads. For example, `Clipboard.read()` (0 args)\n  was incorrectly gated as unstable because the unstable `read(options)` overload existed.\n  The WebIDL code generator now uses an authoritative expansion model where stable and unstable\n  signature sets are built independently and compared: identical signatures merge (no gate),\n  stable-only signatures get `not(unstable)`, and unstable-only signatures get `unstable`.\n  Also adds typed generics (`Promise<T>`, `Array<T>`, `Function<fn(...)>`, etc.) to all\n  unstable API methods, and adds missing `PhotoCapabilities`, `PhotoSettings`,\n  `MediaSettingsRange`, `Point2D`, `RedEyeReduction`, `FillLightMode`, and `MeteringMode`\n  types from the W3C Image Capture spec.\n  [#&#8203;4964](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4964)\n\n- Fixed `unfulfilled_lint_expectations` warnings when using `#[expect(...)]` attributes\n  on functions annotated with `#[wasm_bindgen]`. The `#[expect]` attributes are now\n  converted to `#[allow]` in generated code to prevent spurious warnings.\n  [#&#8203;4409](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4409)\n\n### [`v0.2.108`](https://redirect.github.com/wasm-bindgen/wasm-bindgen/blob/HEAD/CHANGELOG.md#02108)\n\n[Compare Source](https://redirect.github.com/wasm-bindgen/wasm-bindgen/compare/0.2.107...0.2.108)\n\n##### Fixed\n\n- Fixed regression where `panic=unwind` builds for non-Wasm targets would trigger `UnwindSafe` assertions.\n  [#&#8203;4903](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4903)\n\n### [`v0.2.107`](https://redirect.github.com/wasm-bindgen/wasm-bindgen/blob/HEAD/CHANGELOG.md#02107)\n\n[Compare Source](https://redirect.github.com/wasm-bindgen/wasm-bindgen/compare/0.2.106...0.2.107)\n\n##### Added\n\n- Support catching panics, and raising JS Exceptions for them, when building\n  with panic=unwind on nightly, with the `std` feature.\n  [#&#8203;4790](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4790)\n\n- Added support for passing `&[JsValue]` slices from Rust to JavaScript functions.\n  [#&#8203;4872](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4872)\n\n- Added `private` attribute on exported types to allow generating\n  exports and structs as implicit internal exported types for function\n  arguments and returns, without exporting them on the public interface.\n  [#&#8203;4788](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4788)\n\n- Added `iter_custom` and `iter_custom_future` for bench to do custom measurements.\n  [#&#8203;4841](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4841)\n\n- Added [Window Management API](https://w3c.github.io/window-management/).\n  [#&#8203;4843](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4843)\n\n##### Changed\n\n- Changed WASM import namespace from `wbg` to `./{name}_bg.js` for `web` and `no-modules` targets,\n  aligning with `bundler` and `experimental-nodejs-module` to enable cross-target WASM sharing.\n  [#&#8203;4850](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4850)\n\n- Replace `WASM_BINDGEN_UNSTABLE_TEST_PROFRAW_OUT` and `WASM_BINDGEN_UNSTABLE_TEST_PROFRAW_PREFIX` with parsing `LLVM_PROFILE_FILE` analogous to Rust test coverage.\n  [#&#8203;4367](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4367)\n\n- Typescript custom sections sorted alphabetically across codegen-units.\n  [#&#8203;4738](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4738)\n\n- Optimized demangling performance by removing redundant string formatting\n  [#&#8203;4867](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4867)\n\n- Changed WASM import namespace from `__wbindgen_placeholder__` to `./{name}_bg.js` for `node` targets, aligning with `bundler` and `experimental-nodejs-module` to enable cross-target WASM sharing.\n  [#&#8203;4869](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4869)\n\n- Changed WASM import namespace from `__wbindgen_placeholder__` to `./{name}_bg.js` for `deno` and `module` targets, aligning with `node`, `bundler` and `experimental-nodejs-module` to enable cross-target WASM sharing.\n  [#&#8203;4871](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4871)\n\n- Consolidate JavaScript glue generation\n  Move target-specific JS emission into a single finalize phase, reducing\n  branching and making the generated output more consistent across targets.\n  - Centralize JS output assembly in a single finalize phase (exports/imports/wasm loading).\n  - Make `--target experimental-nodejs-module` emit one JS entrypoint (no separate `_bg.js`).\n  - Ensure Node (CJS/ESM) and bundler entrypoints only expose public exports (no internal import shims).\n  - Add `/* @&#8203;ts-self-types=\"./<name>.d.ts\" */` to JS entrypoints for JSR/Deno resolution.\n  - Refresh reference test fixtures.\n    [#&#8203;4879](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4879)\n\n- Forward worker errors to test output in the test runner.\n  [#&#8203;4855](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4855)\n\n##### Fixed\n\n- Fix: Include doc comments in TypeScript definitions for classes\n  [#&#8203;4858](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4858)\n\n- Interpreter: support try\\_table blocks\n  [#&#8203;4862](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4862)\n\n- Interpreter: Stop interpretting descriptor after `__wbindgen_describe_cast`\n  [#&#8203;4862](https://redirect.github.com/wasm-bindgen/wasm-bindgen/pull/4898)\n\n</details>\n\n---\n\n### Configuration\n\n📅 **Schedule**: (UTC)\n\n- Branch creation\n  - At any time (no schedule defined)\n- Automerge\n  - At any time (no schedule defined)\n\n🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.\n\n♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.\n\n👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired.\n\n---\n\n - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box\n\n---\n\nThis PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/elizaOS/eliza).\n<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMjMuOCIsInVwZGF0ZWRJblZlciI6IjQzLjEyMy44IiwidGFyZ2V0QnJhbmNoIjoiZGV2ZWxvcCIsImxhYmVscyI6W119-->\n",
      "repository": "elizaos/eliza",
      "createdAt": "2026-04-18T00:02:32Z",
      "mergedAt": "2026-04-20T05:24:24Z",
      "additions": 114,
      "deletions": 44
    },
    {
      "id": "PR_kwDOMT5cIs7To_EL",
      "title": "fix: clean discord chat UX — drop heartbeat + bump orchestrator pin",
      "author": "RemilioNubilio",
      "number": 6962,
      "body": "Companion to https://github.com/elizaos-plugins/plugin-agent-orchestrator/pull/37. Silences five classes of runtime-internal messages that have been leaking into Discord as console-log-style dumps.\n\n## Changes\n\n### 1. Delete `packages/agent/src/runtime/task-heartbeat.ts` + wiring in `packages/agent/src/api/server.ts`\n\nThe heartbeat posted `still working — Xs in (Bash)` per PTY session. When a single user prompt spawns multiple sessions (the common case with the swarm coordinator), the 120s room-level rate limit lets a second session's 45s ping through unchanged because the gap between sessions usually exceeds 2 minutes. Users saw duplicate `45s in` messages for the same prompt, sometimes after the actual result had already been posted.\n\nSynthesis (`handleSwarmSynthesis`) already delivers the final answer on completion. There is no UX payoff to a mid-task ping that fires inconsistently and can land after the result. If a specific long-running action needs a progress indicator, that belongs inside the action, not as a generic runtime ping. Same rationale as a comparable upstream cleanup done a few weeks ago that got reverted when the submodule pin was bumped.\n\n### 2. Bump `plugins/plugin-agent-orchestrator`\n\nPicks up the chat-leak fixes in `START_CODING_TASK` / `SPAWN_AGENT` / coordinator / decision-loop / idle-watchdog (see the orchestrator PR).\n\n## Follows the 5 rules\n\n1. No wrappers — just delete + remove references.\n2. Reuses — nothing new to reuse.\n3. No new types.\n4. No new parameters.\n5. Responsibilities stay cleanly split — the WS broadcast path still reports session state; only the chat channel goes quiet.\n\n## Validation\n\nTested on a private Discord test channel via webhook. After the bump, \"make me a tiny dice roller page\" produces:\n1. `rolling` (LLM reply)\n2. Single synthesis summary after completion\n\nThe prior spam (launched-agents dump, 45s heartbeat, workspace path + task prompt dump, `Task finished. Code is at ...`, `Session lost`, `coordinator could not prove completion`) is gone.\n\n<!-- greptile_comment -->\n\n<h3>Greptile Summary</h3>\n\nThis PR removes the `task-heartbeat` module that was posting inconsistent \\\"still working — 45s in\\\" pings to Discord chat per PTY session, and bumps the `plugin-agent-orchestrator` submodule to pick up companion chat-leak fixes. The deletion is clean — no remaining references to `installTaskHeartbeat` or `task-heartbeat` exist anywhere in the codebase, and the synthesis callback (`handleSwarmSynthesis`) continues to deliver the final answer on completion.\n\n<h3>Confidence Score: 5/5</h3>\n\nSafe to merge — clean deletion with no dangling references and a well-scoped submodule bump.\n\nAll remaining findings are P2 (a dead export in subagent-output.ts). No logic errors, no broken wiring, and no unaddressed references were found. The heartbeat removal is complete and the synthesis path is unaffected.\n\npackages/agent/src/runtime/subagent-output.ts — readCurrentActivityFromJsonl is now a dead export worth pruning in a follow-up.\n\n<h3>Important Files Changed</h3>\n\n\n\n\n| Filename | Overview |\n|----------|----------|\n| packages/agent/src/api/server.ts | Heartbeat import and wiring removed; no remaining task-heartbeat references; unrelated heartbeat identifiers (WebSocket, app-manager, SSE) are untouched. |\n| packages/agent/src/runtime/task-heartbeat.ts | File deleted cleanly; no remaining imports or re-exports reference it anywhere in the codebase. |\n| plugins/plugin-agent-orchestrator | Submodule pointer bumped from 920c2a1f4 to 911708224 on the alpha branch, picking up orchestrator chat-leak fixes. |\n\n</details>\n\n\n\n<h3>Flowchart</h3>\n\n```mermaid\n%%{init: {'theme': 'neutral'}}%%\nflowchart TD\n    A[User prompt via Discord] --> B[PTY sessions spawned]\n    B --> C{Before this PR}\n    B --> D{After this PR}\n\n    C --> C1[task-heartbeat fires after 45s per session]\n    C1 --> C2[Rate-limited per room — but second session often slips through]\n    C2 --> C3[User sees duplicate '45s in' pings, sometimes after the result]\n    C3 --> C4[handleSwarmSynthesis posts final answer]\n\n    D --> D2[Sessions run silently]\n    D2 --> D3[handleSwarmSynthesis posts final answer]\n\n    style C1 fill:#f88,stroke:#c00\n    style C2 fill:#f88,stroke:#c00\n    style C3 fill:#f88,stroke:#c00\n    style D2 fill:#8f8,stroke:#080\n    style D3 fill:#8f8,stroke:#080\n```\n\n<!-- greptile_failed_comments -->\n<details><summary><h3>Comments Outside Diff (1)</h3></summary>\n\n1. `packages/agent/src/runtime/subagent-output.ts`, line 125-155 ([link](https://github.com/elizaos/eliza/blob/7c15f9116268f25ee64d4586a9b8e6faca6f089d/packages/agent/src/runtime/subagent-output.ts#L125-L155)) \n\n   <a href=\"#\"><img alt=\"P2\" src=\"https://greptile-static-assets.s3.amazonaws.com/badges/p2.svg?v=7\" align=\"top\"></a> **Dead export after heartbeat removal**\n\n   `readCurrentActivityFromJsonl` was imported exclusively by `task-heartbeat.ts` (confirmed: no other callers exist in the codebase). Now that the heartbeat is gone, this function and its heartbeat-specific doc comment (`\"the user in a heartbeat\"`) are orphaned. It won't cause a runtime error, but it's dead code worth cleaning up in a follow-up.\n\n</details>\n\n<!-- /greptile_failed_comments -->\n\n<sub>Reviews (1): Last reviewed commit: [\"fix: clean up discord chat UX — drop hea...\"](https://github.com/elizaos/eliza/commit/7c15f9116268f25ee64d4586a9b8e6faca6f089d) | [Re-trigger Greptile](https://app.greptile.com/api/retrigger?id=28877413)</sub>\n\n<!-- /greptile_comment -->",
      "repository": "elizaos/eliza",
      "createdAt": "2026-04-18T21:49:27Z",
      "mergedAt": null,
      "additions": 30,
      "deletions": 148
    },
    {
      "id": "PR_kwDOMT5cIs7Tgb9l",
      "title": "fix(deps): update dependency gymnasium to ~=1.2.3",
      "author": "renovate",
      "number": 6952,
      "body": "This PR contains the following updates:\n\n| Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) |\n|---|---|---|---|\n| [gymnasium](https://redirect.github.com/Farama-Foundation/Gymnasium) | `~=0.28.1` → `~=1.2.3` | ![age](https://developer.mend.io/api/mc/badges/age/pypi/gymnasium/1.2.3?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/gymnasium/1.2.3/1.2.3?slim=true) |\n\n---\n\n> [!WARNING]\n> Some dependencies could not be looked up. Check the [Dependency Dashboard](../issues/79) for more information.\n\n---\n\n### Configuration\n\n📅 **Schedule**: (UTC)\n\n- Branch creation\n  - At any time (no schedule defined)\n- Automerge\n  - At any time (no schedule defined)\n\n🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.\n\n♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.\n\n🔕 **Ignore**: Close this PR and you won't be reminded about this update again.\n\n---\n\n - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box\n\n---\n\nThis PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/elizaOS/eliza).\n<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMjMuOCIsInVwZGF0ZWRJblZlciI6IjQzLjEyMy44IiwidGFyZ2V0QnJhbmNoIjoiZGV2ZWxvcCIsImxhYmVscyI6W119-->\n",
      "repository": "elizaos/eliza",
      "createdAt": "2026-04-18T02:51:26Z",
      "mergedAt": "2026-04-20T05:24:29Z",
      "additions": 19,
      "deletions": 6
    },
    {
      "id": "PR_kwDOMT5cIs7TiyTW",
      "title": "fix(deps): update capacitor monorepo to v8.3.1",
      "author": "renovate",
      "number": 6957,
      "body": "This PR contains the following updates:\n\n| Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) |\n|---|---|---|---|\n| [@capacitor/cli](https://capacitorjs.com) ([source](https://redirect.github.com/ionic-team/capacitor)) | [`8.2.0` → `8.3.1`](https://renovatebot.com/diffs/npm/@capacitor%2fcli/8.2.0/8.3.1) | ![age](https://developer.mend.io/api/mc/badges/age/npm/@capacitor%2fcli/8.3.1?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@capacitor%2fcli/8.2.0/8.3.1?slim=true) |\n| [@capacitor/core](https://capacitorjs.com) ([source](https://redirect.github.com/ionic-team/capacitor)) | [`8.0.2` → `8.3.1`](https://renovatebot.com/diffs/npm/@capacitor%2fcore/8.0.2/8.3.1) | ![age](https://developer.mend.io/api/mc/badges/age/npm/@capacitor%2fcore/8.3.1?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@capacitor%2fcore/8.0.2/8.3.1?slim=true) |\n\n---\n\n> [!WARNING]\n> Some dependencies could not be looked up. Check the [Dependency Dashboard](../issues/79) for more information.\n\n---\n\n### Release Notes\n\n<details>\n<summary>ionic-team/capacitor (@&#8203;capacitor/cli)</summary>\n\n### [`v8.3.1`](https://redirect.github.com/ionic-team/capacitor/blob/HEAD/CHANGELOG.md#831-2026-04-16)\n\n[Compare Source](https://redirect.github.com/ionic-team/capacitor/compare/8.3.0...8.3.1)\n\n##### Bug Fixes\n\n- **android:** handle null versionName in isNewBinary() ([#&#8203;8397](https://redirect.github.com/ionic-team/capacitor/issues/8397)) ([aa1a660](https://redirect.github.com/ionic-team/capacitor/commit/aa1a660f364f9b5f5a1e350e279c8864b04dd13b))\n- boundary value extraction for form-data requests ([#&#8203;7518](https://redirect.github.com/ionic-team/capacitor/issues/7518)) ([64ab854](https://redirect.github.com/ionic-team/capacitor/commit/64ab854c12330804c24275d88d3a9f7c8e52a73d))\n- **cli:** check CAPACITOR\\_COCOAPODS\\_PATH in determinePackageManager ([#&#8203;8407](https://redirect.github.com/ionic-team/capacitor/issues/8407)) ([acb64ab](https://redirect.github.com/ionic-team/capacitor/commit/acb64ab92a37ff53701cde453558e272e2e11eb6))\n- **system-bars:** use separate current styles ([#&#8203;8409](https://redirect.github.com/ionic-team/capacitor/issues/8409)) ([3d1f8d1](https://redirect.github.com/ionic-team/capacitor/commit/3d1f8d1b61480187375f5cd4de7ba999db007542))\n\n### [`v8.3.0`](https://redirect.github.com/ionic-team/capacitor/blob/HEAD/CHANGELOG.md#830-2026-03-25)\n\n[Compare Source](https://redirect.github.com/ionic-team/capacitor/compare/8.2.0...8.3.0)\n\n##### Bug Fixes\n\n- **android:** correctly parsing `server.url` when they include paths ([#&#8203;8391](https://redirect.github.com/ionic-team/capacitor/issues/8391)) ([a9f2181](https://redirect.github.com/ionic-team/capacitor/commit/a9f218179b60555d86b44bf2b33354da3e64e98c))\n- **cli:** inline CSS sourcemaps in addition to JS sourcemaps ([#&#8203;8377](https://redirect.github.com/ionic-team/capacitor/issues/8377)) ([69476ab](https://redirect.github.com/ionic-team/capacitor/commit/69476ab9c0b47911a14d2482cab53a877a5ae784))\n- **http:** handle URL objects on fetch ([#&#8203;8386](https://redirect.github.com/ionic-team/capacitor/issues/8386)) ([003099a](https://redirect.github.com/ionic-team/capacitor/commit/003099aef246adfd76d890074d46b1484951824b))\n- **ios:** make getArray accesible on Objective-C plugins ([#&#8203;8392](https://redirect.github.com/ionic-team/capacitor/issues/8392)) ([afb80f2](https://redirect.github.com/ionic-team/capacitor/commit/afb80f2fecb4bf85dbebe25e815de2a5564264d6))\n- **SystemBars:** use native safe area insets on Android ([#&#8203;8384](https://redirect.github.com/ionic-team/capacitor/issues/8384)) ([4e99598](https://redirect.github.com/ionic-team/capacitor/commit/4e99598a2a57ee97e82be1aaa09492744622fa60))\n\n##### Features\n\n- **cli:** Experimental config for swift-tools-version in SPM apps ([#&#8203;8372](https://redirect.github.com/ionic-team/capacitor/issues/8372)) ([d2ee84f](https://redirect.github.com/ionic-team/capacitor/commit/d2ee84f8186909b142b418c02fc19f79d3c6a6ed))\n- **cli:** support SPM package traits in generated Package.swift ([#&#8203;8351](https://redirect.github.com/ionic-team/capacitor/issues/8351)) ([27e6aa8](https://redirect.github.com/ionic-team/capacitor/commit/27e6aa89cf22e0b1a6d46710faed9aa8899600b0))\n\n</details>\n\n---\n\n### Configuration\n\n📅 **Schedule**: (UTC)\n\n- Branch creation\n  - At any time (no schedule defined)\n- Automerge\n  - At any time (no schedule defined)\n\n🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.\n\n♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.\n\n🔕 **Ignore**: Close this PR and you won't be reminded about these updates again.\n\n---\n\n - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box\n\n---\n\nThis PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/elizaOS/eliza).\n<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMjMuOCIsInVwZGF0ZWRJblZlciI6IjQzLjEyMy44IiwidGFyZ2V0QnJhbmNoIjoiZGV2ZWxvcCIsImxhYmVscyI6W119-->\n",
      "repository": "elizaos/eliza",
      "createdAt": "2026-04-18T07:30:03Z",
      "mergedAt": "2026-04-20T05:24:34Z",
      "additions": 3,
      "deletions": 3
    },
    {
      "id": "PR_kwDOMT5cIs7ThJBW",
      "title": "chore(deps): update dependency @types/node to v25.6.0",
      "author": "renovate",
      "number": 6954,
      "body": "This PR contains the following updates:\n\n| Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) |\n|---|---|---|---|\n| [@types/node](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)) | [`25.4.0` → `25.6.0`](https://renovatebot.com/diffs/npm/@types%2fnode/25.4.0/25.6.0) | ![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/25.6.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/25.4.0/25.6.0?slim=true) |\n\n---\n\n> [!WARNING]\n> Some dependencies could not be looked up. Check the [Dependency Dashboard](../issues/79) for more information.\n\n---\n\n### Configuration\n\n📅 **Schedule**: (UTC)\n\n- Branch creation\n  - At any time (no schedule defined)\n- Automerge\n  - At any time (no schedule defined)\n\n🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.\n\n♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.\n\n🔕 **Ignore**: Close this PR and you won't be reminded about these updates again.\n\n---\n\n - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box\n\n---\n\nThis PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/elizaOS/eliza).\n<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMjMuOCIsInVwZGF0ZWRJblZlciI6IjQzLjEyMy44IiwidGFyZ2V0QnJhbmNoIjoiZGV2ZWxvcCIsImxhYmVscyI6W119-->\n",
      "repository": "elizaos/eliza",
      "createdAt": "2026-04-18T04:20:48Z",
      "mergedAt": "2026-04-20T05:24:55Z",
      "additions": 2,
      "deletions": 2
    }
  ],
  "codeChanges": {
    "additions": 0,
    "deletions": 0,
    "files": 0,
    "commitCount": 66
  },
  "completedItems": [],
  "topContributors": [
    {
      "username": "RemilioNubilio",
      "avatarUrl": "https://avatars.githubusercontent.com/u/275382225?u=b1501ee01bb54e5b31ca64895f2a07c69f554a37&v=4",
      "totalScore": 26.357912167657645,
      "prScore": 26.357912167657645,
      "issueScore": 0,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": "RemilioNubilio: Focused on enhancing user experience within the elizaos/eliza repository by opening PR #6962 to refine Discord chat interactions. This contribution centers on improving interface usability through the removal of heartbeat processes and orchestrator updates."
    },
    {
      "username": "greptile-apps",
      "avatarUrl": "https://avatars.githubusercontent.com/in/867647?v=4",
      "totalScore": 22.5,
      "prScore": 0,
      "issueScore": 0,
      "reviewScore": 22.5,
      "commentScore": 0,
      "summary": "greptile-apps: No activity today."
    },
    {
      "username": "fel123",
      "avatarUrl": "https://avatars.githubusercontent.com/u/33407903?v=4",
      "totalScore": 13.976573590279973,
      "prScore": 13.976573590279973,
      "issueScore": 0,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": "fel123: Focused on expanding the ecosystem by opening PR #345 to integrate the @quantoracle/plugin-quantoracle into the elizaos-plugins/registry. This contribution involved a targeted configuration update, reflecting a primary focus on project extensibility."
    },
    {
      "username": "enigma-zeroclaw",
      "avatarUrl": "https://avatars.githubusercontent.com/u/264714710?v=4",
      "totalScore": 2,
      "prScore": 0,
      "issueScore": 2,
      "reviewScore": 0,
      "commentScore": 0,
      "summary": "enigma-zeroclaw: Focused on expanding the ecosystem's capabilities by initiating the integration of agent-to-agent commerce through the creation of issue #6961 in elizaos/eliza."
    }
  ],
  "newPRs": 12,
  "mergedPRs": 0,
  "newIssues": 1,
  "closedIssues": 0,
  "activeContributors": 7
}