Skip to content

Releases: getlark/runtimeuse

0.15.1

Choose a tag to compare

@jackcbrown89 jackcbrown89 released this 01 May 18:11
7bbf620

What's Changed

Full Changelog: 0.15.0...0.15.1

0.15.0

Choose a tag to compare

@jackcbrown89 jackcbrown89 released this 30 Apr 20:34
e53e1e4

What's Changed

  • Accept inline artifact-ignore patterns via message protocol by @jackcbrown89 in #39

Full Changelog: 0.14.2...0.15.0

0.14.2

Choose a tag to compare

@jackcbrown89 jackcbrown89 released this 30 Apr 05:44
b84e1b0

What's Changed

Full Changelog: 0.14.1...0.14.2

0.14.1

Choose a tag to compare

@vijit-lark vijit-lark released this 28 Apr 00:17
c9aef0d

This release improves long-running request reliability and Python client diagnostics.

Highlights

  • Added runtime heartbeat_message events while requests are in flight, helping clients distinguish slow agent work from a silent or stalled connection.
  • Added Python client idle_timeout, assistant_callback_timeout, and artifact_upload_callback_timeout options with structured diagnostic metadata on timeout errors.
  • Fixed one-shot Python client transport cleanup so WebSocket connections and background sender tasks are released promptly after query or command completion.
  • Improved redacted logging so Error instances preserve useful message/stack details while still redacting secrets.
  • Updated command execution sandbox test coverage to consume command_output_message events correctly.

Validation

  • TypeScript build, typecheck, unit tests, and integration tests pass.
  • Python package build passes.
  • Python local test suite passes with external e2e, sandbox, and llm tests deselected.

0.14.0

Choose a tag to compare

@jackcbrown89 jackcbrown89 released this 26 Apr 19:50
17b9f61

What's Changed

Full Changelog: 0.13.0...0.14.0

0.13.0

Choose a tag to compare

@jackcbrown89 jackcbrown89 released this 20 Apr 22:06
dca04fe

What's Changed

Full Changelog: 0.12.0...0.13.0

0.12.0

Choose a tag to compare

@vijit-lark vijit-lark released this 19 Apr 21:27
9bcb5e0

What's Changed

Full Changelog: 0.11.1...0.12.0

0.11.1

Choose a tag to compare

@jackcbrown89 jackcbrown89 released this 17 Apr 23:40
b05bff2

What's Changed

  • Drain artifact watcher before closing WS on end_session_message by @jackcbrown89 in #29

Full Changelog: 0.11.0...0.11.1

0.11.0

Choose a tag to compare

@jackcbrown89 jackcbrown89 released this 17 Apr 21:55
656772e

What's Changed

Full Changelog: 0.10.0...0.11.0

0.10.0

Choose a tag to compare

@vijit-lark vijit-lark released this 14 Apr 19:24
4c4acab

Changes

Command failure handling

Non-zero exit codes from command execution are now returned in the result rather than raising an error. When a command in a batch fails, remaining commands are skipped and only executed commands appear in the result.

Unexpected disconnect warnings

WebSocket sessions now log a warning when the connection closes unexpectedly (before finalization or cancellation), including the close code and reason. This helps diagnose cases where artifacts may not have been fully uploaded.

Logger warn method

Added warn to the Logger interface, createLogger, createRedactingLogger, and defaultLogger.