You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Five issues flagged by copilot-pull-request-reviewer:
- src/lib.rs: fix typo in REST API path (vi -> v1)
- docs/issues/open/1669-overhaul-packages/EPIC.md: mark SI-07 as DONE in
the Details table (was TODO; quick list already had it checked)
- .github/workflows/deployment.yaml: fix wrong package name
torrust-torrust-server-lib -> torrust-server-lib
- .github/workflows/deployment.yaml: fix wrong package name
torrust-tracker-torrent-benchmarking ->
torrust-tracker-torrent-repository-benchmarking
- packages/server-lib/README.md: fix docs.rs link pointing to
torrust-tracker-axum-server -> torrust-server-lib
Copy file name to clipboardExpand all lines: docs/issues/open/1669-overhaul-packages/EPIC.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -231,7 +231,7 @@ Details:
231
231
| SI-04 |[#1795](https://github.com/torrust/torrust-tracker/issues/1795) — Move `AnnouncePolicy` from `torrust-tracker-configuration` to `torrust-tracker-primitives`|[docs/issues/open/1795-1669-04-move-announce-policy-to-torrust-tracker-primitives.md](../../open/1795-1669-04-move-announce-policy-to-torrust-tracker-primitives.md)| TODO | Rule M; fixes inverted dep (primitives → configuration); no blockers |
232
232
| SI-05 |[#1797](https://github.com/torrust/torrust-tracker/issues/1797) — Create `torrust-net-primitives` and move `ServiceBinding` from `torrust-tracker-primitives`|[docs/issues/open/1797-1669-05-create-torrust-net-primitives-and-move-service-binding.md](../../open/1797-1669-05-create-torrust-net-primitives-and-move-service-binding.md)| TODO | Rule M + new package; generic networking type; breaks server-lib → tracker-primitives dep |
233
233
| SI-06 |[#1813](https://github.com/torrust/torrust-tracker/issues/1813) — Resolve `bittorrent-tracker-core` ↔ `torrust-tracker-rest-api-client` layer violation |[docs/issues/closed/1813-1669-06-resolve-bittorrent-tracker-core-rest-api-layer-violation.md](../../closed/1813-1669-06-resolve-bittorrent-tracker-core-rest-api-layer-violation.md)| DONE | Rule M; stale unused dev dep removed in PR #1804; unblocks `bittorrent-tracker-core` extraction |
234
-
| SI-07 |[#1816](https://github.com/torrust/torrust-tracker/issues/1816) — Align `torrust-` prefix: rename 7 tracker-specific packages to `torrust-tracker-`|[docs/issues/open/1816-1669-07-align-torrust-prefix-rename-tracker-specific-packages.md](../../open/1816-1669-07-align-torrust-prefix-rename-tracker-specific-packages.md)|TODO| Rule U; none of the 7 are published; pure workspace rename; no blockers |
234
+
| SI-07 |[#1816](https://github.com/torrust/torrust-tracker/issues/1816) — Align `torrust-` prefix: rename 7 tracker-specific packages to `torrust-tracker-`|[docs/issues/open/1816-1669-07-align-torrust-prefix-rename-tracker-specific-packages.md](../../open/1816-1669-07-align-torrust-prefix-rename-tracker-specific-packages.md)|DONE| Rule U; none of the 7 are published; pure workspace rename; no blockers |
235
235
| SI-08 | #TBD — Rename `torrust-tracker-metrics` to `torrust-metrics`|[docs/issues/drafts/1669-08-rename-torrust-tracker-metrics-to-torrust-metrics.md](../../drafts/1669-08-rename-torrust-tracker-metrics-to-torrust-metrics.md)| TODO | Rule U; not yet published; no blockers; prerequisite for SI-14 |
236
236
| SI-09 | #TBD — Rename `torrust-tracker-clock` to `torrust-clock`|[docs/issues/drafts/1669-09-rename-torrust-tracker-clock-to-torrust-clock.md](../../drafts/1669-09-rename-torrust-tracker-clock-to-torrust-clock.md)| TODO | Rule P; published on crates.io; no blockers; prerequisite for SI-13 |
237
237
| SI-10 | #TBD — Rename `torrust-tracker-located-error` to `torrust-located-error`|[docs/issues/drafts/1669-10-rename-torrust-tracker-located-error-to-torrust-located-error.md](../../drafts/1669-10-rename-torrust-tracker-located-error-to-torrust-located-error.md)| TODO | Rule P; published on crates.io; no blockers |
Copy file name to clipboardExpand all lines: src/lib.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -365,7 +365,7 @@
365
365
//!
366
366
//! If the tracker is running in `private` or `private_listed` mode you will need to provide a valid authentication key.
367
367
//!
368
-
//! Right now the only way to add new keys is via the REST [`API`](torrust_tracker_axum_rest_api_server). The endpoint `POST /api/vi/key/:duration_in_seconds`
368
+
//! Right now the only way to add new keys is via the REST [`API`](torrust_tracker_axum_rest_api_server). The endpoint `POST /api/v1/key/:duration_in_seconds`
369
369
//! will return an expiring key that will be valid for `duration_in_seconds` seconds.
370
370
//!
371
371
//! Using `curl` you can create a 2-minute valid auth key:
0 commit comments