Skip to content

Commit

Permalink
Release libunftp version 0.18.7
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesdejager committed Oct 26, 2022
1 parent 764754a commit 78f3155
Show file tree
Hide file tree
Showing 12 changed files with 72 additions and 65 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

### 2022-10-26 libunftp 0.18.7

- [#430](https://github.com/bolcom/libunftp/pull/430) Fix issue with proxy protocol hash construction
- [#432](https://github.com/bolcom/libunftp/pull/432) Show Trace ID as hex in debug output
- [#434](https://github.com/bolcom/libunftp/issues/434) Time out if client doesn't connect on data port after PASV
- Upgraded dependencies

### 2022-09-25 libunftp 0.18.6

- [#429](https://github.com/bolcom/libunftp/pull/429) Await proxy protocol header in a separate task, fixes issue [#208](https://github.com/bolcom/libunftp/issues/208)
Expand Down
24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libunftp"
version = "0.18.6" # remember to update html_root_url
version = "0.18.7" # remember to update html_root_url
authors = [
"Agoston Horvath <[email protected]>",
"Dávid Kosztka <[email protected]>",
Expand Down Expand Up @@ -30,32 +30,32 @@ members = [
]

[dependencies]
async-trait = "0.1.57"
async-trait = "0.1.58"
bitflags = "1.3.2"
bytes = "1.2.1"
chrono = { version = "0.4.22", default-features = false, features = ["std"] }
derive_more = { version = "0.99.17", features = ["display"] }
futures-util = { version = "0.3.24", default-features = false, features = ["alloc", "sink"] }
getrandom = "0.2.7"
futures-util = { version = "0.3.25", default-features = false, features = ["alloc", "sink"] }
getrandom = "0.2.8"
lazy_static = "1.4.0"
md-5 = "0.10.5"
moka = "0.9.4"
prometheus = { version = "0.13.2", default-features = false }
prometheus = { version = "0.13.3", default-features = false }
proxy-protocol = "0.5.0"
rustls = "0.20.6"
rustls = "0.20.7"
rustls-pemfile = "1.0.1"
slog = { version = "2.7.0", features = ["max_level_trace", "release_max_level_info"] }
slog-stdlog = "4.1.1"
thiserror = "1.0.35"
tokio = { version = "1.21.1", features = ["macros", "rt", "net", "sync", "io-util", "time"] }
thiserror = "1.0.37"
tokio = { version = "1.21.2", features = ["macros", "rt", "net", "sync", "io-util", "time"] }
tokio-rustls = "0.23.4"
tokio-util = { version = "0.7.4", features = ["codec"] }
tracing = { version = "0.1.36", default-features = false }
tracing-attributes = "0.1.22"
uuid = { version = "1.1.2", features = ["v4"] }
tracing = { version = "0.1.37", default-features = false }
tracing-attributes = "0.1.23"
uuid = { version = "1.2.1", features = ["v4"] }
x509-parser = "0.14.0"

[dev-dependencies]
pretty_assertions = "1.3.0"
tokio = { version = "1.21.1", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.21.2", features = ["macros", "rt-multi-thread"] }
unftp-sbe-fs = { path = "../libunftp/crates/unftp-sbe-fs"}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ add. Here we choose the [file system back-end](https://crates.io/crates/unftp-sb

```toml
[dependencies]
libunftp = "0.18.6"
libunftp = "0.18.7"
unftp-sbe-fs = "0.2"
tokio = { version = "1", features = ["full"] }
```
Expand Down
18 changes: 9 additions & 9 deletions crates/unftp-auth-jsonfile/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,21 @@ repository = "https://github.com/bolcom/libunftp/tree/master/crates/unftp-auth-j
readme = "README.md"

[dependencies]
async-trait = "0.1.57"
base64 = "0.13.0"
async-trait = "0.1.58"
base64 = "0.13.1"
bytes = "1.2.1"
ipnet = "2.5.0"
iprange = "0.6.7"
libunftp = { version="0.18.6", path="../../"}
libunftp = { version="0.18.7", path="../../"}
ring = "0.16.20"
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.85"
tokio = { version = "1.21.1", features = ["rt", "time"] }
tracing = { version = "0.1.36", default-features = false }
tracing-attributes = "0.1.22"
serde = { version = "1.0.147", features = ["derive"] }
serde_json = "1.0.87"
tokio = { version = "1.21.2", features = ["rt", "time"] }
tracing = { version = "0.1.37", default-features = false }
tracing-attributes = "0.1.23"
valid = "0.3.1"

[dev-dependencies]
pretty_env_logger = "0.4.0"
tokio = { version = "1.21.1", features = ["macros"] }
tokio = { version = "1.21.2", features = ["macros"] }
unftp-sbe-fs = { version="0.2.1", path="../unftp-sbe-fs"}
10 changes: 5 additions & 5 deletions crates/unftp-auth-pam/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ repository = "https://github.com/bolcom/libunftp/tree/master/crates/unftp-auth-p
readme = "README.md"

[dependencies]
async-trait = "0.1.57"
libunftp = { version="0.18.6", path="../../"}
tracing = { version = "0.1.36", default-features = false }
tracing-attributes = "0.1.22"
async-trait = "0.1.58"
libunftp = { version="0.18.7", path="../../"}
tracing = { version = "0.1.37", default-features = false }
tracing-attributes = "0.1.23"

[target.'cfg(target_family = "unix")'.dependencies]
pam-auth = { package = "pam", version = "0.7.0" }

[dev-dependencies]
tokio = { version = "1.21.1", features = ["macros"] }
tokio = { version = "1.21.2", features = ["macros"] }
16 changes: 8 additions & 8 deletions crates/unftp-auth-rest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,20 @@ repository = "https://github.com/bolcom/libunftp/tree/hannes/crates/unftp-auth-r
readme = "README.md"

[dependencies]
async-trait = "0.1.57"
async-trait = "0.1.58"
hyper = { version = "0.14.20", features = ["client", "runtime", "stream", "http1"] }
hyper-rustls = "0.23.0"
libunftp = { version="0.18.6", path="../../"}
libunftp = { version="0.18.7", path="../../"}
percent-encoding = "2.2.0"
regex = "1.6.0"
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.85"
tokio = { version = "1.21.1", features = ["rt", "net", "sync", "io-util", "time"] }
tracing = { version = "0.1.36", default-features = false }
tracing-attributes = "0.1.22"
serde = { version = "1.0.147", features = ["derive"] }
serde_json = "1.0.87"
tokio = { version = "1.21.2", features = ["rt", "net", "sync", "io-util", "time"] }
tracing = { version = "0.1.37", default-features = false }
tracing-attributes = "0.1.23"


[dev-dependencies]
pretty_env_logger = "0.4.0"
tokio = { version = "1.21.1", features = ["macros"] }
tokio = { version = "1.21.2", features = ["macros"] }
unftp-sbe-fs = { version="0.2.1", path="../unftp-sbe-fs"}
22 changes: 11 additions & 11 deletions crates/unftp-sbe-fs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,23 @@ repository = "https://github.com/bolcom/libunftp/tree/master/crates/unftp-sbe-fs
readme = "README.md"

[dependencies]
async-trait = "0.1.57"
futures = { version = "0.3.24", default-features = false, features = ["std"] }
libunftp = { version="0.18.6", path="../../"}
async-trait = "0.1.58"
futures = { version = "0.3.25", default-features = false, features = ["std"] }
libunftp = { version="0.18.7", path="../../"}
path_abs = "0.5.1"
tokio = { version = "1.21.1", features = ["rt", "net", "sync", "io-util", "time", "fs"] }
tokio-stream = "0.1.10"
tracing = { version = "0.1.36", default-features = false }
tracing-attributes = "0.1.22"
tokio = { version = "1.21.2", features = ["rt", "net", "sync", "io-util", "time", "fs"] }
tokio-stream = "0.1.11"
tracing = { version = "0.1.37", default-features = false }
tracing-attributes = "0.1.23"

[dev-dependencies]
async_ftp = "6.0.0"
more-asserts = "0.3.0"
more-asserts = "0.3.1"
pretty_assertions = "1.3.0"
pretty_env_logger = "0.4.0"
slog-async = "2.7.0"
slog-term = "2.9.0"
tempfile = "3.3.0"
tokio = { version = "1.21.1", features = ["macros", "rt-multi-thread"] }
tracing-subscriber = "0.3.15"
getrandom = "0.2.7"
tokio = { version = "1.21.2", features = ["macros", "rt-multi-thread"] }
tracing-subscriber = "0.3.16"
getrandom = "0.2.8"
2 changes: 1 addition & 1 deletion crates/unftp-sbe-fs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Add the libunftp and tokio crates to your project's dependencies in `Cargo.toml`

```toml
[dependencies]
libunftp = "0.18.6"
libunftp = "0.18.7"
unftp-sbe-fs = "0.2.1"
tokio = { version = "1", features = ["full"] }
```
Expand Down
28 changes: 14 additions & 14 deletions crates/unftp-sbe-gcs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,31 +18,31 @@ repository = "https://github.com/bolcom/libunftp/tree/master/crates/unftp-sbe-gc
readme = "README.md"

[dependencies]
async-trait = "0.1.57"
base64 = "0.13.0"
async-trait = "0.1.58"
base64 = "0.13.1"
bytes = "1.2.1"
chrono = { version = "0.4.22", default-features = false, features = ["std", "serde"] }
futures = { version = "0.3.24", default-features = false, features = ["std"] }
futures = { version = "0.3.25", default-features = false, features = ["std"] }
hyper = { version = "0.14.20", features = ["client", "runtime", "stream", "http1"] }
hyper-rustls = "0.23.0"
libunftp = { version="0.18.6", path="../../"}
libunftp = { version="0.18.7", path="../../"}
mime = "0.3.16"
percent-encoding = "2.2.0"
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.85"
time = "0.3.15"
tokio = { version = "1.21.1", features = ["rt", "net", "sync", "io-util", "time", "fs"] }
tokio-stream = "0.1.10"
serde = { version = "1.0.147", features = ["derive"] }
serde_json = "1.0.87"
time = "0.3.16"
tokio = { version = "1.21.2", features = ["rt", "net", "sync", "io-util", "time", "fs"] }
tokio-stream = "0.1.11"
tokio-util = { version = "0.7.4", features = ["codec", "compat"] }
tracing = { version = "0.1.36", default-features = false }
tracing-attributes = "0.1.22"
tracing = { version = "0.1.37", default-features = false }
tracing-attributes = "0.1.23"
yup-oauth2 = "7.0.1"

[dev-dependencies]
async_ftp = "6.0.0"
clap = { version = "3.2.22", features = ["env"] }
lazy_static = "1.4.0"
more-asserts = "0.3.0"
more-asserts = "0.3.1"
path_abs = "0.5.1"
pretty_assertions = "1.3.0"
pretty_env_logger = "0.4.0"
Expand All @@ -51,5 +51,5 @@ slog-async = "2.7.0"
slog-stdlog = "4.1.1"
slog-term = "2.9.0"
tempfile = "3.3.0"
tokio = { version = "1.21.1", features = ["macros", "rt-multi-thread"] }
tracing-subscriber = "0.3.15"
tokio = { version = "1.21.2", features = ["macros", "rt-multi-thread"] }
tracing-subscriber = "0.3.16"
2 changes: 1 addition & 1 deletion crates/unftp-sbe-gcs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Add the needed dependencies to Cargo.toml:

```toml
[dependencies]
libunftp = "0.18.6"
libunftp = "0.18.7"
unftp-sbe-gcs = "0.2.1"
tokio = { version = "1", features = ["full"] }
```
Expand Down
2 changes: 1 addition & 1 deletion crates/unftp-sbe-gcs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
//!
//! ```toml
//! [dependencies]
//! libunftp = "0.18.6"
//! libunftp = "0.18.7"
//! unftp-sbe-gcs = "0.2.1"
//! tokio = { version = "1", features = ["full"] }
//! ```
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#![deny(clippy::all)]
#![deny(missing_docs)]
#![forbid(unsafe_code)]
#![doc(html_root_url = "https://docs.rs/libunftp/0.18.6")]
#![doc(html_root_url = "https://docs.rs/libunftp/0.18.7")]

//! libunftp is an extensible, async, cloud orientated FTP(S) server library.
//!
Expand All @@ -20,7 +20,7 @@
//!
//! ```toml
//! [dependencies]
//! libunftp = "0.18.6"
//! libunftp = "0.18.7"
//! unftp-sbe-fs = "0.2.0"
//! tokio = { version = "1", features = ["full"] }
//! ```
Expand Down

0 comments on commit 78f3155

Please sign in to comment.