Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/th-auth-refresh.md

This file was deleted.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @smooai/smooth

## 0.26.6

### Patch Changes

- 28ab17d: Add `th auth refresh` — a headless, on-demand session refresh (th-1d3362). Defaults to the user session; `--m2m` targets the service-account session. It's a thin command over the existing `fresh_credentials_from` choke point, so it adds no refresh logic of its own: user sessions exchange the Supabase refresh token, M2M sessions re-mint via `client_credentials` (no browser, no rotation, no human). No-op — and says so — when the token still has runway. Fills the "`th auth` has login and profile but no refresh" gap; the auto-refresh in the `th api` request path was already there, this just exposes it as a standalone command.

## 0.26.5

### Patch Changes
Expand Down
30 changes: 15 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ resolver = "2"
members = ["crates/*"]

[workspace.package]
version = "0.26.5"
version = "0.26.6"
edition = "2021"
license = "MIT"
repository = "https://github.com/SmooAI/smooth"
Expand Down Expand Up @@ -221,18 +221,18 @@ smooth-operator-server = { git = "https://github.com/SmooAI/smooth-operator.git"
smooth-operator-svc = { git = "https://github.com/SmooAI/smooth-operator.git", rev = "ce2f9e369789351bf0d7a1f7aff65a4d69a1d4b1", package = "smooai-smooth-operator", default-features = false }
# smooth-owned coding-harness extensions to the generic engine (re-homed from
# the engine when it went generic at 0.14.0). See crates/smooth-cast.
smooth-cast = { version = "0.26.5", path = "crates/smooth-cast", package = "smooai-smooth-cast" }
smooth-policy = { path = "crates/smooth-policy", version = "0.26.5", package = "smooai-smooth-policy" }
smooth-web = { version = "0.26.5", path = "crates/smooth-web", package = "smooai-smooth-web" }
smooth-code = { version = "0.26.5", path = "crates/smooth-code", package = "smooai-smooth-code" }
smooth-pearls = { path = "crates/smooth-pearls", version = "0.26.5", package = "smooai-smooth-pearls" }
smooth-diver = { version = "0.26.5", path = "crates/smooth-diver", package = "smooai-smooth-diver" }
smooth-tmux = { version = "0.26.5", path = "crates/smooth-tmux", package = "smooai-smooth-tmux" }
smooth-api-client = { version = "0.26.5", path = "crates/smooth-api-client", package = "smooai-smooth-api-client" }
smooth-cast = { version = "0.26.6", path = "crates/smooth-cast", package = "smooai-smooth-cast" }
smooth-policy = { path = "crates/smooth-policy", version = "0.26.6", package = "smooai-smooth-policy" }
smooth-web = { version = "0.26.6", path = "crates/smooth-web", package = "smooai-smooth-web" }
smooth-code = { version = "0.26.6", path = "crates/smooth-code", package = "smooai-smooth-code" }
smooth-pearls = { path = "crates/smooth-pearls", version = "0.26.6", package = "smooai-smooth-pearls" }
smooth-diver = { version = "0.26.6", path = "crates/smooth-diver", package = "smooai-smooth-diver" }
smooth-tmux = { version = "0.26.6", path = "crates/smooth-tmux", package = "smooai-smooth-tmux" }
smooth-api-client = { version = "0.26.6", path = "crates/smooth-api-client", package = "smooai-smooth-api-client" }
# Chat-first Big Smooth daemon on the smooth-operator LocalServer engine (th-7225f9).
smooth-daemon = { version = "0.26.5", path = "crates/smooth-daemon", package = "smooai-smooth-daemon" }
smooth-tools = { version = "0.26.5", path = "crates/smooth-tools", package = "smooai-smooth-tools" }
smooth-goalie = { version = "0.26.5", path = "crates/smooth-goalie", package = "smooai-smooth-goalie" }
smooth-daemon = { version = "0.26.6", path = "crates/smooth-daemon", package = "smooai-smooth-daemon" }
smooth-tools = { version = "0.26.6", path = "crates/smooth-tools", package = "smooai-smooth-tools" }
smooth-goalie = { version = "0.26.6", path = "crates/smooth-goalie", package = "smooai-smooth-goalie" }
# Cross-runtime client shared library (github.com/SmooAI/client-shared).
# SMOODEV-1464: switched from a local `path = "../client-shared/rust"` dep to
# a rev-pinned git dep. The path form only resolved on a dev laptop, so every
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@smooai/smooth",
"version": "0.26.5",
"version": "0.26.6",
"description": "Security-first AI agent orchestration platform",
"homepage": "https://github.com/SmooAI/smooth#readme",
"bugs": {
Expand Down
Loading