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
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# 0.1.0-alpha.0 - Jun. 11, 2026

- VSS service implementing VSS protocol version 0. (#34, #35)
- Rust workspace for the VSS server, API contract types, authentication implementations, and storage backend
implementations. (#34, #35, #43, #72, #79, #101)
- PostgreSQL storage backend with database initialization, migrations, TLS support, key-level versioning, store-level
global versioning, transactional writes, deletes, and paginated key-version listing. (#35, #55, #67, #96)
- Signature-based and JWT-based authorization implementations, with cfg-gated no-op authorization for local development
and tests. (#34, #43, #72, #79, #87)
- Configuration through TOML file and environment variables, including bind address, request body size, logging, JWT
RSA public key, and PostgreSQL settings. (#46, #67, #72, #73, #76, #87)
- Server logging to stdout/stderr and file, with SIGHUP log-file reopening and shutdown on CTRL-C/SIGTERM. (#34, #87)
- Prometheus-compatible `/metrics` health metric. (#99)
- Docker and Docker Compose files for local deployment. (#76, #80)
- Getting-started documentation. (#102)

In total, this release features 42 files changed, 7956 insertions from 14 authors in alphabetical order:

- Andrei
- Arik
- benthecarman
- dzdidi
- Elias Rohrer
- Enigbe
- fmar
- G8XSU
- Gursharan Singh
- Jeffrey Czyz
- Leo Nash
- Matt Corallo
- Steve Lee
- tankyleo
98 changes: 49 additions & 49 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,17 @@ members = ["server", "api", "impls", "auth-impls"]
default-members = ["server"]

[workspace.package]
version = "0.1.0-alpha.0"
rust-version = "1.85.0"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://lightningdevkit.org/"
repository = "https://github.com/lightningdevkit/vss-server/"

[workspace.dependencies]
api = { package = "vss-api", version = "0.1.0-alpha.0", path = "./api" }
auth-impls = { package = "vss-auth-impls", version = "0.1.0-alpha.0", path = "./auth-impls" }
impls = { package = "vss-impls", version = "0.1.0-alpha.0", path = "./impls" }

[profile.release]
panic = "abort"
Expand Down
Loading