Skip to content
Merged
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
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
4 changes: 2 additions & 2 deletions crates/openshell-core/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/openshell-core/src/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion crates/openshell-ocsf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading