Skip to content

Instantly share code, notes, and snippets.

@divarvel
Created March 28, 2023 12:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save divarvel/8dc68a7fdb547798195e6cca8adecbef to your computer and use it in GitHub Desktop.
Save divarvel/8dc68a7fdb547798195e6cca8adecbef to your computer and use it in GitHub Desktop.

+++ title = "Biscuit 3.0" description = "Version 3.0.0 of the biscuit reference implementation has been released" date = 2023-03-29T00:09:00+02:00 draft = false template = "blog/page.html"

[taxonomies] authors = ["clementd"]

[extra] lead = "The reference implementation of rust has been released, will full support for the latest spec additions" +++

The biscuit specification and the library ecosystem

Biscuit is published as specification, along with several implementations. Amongst them, biscuit-rust is the reference implementation. It is used when programming in rust, but it also powers biscuit-wasm which provides support for javascript applications (both client-side and server-side), biscuit-web-components which provides in-browser interactive tooling.

Biscuit v3

Motivated by third-party blocks, a new specification version was released. In addition to third-party blocks, a few other changes have been included in the new version.

  • support for check all
  • support for bitwise operators
  • support for !=
  • support for authorizer snapshots

A word on biscuit versions

The currently supported biscuit versions are v2 and v3. Those two versions are compatible and v3 is opt-in: if you don't use any new feature from biscuit v3, the generated tokens will work with implementations only supporting v2 biscuits. Of course, v2 biscuits continue being supported by new implementations. It is even possible to attenuate a v2 biscuit with v3 features.

biscuit-rust-3.0.0

The last stable release of biscuit-rust was v2.2.0, published ten months ago. While support for third-party blocks and other v3 features make for the bulk of the changes, the library itself has been improved. The biggest improvement would be the datalog macros (introduced in v2.2.0) which are now covering all use-cases in a performant fashion.

biscuit-wasm-0.4.0

In addition to the biscuit-rust release, a release of biscuit-wasm is planned for the upcoming days. biscuit-wasm-0.4.0 will bundle all of the improvements from biscuit-rust-3.0.0 and will also pack JS-specific improvements. The most important one is the JS counterpart to datalog macros in rust: tagged templates.

let user_id = "1234";
let token =
  biscuit`user(${user_id});
          check if time($time), $time < ${new Date("2023-03-29T09:00:00Z")}`
  .build(secretKey);
let auth = authorizer`time(${new Date()}); allow if user($u);`;
auth.authorize();
let facts = auth.query(`rule u($id) <- user($id)`);

Other ongoing projects

While biscuit-rust and biscuit-wasm are where most of the work happens, there are a few areas where things have happened.

  • tree-sitter-biscuit provides tree-sitter based editor support for biscuit datalog (tree-sitter is available in emacs, neovim, helix);
  • biscuit-cli allows manipulating and inspecting biscuits on the command line;
  • biscuit-dotnet has been released recently, providing biscuit support to the dotnet platform;
  • biscuit-web-components provide an embeddable editor and token inspector.

A world on outscale

I (Clément Delafargue) have joined Outscale (a French cloud provider) last week, and working on biscuit is now a part of my job, since outscale is investing in biscuit. That's great news since it allows me to dedicate way more time to biscuit. Some of my coworkers will also contribute to biscuit, so we are planning to carry out improvements in several areas, including tutorials and documentation.

Let's have a chat!

Please come have a chat on our matrix room if you have questions about biscuit. There is a lot to discover!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment