Releases: andreimarcu/linx-server
Releases · andreimarcu/linx-server
v2.2.1 - Basic auth + access key
- Basic auth is now available for using API keys in the browser
- Access keys can now be used to password-protect files
- Fix for S3 metadata
v2.2 - Basic auth + access key
- Basic auth is now available for using API keys in the browser
- Access keys can now be used to password-protect files
- Fix for S3 metadata
v2.1.6
v2.1.5
Fix S3 uploads (#178) My previous change that reworked how metadata generation worked was not correct for two reasons: * It passed the original `io.Reader` (with no bytes remaining) to `GenerateMetadata` * It did not seek back to the beginning of the temporary file after writing to it, causing any subsequent reads to return EOF. This change fixes both issues and S3 uploads now work fine. We really ought to investigate adding test coverage to our S3 backend to avoid similar recurrences.
v2.1.4
Fix PutMetadata with S3 backend (#176) It turns out that the S3 API expects the additional `MetadataDirective: REPLACE` option in order to update metadata. If this is not provided, then metadata will simply be copied from the source object, which is not what we wanted.
v2.1.3
Add support for conditional requests (#162) This change pulls in some code copied from net/http's fs.go so that we can support If-Match/If-None-Match requests. This will make it easy to put a caching proxy in front of linx-server instances. Request validation will still happen as long as the proxy can contact the origin, so expiration and deletion will still work as expected under normal circumstances.
v2.1.2
Improve UI a bit (#161) * Remove right margin from expiration dropdown on index * Use flexbox for bin/story display * Move Paste/Save button after expire dropdown, instead of before
v2.1.1
--
v2.1
Hide filename input when force random is on