diff --git a/AGENTS.md b/AGENTS.md index 8c88c94814..2f2a166f55 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -36,7 +36,7 @@ These pipelines connect skills into end-to-end workflows. Individual skill files | `crates/openshell-router/` | Privacy router | Privacy-aware LLM routing | | `crates/openshell-bootstrap/` | Gateway metadata | Gateway registration metadata, auth token storage, mTLS bundle storage | | `crates/openshell-gateway-interceptors/` | Gateway interceptors | Intercepts and transforms configured gRPC requests at the gateway routing boundary | -| `crates/openshell-ocsf/` | OCSF logging | OCSF v1.7.0 event types, builders, shorthand/JSONL formatters, tracing layers | +| `crates/openshell-ocsf/` | OCSF logging | OCSF v1.8.0 event types, builders, shorthand/JSONL formatters, tracing layers | | `crates/openshell-otel/` | OpenTelemetry support | Shared OTLP trace provider, resource, and tracing-layer construction | | `crates/openshell-otel-test-support/` | OpenTelemetry test support | Shared loopback OTLP collector fixture for tracing tests | | `crates/openshell-core/` | Shared core | Common types, configuration, error handling | diff --git a/crates/openshell-core/src/config.rs b/crates/openshell-core/src/config.rs index e04e056033..a1f1a6c84f 100644 --- a/crates/openshell-core/src/config.rs +++ b/crates/openshell-core/src/config.rs @@ -1140,8 +1140,8 @@ pub struct GatewayJwtConfig { pub public_key_path: PathBuf, /// Path to the `kid` value (plain text, one line). pub kid_path: PathBuf, - /// Stable gateway identity embedded in `iss`/`aud`. Defaults to the - /// hostname-or-`openshell` placeholder if unset. + /// Stable gateway identity embedded in `iss`/`aud`. Defaults to + /// `openshell`. #[serde(default = "default_gateway_id")] pub gateway_id: String, /// Token lifetime in seconds. A value of 0 disables expiration and is diff --git a/crates/openshell-core/src/settings.rs b/crates/openshell-core/src/settings.rs index 156e4c3845..6407071581 100644 --- a/crates/openshell-core/src/settings.rs +++ b/crates/openshell-core/src/settings.rs @@ -115,7 +115,7 @@ pub const REGISTERED_SETTINGS: &[RegisteredSetting] = &[ kind: SettingValueKind::Bool, allowed_string_values: None, }, - // When true the sandbox writes OCSF v1.7.0 JSONL records to + // When true the sandbox writes OCSF v1.8.0 JSONL records to // `/var/log/openshell-ocsf*.log` (daily rotation, 3 files) in addition // to the human-readable shorthand log. Defaults to false (no JSONL written). RegisteredSetting { diff --git a/crates/openshell-ocsf/Cargo.toml b/crates/openshell-ocsf/Cargo.toml index 14cc93ba31..be91b1547a 100644 --- a/crates/openshell-ocsf/Cargo.toml +++ b/crates/openshell-ocsf/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "openshell-ocsf" -description = "OCSF v1.7.0 event types, formatters, and tracing layers for OpenShell sandbox logging" +description = "OCSF v1.8.0 event types, formatters, and tracing layers for OpenShell sandbox logging" version.workspace = true edition.workspace = true rust-version.workspace = true