Releases: owncloud/ocis-thumbnails
0.3.0
Changes in 0.3.0
Summary
- Bugfix - Build docker images with alpine:latest instead of alpine:edge: #35
- Enhancement - Serve the metrics endpoint: #37
Details
0.2.0
Changes in 0.2.0
Summary
- Change - Add more default resolutions: #23
- Change - Refactor code to remove code smells: #21
- Change - Use micro service error api: #31
- Enhancement - Limit users to access own thumbnails: #5
Details
-
Change - Add more default resolutions: #23
The
ocis-thumbnails
service was also used by the mediaviewer but the returned images were
too small since the highest resolution was 128x128 pixels. -
Change - Refactor code to remove code smells: #21
Scanning the code using a static code analyzer showed some code smells. This change fixes them.
-
Change - Use micro service error api: #31
The service now also returns a status code when an error occurs.
-
Enhancement - Limit users to access own thumbnails: #5
Users of the service can no longer request thumbnails of another users by guessing the etag. The
thumbnails are now only accessible by the users who created the thumbnail.
0.1.2
0.1.1
0.1.0
Changes in 0.1.0
Summary
- Change - Initial release of basic version: #1
- Change - Use predefined resolutions for thumbnail generation: #7
- Change - Implement the first working version: #3
Details
-
Change - Initial release of basic version: #1
Just prepare an initial basic version to embed a thumbnailer into our microservice
infrastructure in the scope of the ownCloud Infinite Scale project. -
Change - Use predefined resolutions for thumbnail generation: #7
We implemented predefined resolutions to prevent attacker from flooding the service with a
large number of thumbnails. The requested resolution gets mapped to the closest matching
predefined resolution. -
Change - Implement the first working version: #3
We implemented the first simple version. It can load images via webdav and store them locally in
the filesystem.