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:
MechaCat02
2026-06-07 10:27:53 +02:00
parent 0c85fb67d3
commit 271747da24
3 changed files with 23 additions and 11 deletions

18
Cargo.lock generated
View File

@@ -1754,7 +1754,7 @@ dependencies = [
[[package]]
name = "picloud"
version = "1.1.8"
version = "1.1.9"
dependencies = [
"anyhow",
"async-trait",
@@ -1783,7 +1783,7 @@ dependencies = [
[[package]]
name = "picloud-cli"
version = "1.1.8"
version = "1.1.9"
dependencies = [
"anyhow",
"assert_cmd",
@@ -1804,7 +1804,7 @@ dependencies = [
[[package]]
name = "picloud-executor"
version = "1.1.8"
version = "1.1.9"
dependencies = [
"anyhow",
"picloud-executor-core",
@@ -1816,7 +1816,7 @@ dependencies = [
[[package]]
name = "picloud-executor-core"
version = "1.1.8"
version = "1.1.9"
dependencies = [
"async-trait",
"base64",
@@ -1840,7 +1840,7 @@ dependencies = [
[[package]]
name = "picloud-manager"
version = "1.1.8"
version = "1.1.9"
dependencies = [
"anyhow",
"picloud-manager-core",
@@ -1852,7 +1852,7 @@ dependencies = [
[[package]]
name = "picloud-manager-core"
version = "1.1.8"
version = "1.1.9"
dependencies = [
"argon2",
"async-trait",
@@ -1883,7 +1883,7 @@ dependencies = [
[[package]]
name = "picloud-orchestrator"
version = "1.1.8"
version = "1.1.9"
dependencies = [
"anyhow",
"picloud-orchestrator-core",
@@ -1895,7 +1895,7 @@ dependencies = [
[[package]]
name = "picloud-orchestrator-core"
version = "1.1.8"
version = "1.1.9"
dependencies = [
"async-trait",
"axum",
@@ -1918,7 +1918,7 @@ dependencies = [
[[package]]
name = "picloud-shared"
version = "1.1.8"
version = "1.1.9"
dependencies = [
"aes-gcm",
"async-trait",

View File

@@ -13,7 +13,7 @@ members = [
]
[workspace.package]
version = "1.1.8"
version = "1.1.9"
edition = "2021"
rust-version = "1.92"
license = "MIT OR Apache-2.0"

View File

@@ -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