Skip to content

Releases: andreimarcu/linx-server

v2.2.1 - Basic auth + access key

08 Mar 02:54
Compare
Choose a tag to compare
  • 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

08 Mar 02:12
Compare
Choose a tag to compare
  • 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

03 Dec 02:45
Compare
Choose a tag to compare
  • Fix #189 - Markdown lists don't show numbers/bullets
  • Add a max-height for videos display
  • Allow UNIX socket in FastCGI mode (check if bind starts with /) (#190)

v2.1.5

04 Jun 16:39
Compare
Choose a tag to compare
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

09 May 16:17
Compare
Choose a tag to compare
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

31 Jan 07:06
Compare
Choose a tag to compare
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

29 Jan 07:02
Compare
Choose a tag to compare
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

27 Jan 00:34
Compare
Choose a tag to compare

--

v2.1

26 Jan 10:15
Compare
Choose a tag to compare
Hide filename input when force random is on

v2 -- S3 storage backend

11 Jan 17:56
Compare
Choose a tag to compare