Releases: sushidev-team/print-api
Releases · sushidev-team/print-api
v0.4.0 Workflow changes
v0.3.2 - Add missing PUT Method
Added
- Add update controller method
- A new column to mark a document as "printed"
v0.3.1 - Bugfixes, Added healthcheck
Fixed
- Updated the dependencies (PR1)
Added
- Healthcheck (/health)
Changed
- Removed the old simple healthcheck.
v0.3.0 - Sqlite as DB, Swagger, Automatic deletion
Changed
- Instead of reading the filesystem the checks will run against a sqlite database
Added
- Support for automatic delete after request
- Counting of downloads
- Support for sqlite
- Swagger Documentation (/api)
v0.2.3 - Missing File attributes added
Added
- File entry will also return created_at and updated_at
v0.2.2 - Bugfix and new Endpoint
Fixed
- Fixed the docker-compose.yml file with correct environment variables.
Added
- Added docker-compose-dev.yml for development and testing purpose.
- [DELETE] /browser/:id to delete files created by this endpoint.
- JWT: [DELETE] /browse/:id requires "browse-delete" as permission or a custom permission which can be addressed by setting the environment variable "PERMISSION_BROWSE_DELETE"
v0.2.1 - Bugfix
Fixed
- Remove .env file from repository
Added
- Added example file for .env
v0.2.0 - New endpoints
Added
- Added [GET] /browse to get all files available on the print server.
- JWT: [GET] /browse requires "browse-read" as permission or a custom permission which can be addressed by setting the environment variable "PERMISSION_BROWSE_READ"
Fixed
- Fixed http-protocol bug where links where always http.
Changed
- JWT: [POST] /browse requires now the permission "browse-create" instead of "browse" or a custom permission which can be addressed by setting the environment variable "PERMISSION_BROWSE_CREATE"
v0.1.2 - Bugfix Release
- Fixed: Issue with auth middleware (invalid boolean compare)
- Changed: Refactoring of auth middleware for better maintainability.