diff --git a/CHANGELOG.md b/CHANGELOG.md index 47f2690..aa273aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Upcoming +## 2022-12-08 unftp v0.14.0 - The JSON authentication method (`--auth-json-path`) JSON user file (`--usr-json-path`) now support gzipped or gzipped+base64-encoded gzip files. The compression makes it possible to fit large configuration files in a Kubernetes configmap for example. diff --git a/Cargo.lock b/Cargo.lock index b039893..7e10a4c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2544,7 +2544,7 @@ checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" [[package]] name = "unftp" -version = "0.13.4" +version = "0.14.0" dependencies = [ "async-trait", "base64", diff --git a/Cargo.toml b/Cargo.toml index 73313d7..8757753 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unftp" -version = "0.13.4" +version = "0.14.0" authors = [ "Agoston Horvath ", "Dávid Kosztka ", diff --git a/docs/server/docker.md b/docs/server/docker.md index 9c04dad..a670f65 100644 --- a/docs/server/docker.md +++ b/docs/server/docker.md @@ -5,9 +5,9 @@ title: Docker You can download pre-made docker images from [docker hub](https://hub.docker.com/r/bolcom/unftp/tags) e.g.: ```sh -docker pull bolcom/unftp:v0.13.4-alpine -docker pull bolcom/unftp:v0.13.4-alpine-istio -docker pull bolcom/unftp:v0.13.4-scratch +docker pull bolcom/unftp:v0.14.0-alpine +docker pull bolcom/unftp:v0.14.0-alpine-istio +docker pull bolcom/unftp:v0.14.0-scratch ``` Example running unFTP in a Docker container: @@ -34,6 +34,6 @@ docker run \ -v /Users/xxx/unftp/unftp.crt:/unftp.crt \ -v /Users/xxx/unftp/the-key.json:/key.json \ -ti \ - bolcom/unftp:v0.13.4-alpine + bolcom/unftp:v0.14.0-alpine ``` diff --git a/docs/server/installation.md b/docs/server/installation.md index 601a90b..6116e98 100644 --- a/docs/server/installation.md +++ b/docs/server/installation.md @@ -16,21 +16,21 @@ you can choose between a statically linked image (no PAM integration) or a dynam Linux (static, no PAM): ```sh -curl -L https://github.com/bolcom/unFTP/releases/download/v0.13.4/unftp_x86_64-unknown-linux-musl \ +curl -L https://github.com/bolcom/unFTP/releases/download/v0.14.0/unftp_x86_64-unknown-linux-musl \ | sudo tee /usr/local/bin/unftp > /dev/null && sudo chmod +x /usr/local/bin/unftp ``` Linux (dynamic with PAM support): ```sh -curl -L https://github.com/bolcom/unFTP/releases/download/v0.13.4/unftp_x86_64-unknown-linux-gnu \ +curl -L https://github.com/bolcom/unFTP/releases/download/v0.14.0/unftp_x86_64-unknown-linux-gnu \ | sudo tee /usr/local/bin/unftp > /dev/null && sudo chmod +x /usr/local/bin/unftp ``` macOS: ```sh -curl -L https://github.com/bolcom/unFTP/releases/download/v0.13.4/unftp_x86_64-apple-darwin \ +curl -L https://github.com/bolcom/unFTP/releases/download/v0.14.0/unftp_x86_64-apple-darwin \ | sudo tee /usr/local/bin/unftp > /dev/null && sudo chmod +x /usr/local/bin/unftp ``` diff --git a/docs/server/pubsub.md b/docs/server/pubsub.md index f0e4efe..6fbbe89 100644 --- a/docs/server/pubsub.md +++ b/docs/server/pubsub.md @@ -72,7 +72,7 @@ All of them are of type JSON object. Examples of their format are shown below. "payload":{ "Startup":{ "libunftp_version":"0.18.3", - "unftp_version":"v0.13.4" + "unftp_version":"v0.14.0" } } }