Releases: abhishekkr/dory
version 1.3.0 with multipart support
-
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
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
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
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
-
GET api checks if a key exists before trying to fetch value
-
disk based long-term storage available via GET param
persist=true
overdiskv
-
admin api for List and Purge of all keys
this is accessible via
X-DORY-ADMIN-TOKEN
header
dory picks it from env variableDORY_ADMIN_TOKEN
and need to be>255
characters for being usable
version 0.1 local-auth
Current Features:
-
provides local auth-store backed by
cache2go
and encrypted by AES crypto -
allows POST, GET and DELETE for a
auth identifier path
(likehttp://dory.local:8080/local-auth/:identifier
) to store, fetch and purge data -
successful POST of data at
auth identifier path
returns referenceX-DORY-TOKEN
mapped with thisauth identifier path
, this token need to be sent as value of this headerX-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