Releases: mayth/go-simple-upload-server
Releases · mayth/go-simple-upload-server
v2.1.0
v2.0.1
v2.0.0
A refreshed version 😉
Major Changes
⚠️ TLS is no longer supported. Consider using a reverse proxy.⚠️ Authentication is disabled by default. You have to enable it explicitly.⚠️ POST
orPUT
to the existing file will be rejected (409 Conflict
). To allow overwritingoverwrite=true
to the query parameter.- Add "read-only token". As its name shown, the user with a read-only token can only
GET
orHEAD
. "Read-write token" is the same functionality as v1's "token". - Authorization token can be passed via
Authorization
header in addition to usingtoken
query parameter. - Use
scratch
image as Docker runtime image.
Please tell me if there are another breaking changes that is not listed above.
v1.3
v1.2
HTTPS support
Add TLS (HTTPS) support.
- add
-cert
,-key
and-tlsport
options- TLS is enabled if
-cert
and-key
is given - HTTP endpoint is still active if TLS is enabled
- TLS is enabled if
(This feature is requested at #8)
initial build
v0.1 revise README