Skip to content

Releases: abhishekkr/dory

version 1.3.0 with multipart support

08 Mar 16:05
Compare
Choose a tag to compare
  • add multipart support for big secret files

  • fix logging for Item Name

*use KeyForAES

  • update Go dependency abhishekkr/gol

  • rm go-tasks for tasks with just build/run

version 1.2.1 bug fix for client set

05 Jan 15:24
Compare
Choose a tag to compare

Bug Fix

  • [fixed] client mode's set was not setting Url Params correctly, leading all keys to be set in default cache

  • added purge-one option to -help of dory among -task description

docker pull abhishekkr/dory:1.2.1-alpine

v1.2 added purge-one task for dory client mode

26 Dec 21:02
Compare
Choose a tag to compare
docker pull abhishekkr/dory:1.2-alpine
  • added purge-one task to dory client mode

  • README.md and usage documentation updated

version 1.1 local-cache, local-disk, admin apis

26 Dec 17:31
Compare
Choose a tag to compare
docker pull abhishekkr/dory:1.1-alpine

have new parallel APIs

  • /local-cache/:uuid is similar to /local-auth/:uuid?persist=false or /local-auth/:uuid

  • /local-disk/:uuid is similar to /local-auth/:uuid?persist=true

added to /admin/store/:datastore

  • DELETE at /admin/store/:datastore/:uuid can be used to blindly purge just one key

v1.0

22 Dec 20:49
Compare
Choose a tag to compare
  • GET api checks if a key exists before trying to fetch value

  • disk based long-term storage available via GET param persist=true over diskv

  • admin api for List and Purge of all keys

this is accessible via X-DORY-ADMIN-TOKEN header
dory picks it from env variable DORY_ADMIN_TOKEN and need to be >255 characters for being usable

version 0.1 local-auth

18 Oct 17:03
Compare
Choose a tag to compare

Current Features:

  • provides local auth-store backed by cache2go and encrypted by AES crypto

  • allows POST, GET and DELETE for a auth identifier path (like http://dory.local:8080/local-auth/:identifier) to store, fetch and purge data

  • successful POST of data at auth identifier path returns reference X-DORY-TOKEN mapped with this auth identifier path, this token need to be sent as value of this header X-DORY-TOKEN for GET and DELETE.

  • created secret store have default TTL of 5minutes, custom TTL can be set as URL Param in POST request by value of ttlsecond in seconds

  • first GET of secret will purge it from store, unless GET Param keep=true is provided