diff --git a/HISTORY.md b/HISTORY.md index af29a3c..9e17d92 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,7 @@ +# 0.9.1 (2019-03-22) + +Rewrite server in go. + # 0.9.0 (2019-03-16) First release. diff --git a/README.md b/README.md index 9c135a4..8d9ce97 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,20 @@ +A [wkhtmlpdf](https://wkhtmltopdf.org) server with drop-in client. + +Why? + +- avoid deploying wkhtmltopdf and it's dependencies in your application image +- keep the memory requirement of your application pods low while delegating + memory hungry wkhtmltopdf jobs to dedicated pods +- easily select the wkhtmltopdf version to use at runtime + +# WARNING + +The server is not meant to be exposed to untrusted clients. + +Several attack vectors exist (local file access being the most obvious). +Mitigating them is not a priority, since the main use case is +to use it as a private service. + # kwkhtmltopdf_server A web server accepting [wkhtmlpdf](https://wkhtmltopdf.org) options and files @@ -63,14 +80,6 @@ as well as against the server using the python and go clients. See [issues on GitHub]() as well as some TODO's in the source code. -# WARNING - -The server is not meant to be exposed to untrusted clients. - -Several attack vectors exist (local file access being the most obvious). -Mitigating them is not a priority, since the main use case is -to use it as a private service. - # Releasing Push the master branch and ensure tests pass on travis.