Skip to content

Commit

Permalink
Release unftp version 0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
robklg committed Dec 15, 2024
1 parent 7fc66e0 commit ff48d65
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 19 deletions.
10 changes: 6 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@

## 2024-12-14 unftp v0.15.0

- Upgraded to new auth and storage backend releases
- Upgraded dependencies including all crates from https://github.com/bolcom/libunftp
- Upgraded to Rust 1.83.0
- [#196](https://github.com/bolcom/unFTP/pull/196) *Breaking* --auth-type is now mandatory to prevent security risks from omission or typos that could leave the FTP server open
- [#184](https://github.com/bolcom/unFTP/pull/184) Support for Azure blob storage with [OpenDAL](https://github.com/apache/OpenDAL)
- [#185](https://github.com/bolcom/unFTP/pull/185) Support for shipping logs to [Google Logging](https://cloud.google.com/logging/docs/)
- [#196](https://github.com/bolcom/unFTP/pull/196) --auth-type is now mandatory to prevent security risks from omission or typos that could leave the FTP server open
- Upgraded dependencies
- Upgraded to Rust 1.83.0
- Removed istio (scuttle) image build in favor of using `proxy.istio.io/config: '{ "holdApplicationUntilProxyStarts": true }'`
- [#191](https://github.com/bolcom/unFTP/pull/191) Allow https for user detail
- [#199](https://github.com/bolcom/unFTP/pull/199) Removed istio (scuttle) image build in favor of using `proxy.istio.io/config: '{ "holdApplicationUntilProxyStarts": true }'`

## 2023-12-24 unftp v0.14.7

Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unftp"
version = "0.14.7"
version = "0.15.0"
authors = [
"Agoston Horvath <[email protected]>",
"Dávid Kosztka <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion RELEASE-CHECKLIST.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* Wait till MR pipelines are OK then run `make publish`
* Merge the MR via the command line by merging master into the branch and pushing it.
* Create the release in Github using tag format \[{component}-\]{version} e.g.
> v0.14.7
> v0.15.0
or
> slog-redis-v0.1.2
* Wait for the Github Actions pipeline to finish. You should see all artifacts in the release page.
Expand Down
6 changes: 3 additions & 3 deletions docs/server/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ 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.14.7-alpine
docker pull bolcom/unftp:v0.14.7-scratch
docker pull bolcom/unftp:v0.15.0-alpine
docker pull bolcom/unftp:v0.15.0-scratch
```

Example running unFTP in a Docker container:
Expand All @@ -28,5 +28,5 @@ docker run \
-v /Users/xxx/unftp/unftp.crt:/unftp.crt \
-v /Users/xxx/unftp/the-key.json:/key.json \
-ti \
bolcom/unftp:v0.14.7-alpine
bolcom/unftp:v0.15.0-alpine
```
8 changes: 4 additions & 4 deletions docs/server/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,28 +17,28 @@ integration:
Linux (static, no PAM):

```sh
curl -L https://github.com/bolcom/unFTP/releases/download/v0.14.7/unftp_x86_64-unknown-linux-musl \
curl -L https://github.com/bolcom/unFTP/releases/download/v0.15.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.14.7/unftp_x86_64-unknown-linux-gnu \
curl -L https://github.com/bolcom/unFTP/releases/download/v0.15.0/unftp_x86_64-unknown-linux-gnu \
| sudo tee /usr/local/bin/unftp > /dev/null && sudo chmod +x /usr/local/bin/unftp
```

macOS Intel:

```sh
curl -L https://github.com/bolcom/unFTP/releases/download/v0.14.7/unftp_x86_64-apple-darwin \
curl -L https://github.com/bolcom/unFTP/releases/download/v0.15.0/unftp_x86_64-apple-darwin \
| sudo tee /usr/local/bin/unftp > /dev/null && sudo chmod +x /usr/local/bin/unftp
```

macOS ARM:

```sh
curl -L https://github.com/bolcom/unFTP/releases/download/v0.14.7/unftp_aarch64-apple-darwin \
curl -L https://github.com/bolcom/unFTP/releases/download/v0.15.0/unftp_aarch64-apple-darwin \
| sudo tee /usr/local/bin/unftp > /dev/null && sudo chmod +x /usr/local/bin/unftp
```

Expand Down
2 changes: 1 addition & 1 deletion docs/server/pubsub.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ All of them are of type JSON object. Examples of their format are shown below.
"payload": {
"Startup": {
"libunftp_version": "0.19.1",
"unftp_version": "v0.14.7"
"unftp_version": "v0.15.0"
}
}
}
Expand Down

0 comments on commit ff48d65

Please sign in to comment.