Skip to content

Commit

Permalink
release: v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
imiric committed Apr 21, 2024
1 parent d9f1911 commit b7ab45b
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/context/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

// The semantic version of the application.
// This can be overriden by vcsVersion.
const version = "0.0.0"
const version = "0.1.0"

var (
vcsVersion string // version from VCS set at build time
Expand Down
18 changes: 18 additions & 0 deletions release/notes/v0.1.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
This is the first public release of Disco! :tada:

Needless to say, the project is in very early alpha stages, but the basic design and functionality I had in mind are implemented:

- Storing and retrieving data from a key-value store.
- Data is secured at rest using symmetric encryption (NaCl).
- Multi-user support with a flexible [role-based access control system](https://github.com/hackfixme/disco/blob/v0.1.0/docs/roles.md).
- Remote access using invitation tokens. Nodes exchange secrets using ECDH, and clients are authenticated using mutual TLS. Data is only transferred over TLS 1.3 using Ed25519 keys.
- Namespacing support for separating environments (development, staging, production, etc.), with minimal maintenance.
- User-friendly and intuitive CLI.

Please report any issues [here](https://github.com/hackfixme/disco/issues).

You can see planned work on the [roadmap](https://github.com/orgs/hackfixme/projects/1/views/1). Please vote on issues by giving them a :thumbsup:.

The goal of this project is to become more broadly usable than "just" for secret management. Securely transferring arbitrary data between nodes opens up the possibility for configuration management, deployments, notifications, and other uses.[^1] But... humble beginnings. :)

[^1]: Yes, there are many other projects that already do this in one way or another. But the ones I've used so far have shortcomings that sacrifice some of the design aspects and features I'm looking for.

0 comments on commit b7ab45b

Please sign in to comment.