mirror of
https://github.com/ModernRelay/omnigraph.git
synced 2026-07-12 03:12:11 +02:00
release: v0.8.1
Version bump across all seven workspace crates + path-dep constraints, Cargo.lock, openapi.json, and the AGENTS.md surveyed version (also restores the RFC-process row in the topic index that was dropped during branch juggling). Release notes: docs/releases/v0.8.1.md. Channel note: crates.io publication is deferred for this release — the substrate is a rev-pinned Lance pre-release (git dependency), which published crates cannot reference. publish-crates.yml gains a self-healing guard that skips cleanly while the pin is a git dep and resumes automatically when the dependency returns to a registry version (Lance 9.0.0 stable → v0.9.0); a workflow_dispatch catch-up can then publish any skipped tag. Binaries, Homebrew, and the installer ship normally via release.yml.
This commit is contained in:
parent
ca2ad974e1
commit
e415338acb
12 changed files with 148 additions and 34 deletions
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "omnigraph-api-types"
|
||||
version = "0.8.0"
|
||||
version = "0.8.1"
|
||||
edition = "2024"
|
||||
description = "Shared HTTP wire DTOs for Omnigraph — request/response types and engine-result → DTO mappings used by both omnigraph-server and omnigraph-cli (RFC-009). Plain serde/utoipa types; no transport or server internals."
|
||||
license = "MIT"
|
||||
|
|
@ -9,8 +9,8 @@ homepage = "https://github.com/ModernRelay/omnigraph"
|
|||
documentation = "https://docs.rs/omnigraph-api-types"
|
||||
|
||||
[dependencies]
|
||||
omnigraph = { package = "omnigraph-engine", path = "../omnigraph", version = "0.8.0" }
|
||||
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.8.0" }
|
||||
omnigraph = { package = "omnigraph-engine", path = "../omnigraph", version = "0.8.1" }
|
||||
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.8.1" }
|
||||
serde = { workspace = true }
|
||||
serde_json = { workspace = true }
|
||||
utoipa = { workspace = true }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "omnigraph-cli"
|
||||
version = "0.8.0"
|
||||
version = "0.8.1"
|
||||
edition = "2024"
|
||||
description = "CLI for the Omnigraph graph database."
|
||||
license = "MIT"
|
||||
|
|
@ -13,12 +13,12 @@ name = "omnigraph"
|
|||
path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
omnigraph = { package = "omnigraph-engine", path = "../omnigraph", version = "0.8.0" }
|
||||
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.8.0" }
|
||||
omnigraph-api-types = { path = "../omnigraph-api-types", version = "0.8.0" }
|
||||
omnigraph-cluster = { path = "../omnigraph-cluster", version = "0.8.0" }
|
||||
omnigraph-policy = { path = "../omnigraph-policy", version = "0.8.0" }
|
||||
omnigraph-server = { path = "../omnigraph-server", version = "0.8.0" }
|
||||
omnigraph = { package = "omnigraph-engine", path = "../omnigraph", version = "0.8.1" }
|
||||
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.8.1" }
|
||||
omnigraph-api-types = { path = "../omnigraph-api-types", version = "0.8.1" }
|
||||
omnigraph-cluster = { path = "../omnigraph-cluster", version = "0.8.1" }
|
||||
omnigraph-policy = { path = "../omnigraph-policy", version = "0.8.1" }
|
||||
omnigraph-server = { path = "../omnigraph-server", version = "0.8.1" }
|
||||
clap = { workspace = true }
|
||||
color-eyre = { workspace = true }
|
||||
serde = { workspace = true }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "omnigraph-cluster"
|
||||
version = "0.8.0"
|
||||
version = "0.8.1"
|
||||
edition = "2024"
|
||||
description = "Cluster configuration validation, planning, and config-only apply for Omnigraph."
|
||||
license = "MIT"
|
||||
|
|
@ -14,8 +14,8 @@ documentation = "https://docs.rs/omnigraph-cluster"
|
|||
failpoints = ["dep:fail", "fail/failpoints", "omnigraph/failpoints"]
|
||||
|
||||
[dependencies]
|
||||
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.8.0" }
|
||||
omnigraph = { package = "omnigraph-engine", path = "../omnigraph", version = "0.8.0" }
|
||||
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.8.1" }
|
||||
omnigraph = { package = "omnigraph-engine", path = "../omnigraph", version = "0.8.1" }
|
||||
fail = { workspace = true, optional = true }
|
||||
serde = { workspace = true }
|
||||
serde_json = { workspace = true }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "omnigraph-compiler"
|
||||
version = "0.8.0"
|
||||
version = "0.8.1"
|
||||
edition = "2024"
|
||||
description = "Schema/query compiler for Omnigraph. Zero Lance dependency."
|
||||
license = "MIT"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "omnigraph-policy"
|
||||
version = "0.8.0"
|
||||
version = "0.8.1"
|
||||
edition = "2024"
|
||||
description = "Policy / authorization layer for Omnigraph — Cedar-backed PolicyEngine, PolicyChecker trait, ResourceScope enum."
|
||||
license = "MIT"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "omnigraph-server"
|
||||
version = "0.8.0"
|
||||
version = "0.8.1"
|
||||
edition = "2024"
|
||||
description = "HTTP server for the Omnigraph graph database."
|
||||
license = "MIT"
|
||||
|
|
@ -19,11 +19,11 @@ default = []
|
|||
aws = ["dep:aws-config", "dep:aws-sdk-secretsmanager"]
|
||||
|
||||
[dependencies]
|
||||
omnigraph = { package = "omnigraph-engine", path = "../omnigraph", version = "0.8.0" }
|
||||
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.8.0" }
|
||||
omnigraph-policy = { path = "../omnigraph-policy", version = "0.8.0" }
|
||||
omnigraph-api-types = { path = "../omnigraph-api-types", version = "0.8.0" }
|
||||
omnigraph-cluster = { path = "../omnigraph-cluster", version = "0.8.0" }
|
||||
omnigraph = { package = "omnigraph-engine", path = "../omnigraph", version = "0.8.1" }
|
||||
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.8.1" }
|
||||
omnigraph-policy = { path = "../omnigraph-policy", version = "0.8.1" }
|
||||
omnigraph-api-types = { path = "../omnigraph-api-types", version = "0.8.1" }
|
||||
omnigraph-cluster = { path = "../omnigraph-cluster", version = "0.8.1" }
|
||||
axum = { workspace = true }
|
||||
clap = { workspace = true }
|
||||
color-eyre = { workspace = true }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "omnigraph-engine"
|
||||
version = "0.8.0"
|
||||
version = "0.8.1"
|
||||
edition = "2024"
|
||||
description = "Runtime engine for the Omnigraph graph database."
|
||||
license = "MIT"
|
||||
|
|
@ -16,8 +16,8 @@ default = []
|
|||
failpoints = ["dep:fail", "fail/failpoints"]
|
||||
|
||||
[dependencies]
|
||||
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.8.0" }
|
||||
omnigraph-policy = { path = "../omnigraph-policy", version = "0.8.0" }
|
||||
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.8.1" }
|
||||
omnigraph-policy = { path = "../omnigraph-policy", version = "0.8.1" }
|
||||
lance = { workspace = true }
|
||||
lance-core = { workspace = true }
|
||||
lance-select = { workspace = true }
|
||||
|
|
@ -54,7 +54,7 @@ chrono = { workspace = true }
|
|||
arc-swap = { workspace = true }
|
||||
|
||||
[dev-dependencies]
|
||||
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.8.0" }
|
||||
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.8.1" }
|
||||
tokio = { workspace = true }
|
||||
lance-namespace-impls = { workspace = true }
|
||||
# test-util gates IoStats.requests + assert_io_eq! (failure diagnostics only); dev-dep,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue