Skip to content

Releases: justone/brisk

v0.3.0

24 Sep 16:38
Compare
Choose a tag to compare

Add encryption support for both CLI and Babashka pod.

#!/usr/bin/env bb

(require '[babashka.pods :as pods])
(pods/load-pod "brisk")
(require '[pod.brisk :as brisk])

(brisk/freeze-to-file "pod.encrypted.nippy" {:han :solo} {:password [:cached "my-password"]})
(prn (brisk/thaw-from-file "pod.encrypted.nippy" {:password [:cached "my-password"]}))

v0.2.1

02 Sep 19:31
Compare
Choose a tag to compare

New Babashka pod functions:

  • freeze-to-string
  • thaw-from-string

v0.2.0

22 Jun 18:00
Compare
Choose a tag to compare

Babashka pod support with the following functions:

  • freeze-to-file
  • thaw-from-file

v0.1.0

13 Jun 22:09
Compare
Choose a tag to compare

Initial release.

Freeze and thaw are supported.