Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release unftp version 0.15.1 #205

Merged
merged 1 commit into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2024-12-14 unftp v0.15.1

- Upgrade libunftp to 0.20.3 solving '425' errors for passive listening ports

## 2024-12-14 unftp v0.15.0

- Upgraded to new auth and storage backend releases
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unftp"
version = "0.15.0"
version = "0.15.1"
authors = [
"Agoston Horvath <[email protected]>",
"Dávid Kosztka <[email protected]>",
Expand Down Expand Up @@ -42,7 +42,7 @@ http = "0.2.12"
hyper = { version = "0.14.31", features = ["server", "http1"] }
hyper-rustls = "0.23.2"
lazy_static = "1.5.0"
libunftp = "0.20.1"
libunftp = "0.20.3"
opendal = { version = "0.47.3", optional = true }
prometheus = { version = "0.13.4", features = ["process"] }
serde = { version = "1.0.216", features = ["derive"] }
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.15.0
> v0.15.1
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.15.0-alpine
docker pull bolcom/unftp:v0.15.0-scratch
docker pull bolcom/unftp:v0.15.1-alpine
docker pull bolcom/unftp:v0.15.1-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.15.0-alpine
bolcom/unftp:v0.15.1-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.15.0/unftp_x86_64-unknown-linux-musl \
curl -L https://github.com/bolcom/unFTP/releases/download/v0.15.1/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.15.0/unftp_x86_64-unknown-linux-gnu \
curl -L https://github.com/bolcom/unFTP/releases/download/v0.15.1/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.15.0/unftp_x86_64-apple-darwin \
curl -L https://github.com/bolcom/unFTP/releases/download/v0.15.1/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.15.0/unftp_aarch64-apple-darwin \
curl -L https://github.com/bolcom/unFTP/releases/download/v0.15.1/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.15.0"
"unftp_version": "v0.15.1"
}
}
}
Expand Down
Loading