Skip to content

Commit 84a8536

Browse files
committed
Version v1.71.2
1 parent 4013f00 commit 84a8536

16 files changed

Lines changed: 586 additions & 309 deletions

MANUAL.html

Lines changed: 148 additions & 78 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MANUAL.md

Lines changed: 104 additions & 64 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MANUAL.txt

Lines changed: 131 additions & 86 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/content/changelog.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,29 @@ description: "Rclone Changelog"
66

77
# Changelog
88

9+
## v1.71.2 - 2025-10-20
10+
11+
[See commits](https://github.com/rclone/rclone/compare/v1.71.1...v1.71.2)
12+
13+
- Bug Fixes
14+
- build
15+
- update Go to 1.25.3
16+
- Update Docker image Alpine version to fix CVE-2025-9230
17+
- bisync: Fix race when CaptureOutput is used concurrently (Nick Craig-Wood)
18+
- doc fixes (albertony, dougal, iTrooz, Matt LaPaglia, Nick Craig-Wood)
19+
- index: Add missing providers (dougal)
20+
- serve http: Fix: logging URL on start (dougal)
21+
- Azurefiles
22+
- Fix server side copy not waiting for completion (Vikas Bhansali)
23+
- B2
24+
- Fix 1TB+ uploads (dougal)
25+
- Google Cloud Storage
26+
- Add region us-east5 (Dulani Woods)
27+
- Mega
28+
- Fix 402 payment required errors (Nick Craig-Wood)
29+
- Pikpak
30+
- Fix unnecessary retries by using URL expire parameter (Youfu Zhang)
31+
932
## v1.71.1 - 2025-09-24
1033

1134
[See commits](https://github.com/rclone/rclone/compare/v1.71.0...v1.71.1)

docs/content/commands/rclone.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1013,7 +1013,7 @@ rclone [flags]
10131013
--use-json-log Use json log format
10141014
--use-mmap Use mmap allocator (see docs)
10151015
--use-server-modtime Use server modified time instead of object metadata
1016-
--user-agent string Set the user-agent to a specified string (default "rclone/v1.71.1")
1016+
--user-agent string Set the user-agent to a specified string (default "rclone/v1.71.2")
10171017
-v, --verbose count Print lots more stuff (repeat for more)
10181018
-V, --version Print the version number
10191019
--webdav-auth-redirect Preserve authentication on redirect

docs/content/commands/rclone_authorize.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ Remote authorization.
1111
## Synopsis
1212

1313
Remote authorization. Used to authorize a remote or headless
14-
rclone from a machine with a browser - use as instructed by
15-
rclone config.
14+
rclone from a machine with a browser. Use as instructed by rclone config.
15+
See also the [remote setup documentation](/remote_setup).
1616

1717
The command requires 1-3 arguments:
1818

19-
- fs name (e.g., "drive", "s3", etc.)
19+
- Name of a backend (e.g. "drive", "s3")
2020
- Either a base64 encoded JSON blob obtained from a previous rclone config session
2121
- Or a client_id and client_secret pair obtained from the remote service
2222

@@ -27,7 +27,7 @@ Use --template to generate HTML output via a custom Go template. If a blank
2727
string is provided as an argument to this flag, the default template is used.
2828

2929
```
30-
rclone authorize <fs name> [base64_json_blob | client_id client_secret] [flags]
30+
rclone authorize <backendname> [base64_json_blob | client_id client_secret] [flags]
3131
```
3232

3333
## Options

docs/content/commands/rclone_convmv.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,12 +231,12 @@ rclone convmv "stories/The Quick Brown Fox!.txt" --name-transform "all,command=e
231231

232232
```sh
233233
rclone convmv "stories/The Quick Brown Fox!" --name-transform "date=-{YYYYMMDD}"
234-
// Output: stories/The Quick Brown Fox!-20250924
234+
// Output: stories/The Quick Brown Fox!-20251020
235235
```
236236

237237
```sh
238238
rclone convmv "stories/The Quick Brown Fox!" --name-transform "date=-{macfriendlytime}"
239-
// Output: stories/The Quick Brown Fox!-2025-09-24 0413PM
239+
// Output: stories/The Quick Brown Fox!-2025-10-20 1251PM
240240
```
241241

242242
```sh

docs/content/commands/rclone_rcd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ You can either use an htpasswd file which can take lots of users, or
130130
set a single username and password with the `--rc-user` and `--rc-pass` flags.
131131

132132
Alternatively, you can have the reverse proxy manage authentication and use the
133-
username provided in the configured header with `--user-from-header` (e.g., `--rc---user-from-header=x-remote-user`).
133+
username provided in the configured header with `--user-from-header` (e.g., `--rc-user-from-header=x-remote-user`).
134134
Ensure the proxy is trusted and headers cannot be spoofed, as misconfiguration
135135
may lead to unauthorized access.
136136

docs/content/commands/rclone_serve_http.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ You can either use an htpasswd file which can take lots of users, or
132132
set a single username and password with the `--user` and `--pass` flags.
133133

134134
Alternatively, you can have the reverse proxy manage authentication and use the
135-
username provided in the configured header with `--user-from-header` (e.g., `----user-from-header=x-remote-user`).
135+
username provided in the configured header with `--user-from-header` (e.g., `--user-from-header=x-remote-user`).
136136
Ensure the proxy is trusted and headers cannot be spoofed, as misconfiguration
137137
may lead to unauthorized access.
138138

docs/content/commands/rclone_serve_restic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ You can either use an htpasswd file which can take lots of users, or
173173
set a single username and password with the `--user` and `--pass` flags.
174174

175175
Alternatively, you can have the reverse proxy manage authentication and use the
176-
username provided in the configured header with `--user-from-header` (e.g., `----user-from-header=x-remote-user`).
176+
username provided in the configured header with `--user-from-header` (e.g., `--user-from-header=x-remote-user`).
177177
Ensure the proxy is trusted and headers cannot be spoofed, as misconfiguration
178178
may lead to unauthorized access.
179179

0 commit comments

Comments
 (0)