Releases: matze/wastebin
Releases Β· matze/wastebin
2.3.0
Changed
- Breaking: replace deletion timer with a cookie based solution that identifies creator of a paste on subsequent visits. That cookie is a monotonically increasing number and only used to implement the delete functionality. Because that implies it is a strictly necessary cookie according to GDPR, we will not show a cookie banner. If you are uncomfortable with that either strip the
Set-Cookie
header from responses via a proxy server or stop using this software. - Breaking: stop supporting down migrations.
- Compress data with zstd for a reduction of about 75%. On migration all rows will be compressed. However file size will not change but unused pages be used for new rows. If you want to reduce the file size, you have to use the
VACUUM
statement. - The database is not purged periodically anymore, instead expired entries are removed on access.
Full Changelog
2.2.1
2.2.0
2.1.0
Added
- Paste text content by dragging and dropping files onto the text area.
Full Changelog
2.0.1
2.0.0
Changed
- Breaking: remove possibility to GET
/api/entries/:id
, just use/:id
. - Breaking: remove possibility to POST to
/api/entries
and DELETE
/api/entries/:id
, this can be done on/
and/:id
respectively. Note that
DELETEing/:id
will now return a 303 status code instead of 200. - Return appropriate content type for
/:id
based onaccept
header (i.e.
text/html
returns the HTML page) and thefmt
query parameter (i.e. set to
raw
returns raw text). - Use
dl
query parameter to determine the extension to download a paste. - Use
fmt=raw
query parameter to fetch plain text paste. - Set cache control timeout for the favicon.
Full Changelog
1.6.0
Changed
- Normal font color for the light theme to increase contrast.
- Strange content padding.
Full Changelog
1.5.0
Added
- Link that is valid for one minute to delete a paste.
generator
meta tag containing the version number.
Full Changelog
1.4.0
Fixed
- Evict cached items for expired pastes.
Changed
- Do not swallow fatal errors from serving and database purging.
Added
- Link to error page to go back to the index.
- Link to download a paste (@yannickfunk).
- Bind d to download a paste.
Full Changelog
1.3.0
Added
- y keybind to copy the paste URL to the clipboard
WASTEBIN_TITLE
environment variable to override the HTML page title.
Changed
- Reduced font size of pre and text area to 13pt.