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 all crates #525

Merged
merged 4 commits into from
Dec 15, 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
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Changelog

## 2024-12-15 Release of all crates

### libunftp 0.20.2

_tag: libunftp-0.20.2_

- Upgraded dependencies

### unftp-auth-jsonfile v0.3.5, unftp-auth-pam v0.2.6

- Compiled against libunftp v0.20.2
- Upgraded dependencies

### unftp-auth-rest v0.2.7

- [520](https://github.com/bolcom/libunftp/pull/520) Allow https for auth rest url
- Compiled against libunftp v0.20.2
- Upgraded dependencies

### unftp-sbe-fs v0.2.6, unftp-sbe-gcs v0.2.7

- Compiled against libunftp v0.20.2
- Upgraded dependencies

### libunftp 0.20.1

- Fixed a build issue on Windows
Expand Down
38 changes: 19 additions & 19 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libunftp"
version = "0.20.1" # remember to update html_root_url
version = "0.20.2" # remember to update html_root_url
authors = [
"Agoston Horvath <[email protected]>",
"Dávid Kosztka <[email protected]>",
Expand Down Expand Up @@ -37,37 +37,37 @@ missing_docs = "deny"
all = "deny"

[dependencies]
async-trait = "0.1.80"
bitflags = "2.5.0"
bytes = "1.6.0"
chrono = { version = "0.4.38", default-features = false, features = ["clock", "std"] }
async-trait = "0.1.83"
bitflags = "2.6.0"
bytes = "1.9.0"
chrono = { version = "0.4.39", default-features = false, features = ["clock", "std"] }
derive_more = { version = "0.99.18", features = ["display"] }
futures-util = { version = "0.3.30", default-features = false, features = ["alloc", "sink"] }
futures-util = { version = "0.3.31", default-features = false, features = ["alloc", "sink"] }
getrandom = "0.2.15"
lazy_static = "1.4.0"
lazy_static = "1.5.0"
md-5 = "0.10.6"
moka = { version = "0.12.7", default-features = false, features = ["sync"] }
moka = { version = "0.12.8", default-features = false, features = ["sync"] }
nix = { version = "0.29.0", default-features = false, features = ["fs"] }
prometheus = { version = "0.13.4", default-features = false }
proxy-protocol = "0.5.0"
rustls = "0.23.10"
rustls-pemfile = "2.1.2"
rustls = "0.23.20"
rustls-pemfile = "2.2.0"
slog = { version = "2.7.0", features = ["max_level_trace", "release_max_level_info"] }
slog-stdlog = "4.1.1"
thiserror = "1.0.61"
tokio = { version = "1.38.0", features = ["macros", "rt", "net", "process", "sync", "io-util", "time"] }
tokio-rustls = "0.26.0"
tokio-util = { version = "0.7.11", features = ["codec"] }
tracing = { version = "0.1.40", default-features = false }
tracing-attributes = "0.1.27"
uuid = { version = "1.8.0", features = ["v4"] }
thiserror = "1.0.69"
tokio = { version = "1.42.0", features = ["macros", "rt", "net", "process", "sync", "io-util", "time"] }
tokio-rustls = "0.26.1"
tokio-util = { version = "0.7.13", features = ["codec"] }
tracing = { version = "0.1.41", default-features = false }
tracing-attributes = "0.1.28"
uuid = { version = "1.11.0", features = ["v4"] }
x509-parser = "0.16.0"
dashmap = "5.5.3"
libc = "0.2"

[dev-dependencies]
pretty_assertions = "1.4.0"
tokio = { version = "1.38.0", features = ["macros", "rt-multi-thread"] }
pretty_assertions = "1.4.1"
tokio = { version = "1.42.0", features = ["macros", "rt-multi-thread"] }
unftp-sbe-fs = { path = "../libunftp/crates/unftp-sbe-fs" }

[lints]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ add. Here we choose the [file system back-end](https://crates.io/crates/unftp-sb

```toml
[dependencies]
libunftp = "0.20.1"
libunftp = "0.20.2"
unftp-sbe-fs = "0.2"
tokio = { version = "1", features = ["full"] }
```
Expand Down
24 changes: 12 additions & 12 deletions crates/unftp-auth-jsonfile/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unftp-auth-jsonfile"
version = "0.3.4"
version = "0.3.5"
description = "An authentication back-end for libunftp that authenticates against credentials in JSON format"
authors = [
"Agoston Horvath <[email protected]>",
Expand All @@ -18,24 +18,24 @@ repository = "https://github.com/bolcom/libunftp/tree/master/crates/unftp-auth-j
readme = "README.md"

[dependencies]
async-trait = "0.1.80"
async-trait = "0.1.83"
base64 = "0.21.7"
bytes = "1.6.0"
ipnet = "2.9.0"
bytes = "1.9.0"
ipnet = "2.10.1"
iprange = "0.6.7"
libunftp = { version = "0.20.1", path = "../../" }
libunftp = { version = "0.20.2", path = "../../" }
ring = "0.16.20"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
tokio = { version = "1.38.0", features = ["rt", "time"] }
tracing = { version = "0.1.40", default-features = false }
tracing-attributes = "0.1.27"
serde = { version = "1.0.216", features = ["derive"] }
serde_json = "1.0.133"
tokio = { version = "1.42.0", features = ["rt", "time"] }
tracing = { version = "0.1.41", default-features = false }
tracing-attributes = "0.1.28"
valid = "0.3.1"
flate2 = "1.0.30"
flate2 = "1.0.35"

[dev-dependencies]
pretty_env_logger = "0.5.0"
tokio = { version = "1.38.0", features = ["macros"] }
tokio = { version = "1.42.0", features = ["macros"] }
unftp-sbe-fs = { version = "0.2.2", path = "../unftp-sbe-fs" }

[lints]
Expand Down
2 changes: 2 additions & 0 deletions crates/unftp-auth-jsonfile/tests/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(missing_docs)]

use libunftp::auth::{Authenticator, DefaultUser};
use std::path::PathBuf;
use unftp_auth_jsonfile::JsonFileAuthenticator;
Expand Down
12 changes: 6 additions & 6 deletions crates/unftp-auth-pam/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unftp-auth-pam"
version = "0.2.5"
version = "0.2.6"
description = "An authentication back-end for libunftp that authenticates using PAM"
authors = [
"Agoston Horvath <[email protected]>",
Expand All @@ -19,16 +19,16 @@ repository = "https://github.com/bolcom/libunftp/tree/master/crates/unftp-auth-p
readme = "README.md"

[dependencies]
async-trait = "0.1.80"
libunftp = { version = "0.20.1", path = "../../" }
tracing = { version = "0.1.40", default-features = false }
tracing-attributes = "0.1.27"
async-trait = "0.1.83"
libunftp = { version = "0.20.2", path = "../../" }
tracing = { version = "0.1.41", default-features = false }
tracing-attributes = "0.1.28"

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

[dev-dependencies]
tokio = { version = "1.38.0", features = ["macros"] }
tokio = { version = "1.42.0", features = ["macros"] }

[lints]
workspace = true
22 changes: 11 additions & 11 deletions crates/unftp-auth-rest/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unftp-auth-rest"
version = "0.2.6"
version = "0.2.7"
description = "An authentication back-end for libunftp that consumes an HTTP API to authenticate"
authors = [
"Agoston Horvath <[email protected]>",
Expand All @@ -18,22 +18,22 @@ repository = "https://github.com/bolcom/libunftp/tree/hannes/crates/unftp-auth-r
readme = "README.md"

[dependencies]
async-trait = "0.1.80"
hyper = { version = "0.14.29", features = ["client", "runtime", "stream", "http1"] }
async-trait = "0.1.83"
hyper = { version = "0.14.31", features = ["client", "runtime", "stream", "http1"] }
hyper-rustls = "0.24.2"
libunftp = { version = "0.20.1", path = "../../" }
libunftp = { version = "0.20.2", path = "../../" }
percent-encoding = "2.3.1"
regex = "1.10.5"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
tokio = { version = "1.38.0", features = ["rt", "net", "sync", "io-util", "time"] }
tracing = { version = "0.1.40", default-features = false }
tracing-attributes = "0.1.27"
regex = "1.11.1"
serde = { version = "1.0.216", features = ["derive"] }
serde_json = "1.0.133"
tokio = { version = "1.42.0", features = ["rt", "net", "sync", "io-util", "time"] }
tracing = { version = "0.1.41", default-features = false }
tracing-attributes = "0.1.28"


[dev-dependencies]
pretty_env_logger = "0.5.0"
tokio = { version = "1.38.0", features = ["macros"] }
tokio = { version = "1.42.0", features = ["macros"] }
unftp-sbe-fs = { version = "0.2.2", path = "../unftp-sbe-fs" }

[lints]
Expand Down
1 change: 0 additions & 1 deletion crates/unftp-auth-rest/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ impl Builder {
/// `with_body` .
///
///

pub fn new() -> Builder {
Builder { ..Default::default() }
}
Expand Down
11 changes: 0 additions & 11 deletions crates/unftp-sbe-fs/CHANGELOG.md

This file was deleted.

40 changes: 20 additions & 20 deletions crates/unftp-sbe-fs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unftp-sbe-fs"
version = "0.2.5"
version = "0.2.6"
description = "A storage back-end for libunftp, storing files on local disk"
authors = [
"Agoston Horvath <[email protected]>",
Expand All @@ -19,39 +19,39 @@ repository = "https://github.com/bolcom/libunftp/tree/master/crates/unftp-sbe-fs
readme = "README.md"

[dependencies]
async-trait = "0.1.80"
async-trait = "0.1.83"
cfg-if = "1.0"
cap-std = "3.1"
futures = { version = "0.3.30", default-features = false, features = ["std"] }
lazy_static = "1.4.0"
libunftp = { version = "0.20.1", path = "../../" }
cap-std = "3.4"
futures = { version = "0.3.31", default-features = false, features = ["std"] }
lazy_static = "1.5.0"
libunftp = { version = "0.20.2", path = "../../" }
path_abs = "0.5.1"
tokio = { version = "1.38.0", features = ["rt", "net", "sync", "io-util", "time", "fs"] }
tokio-stream = "0.1.15"
tracing = { version = "0.1.40", default-features = false }
tracing-attributes = "0.1.27"
tokio = { version = "1.42.0", features = ["rt", "net", "sync", "io-util", "time", "fs"] }
tokio-stream = "0.1.17"
tracing = { version = "0.1.41", default-features = false }
tracing-attributes = "0.1.28"

[dev-dependencies]
async_ftp = "6.0.0"
async-trait = "0.1.80"
chrono = "0.4.0"
async-trait = "0.1.83"
chrono = "0.4.39"
more-asserts = "0.3.1"
nix = { version = "0.29.0", default-features = false, features = ["user"] }
pretty_assertions = "1.4.0"
pretty_assertions = "1.4.1"
pretty_env_logger = "0.5.0"
regex = "1.10.5"
regex = "1.11.1"
rstest = "0.18.2"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
serde = { version = "1.0.216", features = ["derive"] }
serde_json = "1.0.133"
slog-async = "2.8.0"
slog-term = "2.9.1"
tempfile = "3.10.1"
tokio = { version = "1.38.0", features = ["macros", "rt-multi-thread"] }
tracing-subscriber = "0.3.18"
tempfile = "3.14.0"
tokio = { version = "1.42.0", features = ["macros", "rt-multi-thread"] }
tracing-subscriber = "0.3.19"
getrandom = "0.2.15"

[target.'cfg(target_os = "freebsd")'.dev-dependencies]
capsicum = { version = "0.4.2", features = ["casper"] }
capsicum = { version = "0.4.4", features = ["casper"] }
capsicum-net = { version = "0.1.0", features = ["tokio"] }

[lints]
Expand Down
4 changes: 2 additions & 2 deletions crates/unftp-sbe-fs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ Add the libunftp and tokio crates to your project's dependencies in `Cargo.toml`

```toml
[dependencies]
libunftp = "0.20.1"
unftp-sbe-fs = "0.2.5"
libunftp = "0.20.2"
unftp-sbe-fs = "0.2.6"
tokio = { version = "1", features = ["full"] }
```

Expand Down
2 changes: 2 additions & 0 deletions crates/unftp-sbe-fs/tests/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(missing_docs)]

use async_ftp::{types::Result, FtpStream};
use libunftp::{auth::DefaultUser, options::FtpsRequired, ServerBuilder};
use pretty_assertions::assert_eq;
Expand Down
40 changes: 20 additions & 20 deletions crates/unftp-sbe-gcs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "unftp-sbe-gcs"
description = "A storage back-end for libunftp, storing files in Google Cloud Storage (GCS)"
version = "0.2.6"
version = "0.2.7"
authors = [
"Agoston Horvath <[email protected]>",
"Dávid Kosztka <[email protected]>",
Expand All @@ -18,38 +18,38 @@ repository = "https://github.com/bolcom/libunftp/tree/master/crates/unftp-sbe-gc
readme = "README.md"

[dependencies]
async-trait = "0.1.80"
async-trait = "0.1.83"
base64 = "0.21.7"
bytes = "1.6.0"
chrono = { version = "0.4.38", default-features = false, features = ["std", "serde"] }
futures = { version = "0.3.30", default-features = false, features = ["std"] }
hyper = { version = "0.14.29", features = ["client", "runtime", "stream", "http1"] }
bytes = "1.9.0"
chrono = { version = "0.4.39", default-features = false, features = ["std", "serde"] }
futures = { version = "0.3.31", default-features = false, features = ["std"] }
hyper = { version = "0.14.31", features = ["client", "runtime", "stream", "http1"] }
hyper-rustls = "0.24.2"
libunftp = { version = "0.20.1", path = "../../" }
libunftp = { version = "0.20.2", path = "../../" }
mime = "0.3.17"
percent-encoding = "2.3.1"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
time = "0.3.36"
tokio = { version = "1.38.0", features = ["rt", "net", "sync", "io-util", "time", "fs"] }
tokio-stream = "0.1.15"
tokio-util = { version = "0.7.11", features = ["codec", "compat"] }
tracing = { version = "0.1.40", default-features = false }
tracing-attributes = "0.1.27"
serde = { version = "1.0.216", features = ["derive"] }
serde_json = "1.0.133"
time = "0.3.37"
tokio = { version = "1.42.0", features = ["rt", "net", "sync", "io-util", "time", "fs"] }
tokio-stream = "0.1.17"
tokio-util = { version = "0.7.13", features = ["codec", "compat"] }
tracing = { version = "0.1.41", default-features = false }
tracing-attributes = "0.1.28"
yup-oauth2 = "8.3.2"

[dev-dependencies]
async_ftp = "6.0.0"
clap = { version = "3.2.25", features = ["env"] }
lazy_static = "1.4.0"
lazy_static = "1.5.0"
more-asserts = "0.3.1"
path_abs = "0.5.1"
pretty_assertions = "1.4.0"
pretty_assertions = "1.4.1"
pretty_env_logger = "0.5.0"
slog = { version = "2.7.0", features = ["max_level_trace", "release_max_level_info"] }
slog-async = "2.8.0"
slog-stdlog = "4.1.1"
slog-term = "2.9.1"
tempfile = "3.10.1"
tokio = { version = "1.38.0", features = ["macros", "rt-multi-thread"] }
tracing-subscriber = "0.3.18"
tempfile = "3.14.0"
tokio = { version = "1.42.0", features = ["macros", "rt-multi-thread"] }
tracing-subscriber = "0.3.19"
Loading
Loading