torrust-tracker icon indicating copy to clipboard operation
torrust-tracker copied to clipboard

A modern and feature-rich (private) BitTorrent tracker.

Results 173 torrust-tracker issues
Sort by recently updated
recently updated
newest added

Bumps [serde_with](https://github.com/jonasbb/serde_with) from 3.9.0 to 3.11.0. Release notes Sourced from serde_with's releases. serde_with v3.11.0 Added Add support for hashbrown v0.15 (#787/#790) This extends the existing support for hashbrown v0.14 to...

Dependencies
Build | Project System

Bumps [axum](https://github.com/tokio-rs/axum) from 0.7.6 to 0.7.7. Release notes Sourced from axum's releases. axum-extra - v0.7.7 added: Clone implementation for ErasedJson (#2142) #2142: tokio-rs/axum#2142 axum v0.7.7 change: Remove manual tables of...

Dependencies
Build | Project System

Bumps [rstest](https://github.com/la10736/rstest) from 0.22.0 to 0.23.0. Release notes Sourced from rstest's releases. 0.23.0 What's Changed Upgrade to async-std v1.13 by @​jayvdb in la10736/rstest#274 Allow environment variables in #[files] attributes by...

Dependencies
Build | Project System

Bumps [hyper-util](https://github.com/hyperium/hyper-util) from 0.1.8 to 0.1.9. Release notes Sourced from hyper-util's releases. v0.1.9 What's Changed Add support for client::legacy DNS resolvers to set non-zero ports on returned addresses. Fix client::legacy...

Dependencies
Build | Project System

Bumps [ringbuf](https://github.com/agerasev/ringbuf) from 0.4.4 to 0.4.7. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ringbuf&package-manager=cargo&previous-version=0.4.4&new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: #...

Dependencies
Build | Project System

Active toolchain: nightly-x86_64-unknown-linux-gnu (default) rustc 1.83.0-nightly (7042c269c 2024-09-23) ```output Compiling axum-client-ip v0.6.0 thread 'rustc' panicked at compiler/rustc_mir_transform/src/validate.rs:152:26: broken MIR in Item(DefId(0:339 ~ axum_server[2cd6]::tls_rustls::future::{impl#2}::poll)) (after phase change to runtime-optimized) at bb40[2]:...

Bug
Build | Project System

We publish two docker images for the same app version with and without the "v" prefix. See: https://hub.docker.com/repository/docker/torrust/tracker/tags ![image](https://github.com/user-attachments/assets/e854d3ab-f597-4a36-88f5-c3c30ab74494) I guess that was not an intended behaviour, right @da2ce7?

Bug
Continuous Integration

Usually, when you run the tracker for benchmarking, you disable persistency completely. ```toml [metadata] schema_version = "2.0.0" [logging] threshold = "error" [core] listed = false private = false tracker_usage_statistics =...

Enhancement / Feature Request
- Admin -

We are using this function to generate random keys: ```rust use rand::distributions::Alphanumeric; use rand::{thread_rng, Rng}; pub fn generate(lifetime: Duration) -> ExpiringKey { let random_id: String = thread_rng() .sample_iter(&Alphanumeric) .take(AUTH_KEY_LENGTH) .map(char::from)...

Security
Question / Discussion

Figured out with Actix (which Torrust isn't using) doesn't handle Keep-Alive when traffic from CloudFlare is coming from a pure HTTP (port 80) protocol. It seems it only works on...