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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# `0.6.0-beta.2`

- biscuit-auth 6.0.0-beta.3
- dedicated prefix for private keys
- read secp256r1 keys in datalog parameters
- support for PEM keys
- improve CLI documentation

# `0.6.0-beta.1`

- biscuit-auth 6.0.0-beta.1
Expand Down
29 changes: 29 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Contributing

This repository is part of the [eclipse-biscuit](https://projects.eclipse.org/projects/technology.biscuit) project. It is licensed under `BSD-3-Clause` and requires contributors to sign the [Eclipse Contributor Agreement](https://www.eclipse.org/legal/ECA.php) (see #eclipse-contributor-agreement below).

## Before contributing

Unless you’re fixing a trivial issue, it is a good idea to start by opening an issue, in order to gather feedback about the changes you have in mind.

You can also ask questions on the [implementers matrix chat](https://matrix.to/#/!suybZZpOqChdTNuIVA:matrix.org).

## Project communication

The discussion space is a [matrix chat](https://matrix.to/#/!MXwhyfCFLLCfHSYJxg:matrix.org).
Updates are also posted on [bluesky](https://bsky.app/profile/biscuitsec.org) and [mastodon](https://hachyderm.io/@biscuitauth).

Security issues can be reported via [github](https://github.com/eclipse-biscuit/biscuit-cli/security).

## Eclipse Contributor Agreement

From the [ECA FAQ](https://www.eclipse.org/legal/eca/faq/):

The purpose of the ECA is to provide a written record that you have agreed to provide your contributions of code and documentation under the licenses used by the Eclipse project(s) you're contributing to. It also makes it clear that you are promising that what you are contributing to Eclipse is code that you wrote, and you have the necessary rights to contribute it to our projects. And finally, it documents a commitment from you that your open source contributions will be permanently on the public record.

In order to sign the ECA, you can follow these steps:

- [Create an account](https://dev.eclipse.org/site_login/createaccount.php) on dev.eclipse.org
- Open your [Account Settings tab](https://dev.eclipse.org/site_login/myaccount.php#open_tab_accountsettings), enter your GitHub ID and click Update Account
- Read and [sign the ECA](https://dev.eclipse.org/site_login/myaccount.php#open_tab_cla)
- Use the exact same email address for your Eclipse account and your commit author.
41 changes: 12 additions & 29 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "biscuit-cli"
version = "0.6.0-beta.1"
version = "0.6.0-beta.2"
description = "a CLI to manipulate biscuit tokens"
authors = ["Clement Delafargue <clement@delafargue.name>"]
edition = "2018"
Expand All @@ -17,7 +17,7 @@ path = "src/main.rs"

[dependencies]
atty = "0.2.14"
biscuit-auth = { version = "6.0.0-beta.2", features = ["serde-error", "pem"] }
biscuit-auth = { version = "6.0.0-beta.3", features = ["serde-error", "pem"] }
clap = { version = "^3.0", features = ["color", "derive"] }
chrono = "^0.4"
hex = "0.4.3"
Expand Down