chore(v1.1.9): bump workspace versions 1.1.8 → 1.1.9 + SDK_VERSION 1.10
- Cargo.toml: workspace.package.version 1.1.8 → 1.1.9 (all 9 crates inherit via version.workspace = true) - Cargo.lock: regenerated by cargo check - crates/shared/src/version.rs: SDK_VERSION "1.9" → "1.10" with a doc-comment changelog entry covering queue::*, invoke()/invoke_async, retry::* (note the reserved-keyword rename of retry::with → retry::run) - @picloud/client unchanged — no client-library work this release - dashboard/package.json already bumped to 0.15.0 in commit 13 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -77,7 +77,19 @@ pub const PRODUCT_VERSION: &str = env!("CARGO_PKG_VERSION");
|
||||
/// `pubsub::subscriber_token` for the v1.1.6 token path, and
|
||||
/// `users::login` returns the bearer the client presents on the SSE
|
||||
/// request).
|
||||
pub const SDK_VERSION: &str = "1.9";
|
||||
///
|
||||
/// 1.10 additions (v1.1.9): `queue::*` — durable per-app named queues
|
||||
/// (`enqueue`, `depth`, `depth_pending`) with `queue:receive` trigger
|
||||
/// kind and `ctx.event.queue` for consumer handlers. `invoke(target,
|
||||
/// args)` and `invoke_async(target, args)` — same-app function
|
||||
/// composition via re-entrant Rhai; cross-app calls rejected at the
|
||||
/// service entry. `retry::*` — caller-controlled retry shape
|
||||
/// (`retry::policy`, `retry::on_codes`, `retry::run`). The `Services`
|
||||
/// bundle gains `queue: Arc<dyn QueueService>` and
|
||||
/// `invoke: Arc<dyn InvokeService>`. NOTE: the brief specified
|
||||
/// `retry::with(...)`, but `with` and `call` are both Rhai reserved
|
||||
/// keywords, so the shipped name is `retry::run(policy, closure)`.
|
||||
pub const SDK_VERSION: &str = "1.10";
|
||||
|
||||
/// HTTP API major version. Appears in URL paths as `/api/v{N}/...`.
|
||||
/// Bump (new integer + new URL prefix) when the request/response
|
||||
|
||||
Reference in New Issue
Block a user