π¦ New version release - #454
Merged
Merged
Conversation
brentrager
force-pushed
the
changeset-release/main
branch
from
August 17, 2026 21:52
a9bbded to
ca465c4
Compare
brentrager
force-pushed
the
changeset-release/main
branch
from
August 17, 2026 21:56
ca465c4 to
9739e7a
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@smooai/smooth-operator@1.50.3
Patch Changes
0f1ead2: feat(go): env-gated durable-executor selection seam on the Go server turn path (th-137b91, Q parity)
The Go server drove every turn by calling
SmoothAgent.RunStreamdirectly, so there was no singleplace a durable backend (ADR-030) could plug in β parity gap with the Rust server's
turn_executor.TurnRunner.Runnow drives the turn through the engine'sAgentExecutorseam:turnExecutor(r.executor, os.Getenv("SMOOTH_AGENT_DURABLE_EXECUTOR")).ExecuteStreaming(...).The durable backend is DEPENDENCY-INJECTED via the new
TurnRunner.executorfield (nil by default),so the server binary keeps no compile-time dependency on any Temporal package. Selection mirrors the
Rust
durable_requestedopt-in exactly (1/true/on/yes, case- and whitespace-insensitive):the injected executor is used only when the env opts in AND one was supplied; otherwise the
zero-infra
InProcessExecutor, a verbatim delegation toRunStream, so a default deployment behavesexactly as before. Requesting durable mode with nothing injected warns and falls back rather than
silently pretending the turn is durable. Unit tests cover the full selection matrix with a fake
injected executor.
d8a6d43: feat(python-server): env-gated durable-executor selection seam (th-137b91, Q parity)
The Python server ran every turn by calling
SmoothAgent.run_streamdirectly, so there was no singleplace a durable backend (ADR-030) could be selected β unlike the Rust server's
turn_executor(
runner.rs).TurnRunnernow routes each turn through the engine'sAgentExecutorseam, chosenonce in
select_turn_executor: a durable backend is dependency-injected as an opaqueAgentExecutor(so the server keeps no hard dependency on the Temporal package), and it is used only when
SMOOTH_AGENT_DURABLE_EXECUTORopts in (1/true/on/yes). With nothing injected β the default β theturn runs on
InProcessExecutor, a verbatim delegation torun_stream, so behavior is unchanged.Asking for durable mode with nothing injected warns and falls back rather than silently pretending a
turn is durable.
durable_requestedis split out for a testable parse. Tests cover the parse table,the selection logic, and two real turns driven through a fake injected executor.
@smooai/smooth-operator-web-chat-example@0.0.85
Patch Changes