diff --git a/MANUAL.html b/MANUAL.html
index 1327ff595..b29676b37 100644
--- a/MANUAL.html
+++ b/MANUAL.html
@@ -81,7 +81,7 @@
Sep 24, 2024 Nov 15, 2024rclone(1) User Manual
-
Adds path/file names to an rclone command based on rules in a named file. The file contains a list of remarks and pattern rules. Include rules start with +
and exclude rules with -
. !
clears existing rules. Rules are processed in the order they are defined.
This flag can be repeated. See above for the order filter flags are processed in.
Arrange the order of filter rules with the most restrictive first and work down.
+Lines starting with # or ; are ignored, and can be used to write comments. Inline comments are not supported. Use -vv --dump filters
to see how they appear in the final regexp.
E.g. for filter-file.txt
:
# a sample filter rule file
- secret*.jpg
+ *.jpg
+ *.png
+ file2.avi
+- /dir/tmp/** # WARNING! This text will be treated as part of the path.
- /dir/Trash/**
+ /dir/**
# exclude everything else
@@ -10418,7 +10420,7 @@ Showing nodes accounting for 1537.03kB, 100% of 1537.03kB total
pCloud
MD5, SHA1 ⁷
-R
+R/W
No
No
W
@@ -11968,7 +11970,7 @@ Showing nodes accounting for 1537.03kB, 100% of 1537.03kB total
--tpslimit float Limit HTTP transactions per second to this
--tpslimit-burst int Max burst of transactions for --tpslimit (default 1)
--use-cookies Enable session cookiejar
- --user-agent string Set the user-agent to a specified string (default "rclone/v1.68.1")
+ --user-agent string Set the user-agent to a specified string (default "rclone/v1.68.2")
Performance
Flags helpful for increasing performance.
--buffer-size SizeSuffix In memory buffer size when reading files for each --transfer (default 16Mi)
@@ -17168,7 +17170,7 @@ acl = private
upload_cutoff = 5M
chunk_size = 5M
copy_cutoff = 5M
-C14 Cold Storage is the low-cost S3 Glacier alternative from Scaleway and it works the same way as on S3 by accepting the "GLACIER" storage_class
. So you can configure your remote with the storage_class = GLACIER
option to upload directly to C14. Don't forget that in this state you can't read files back after, you will need to restore them to "STANDARD" storage_class first before being able to read them (see "restore" section above)
+Scaleway Glacier is the low-cost S3 Glacier alternative from Scaleway and it works the same way as on S3 by accepting the "GLACIER" storage_class
. So you can configure your remote with the storage_class = GLACIER
option to upload directly to Scaleway Glacier. Don't forget that in this state you can't read files back after, you will need to restore them to "STANDARD" storage_class first before being able to read them (see "restore" section above)
Seagate Lyve Cloud
Seagate Lyve Cloud is an S3 compatible object storage platform from Seagate intended for enterprise use.
Here is a config run through for a remote called remote
- you may choose a different name of course. Note that to create an access key and secret key you will need to create a service account first.
@@ -24613,7 +24615,7 @@ rclone backend copyid drive: ID1 path1 ID2 path2
Click on the "+ CREATE CREDENTIALS" button at the top of the screen, then select "OAuth client ID".
Choose an application type of "Desktop app" and click "Create". (the default name is fine)
It will show you a client ID and client secret. Make a note of these.
-(If you selected "External" at Step 5 continue to Step 9. If you chose "Internal" you don't need to publish and can skip straight to Step 10 but your destination drive must be part of the same Google Workspace.)
+(If you selected "External" at Step 5 continue to Step 10. If you chose "Internal" you don't need to publish and can skip straight to Step 11 but your destination drive must be part of the same Google Workspace.)
Go to "Oauth consent screen" and then click "PUBLISH APP" button and confirm. You will also want to add yourself as a test user.
Provide the noted client ID and client secret to rclone.
@@ -36964,6 +36966,51 @@ $ tree /tmp/c
"error": return an error based on option value
Changelog
+v1.68.2 - 2024-11-15
+
+
+- Security fixes
+
+- local backend: CVE-2024-52522: fix permission and ownership on symlinks with
--links
and --metadata
(Nick Craig-Wood)
+
+- Only affects users using
--metadata
and --links
and copying files to the local backend
+- See https://github.com/rclone/rclone/security/advisories/GHSA-hrxh-9w67-g4cv
+
+- build: bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 (dependabot)
+
+- This is an issue in a dependency which is used for JWT certificates
+- See https://github.com/golang-jwt/jwt/security/advisories/GHSA-29wx-vh33-7x7r
+
+
+- Bug Fixes
+
+- accounting: Fix wrong message on SIGUSR2 to enable/disable bwlimit (Nick Craig-Wood)
+- bisync: Fix output capture restoring the wrong output for logrus (Dimitrios Slamaris)
+- dlna: Fix loggingResponseWriter disregarding log level (Simon Bos)
+- serve s3: Fix excess locking which was making serve s3 single threaded (Nick Craig-Wood)
+- doc fixes (Nick Craig-Wood, tgfisher, Alexandre Hamez, Randy Bush)
+
+- Local
+
+- Fix permission and ownership on symlinks with
--links
and --metadata
(Nick Craig-Wood)
+- Fix
--copy-links
on macOS when cloning (nielash)
+
+- Onedrive
+
+- Fix Retry-After handling to look at 503 errors also (Nick Craig-Wood)
+
+- Pikpak
+
+- Fix cid/gcid calculations for fs.OverrideRemote (wiserain)
+- Fix fatal crash on startup with token that can't be refreshed (Nick Craig-Wood)
+
+- S3
+
+- Fix crash when using
--s3-download-url
after migration to SDKv2 (Nick Craig-Wood)
+- Storj provider: fix server-side copy of files bigger than 5GB (Kaloyan Raev)
+- Fix multitenant multipart uploads with CEPH (Nick Craig-Wood)
+
+
v1.68.1 - 2024-09-24
diff --git a/MANUAL.md b/MANUAL.md
index cf128a775..ae77f8531 100644
--- a/MANUAL.md
+++ b/MANUAL.md
@@ -1,6 +1,6 @@
% rclone(1) User Manual
% Nick Craig-Wood
-% Sep 24, 2024
+% Nov 15, 2024
# Rclone syncs your files to cloud storage
@@ -16970,6 +16970,8 @@ processed in.
Arrange the order of filter rules with the most restrictive first and
work down.
+Lines starting with # or ; are ignored, and can be used to write comments. Inline comments are not supported. _Use `-vv --dump filters` to see how they appear in the final regexp._
+
E.g. for `filter-file.txt`:
# a sample filter rule file
@@ -16977,6 +16979,7 @@ E.g. for `filter-file.txt`:
+ *.jpg
+ *.png
+ file2.avi
+ - /dir/tmp/** # WARNING! This text will be treated as part of the path.
- /dir/Trash/**
+ /dir/**
# exclude everything else
@@ -19787,7 +19790,7 @@ Here is an overview of the major features of each cloud storage system.
| OpenDrive | MD5 | R/W | Yes | Partial ⁸ | - | - |
| OpenStack Swift | MD5 | R/W | No | No | R/W | - |
| Oracle Object Storage | MD5 | R/W | No | No | R/W | - |
-| pCloud | MD5, SHA1 ⁷ | R | No | No | W | - |
+| pCloud | MD5, SHA1 ⁷ | R/W | No | No | W | - |
| PikPak | MD5 | R | No | No | R | - |
| Pixeldrain | SHA256 | R/W | No | No | R | RW |
| premiumize.me | - | - | Yes | No | R | - |
@@ -20494,7 +20497,7 @@ Flags for general networking and HTTP stuff.
--tpslimit float Limit HTTP transactions per second to this
--tpslimit-burst int Max burst of transactions for --tpslimit (default 1)
--use-cookies Enable session cookiejar
- --user-agent string Set the user-agent to a specified string (default "rclone/v1.68.1")
+ --user-agent string Set the user-agent to a specified string (default "rclone/v1.68.2")
```
@@ -27833,8 +27836,8 @@ chunk_size = 5M
copy_cutoff = 5M
```
-[C14 Cold Storage](https://www.online.net/en/storage/c14-cold-storage) is the low-cost S3 Glacier alternative from Scaleway and it works the same way as on S3 by accepting the "GLACIER" `storage_class`.
-So you can configure your remote with the `storage_class = GLACIER` option to upload directly to C14. Don't forget that in this state you can't read files back after, you will need to restore them to "STANDARD" storage_class first before being able to read them (see "restore" section above)
+[Scaleway Glacier](https://www.scaleway.com/en/glacier-cold-storage/) is the low-cost S3 Glacier alternative from Scaleway and it works the same way as on S3 by accepting the "GLACIER" `storage_class`.
+So you can configure your remote with the `storage_class = GLACIER` option to upload directly to Scaleway Glacier. Don't forget that in this state you can't read files back after, you will need to restore them to "STANDARD" storage_class first before being able to read them (see "restore" section above)
### Seagate Lyve Cloud {#lyve}
@@ -37898,9 +37901,9 @@ then select "OAuth client ID".
9. It will show you a client ID and client secret. Make a note of these.
- (If you selected "External" at Step 5 continue to Step 9.
+ (If you selected "External" at Step 5 continue to Step 10.
If you chose "Internal" you don't need to publish and can skip straight to
- Step 10 but your destination drive must be part of the same Google Workspace.)
+ Step 11 but your destination drive must be part of the same Google Workspace.)
10. Go to "Oauth consent screen" and then click "PUBLISH APP" button and confirm.
You will also want to add yourself as a test user.
@@ -54612,6 +54615,36 @@ Options:
# Changelog
+## v1.68.2 - 2024-11-15
+
+[See commits](https://github.com/rclone/rclone/compare/v1.68.1...v1.68.2)
+
+* Security fixes
+ * local backend: CVE-2024-52522: fix permission and ownership on symlinks with `--links` and `--metadata` (Nick Craig-Wood)
+ * Only affects users using `--metadata` and `--links` and copying files to the local backend
+ * See https://github.com/rclone/rclone/security/advisories/GHSA-hrxh-9w67-g4cv
+ * build: bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 (dependabot)
+ * This is an issue in a dependency which is used for JWT certificates
+ * See https://github.com/golang-jwt/jwt/security/advisories/GHSA-29wx-vh33-7x7r
+* Bug Fixes
+ * accounting: Fix wrong message on SIGUSR2 to enable/disable bwlimit (Nick Craig-Wood)
+ * bisync: Fix output capture restoring the wrong output for logrus (Dimitrios Slamaris)
+ * dlna: Fix loggingResponseWriter disregarding log level (Simon Bos)
+ * serve s3: Fix excess locking which was making serve s3 single threaded (Nick Craig-Wood)
+ * doc fixes (Nick Craig-Wood, tgfisher, Alexandre Hamez, Randy Bush)
+* Local
+ * Fix permission and ownership on symlinks with `--links` and `--metadata` (Nick Craig-Wood)
+ * Fix `--copy-links` on macOS when cloning (nielash)
+* Onedrive
+ * Fix Retry-After handling to look at 503 errors also (Nick Craig-Wood)
+* Pikpak
+ * Fix cid/gcid calculations for fs.OverrideRemote (wiserain)
+ * Fix fatal crash on startup with token that can't be refreshed (Nick Craig-Wood)
+* S3
+ * Fix crash when using `--s3-download-url` after migration to SDKv2 (Nick Craig-Wood)
+ * Storj provider: fix server-side copy of files bigger than 5GB (Kaloyan Raev)
+ * Fix multitenant multipart uploads with CEPH (Nick Craig-Wood)
+
## v1.68.1 - 2024-09-24
[See commits](https://github.com/rclone/rclone/compare/v1.68.0...v1.68.1)
diff --git a/MANUAL.txt b/MANUAL.txt
index ff0b295a0..1c89d2043 100644
--- a/MANUAL.txt
+++ b/MANUAL.txt
@@ -1,6 +1,6 @@
rclone(1) User Manual
Nick Craig-Wood
-Sep 24, 2024
+Nov 15, 2024
Rclone syncs your files to cloud storage
@@ -16428,6 +16428,10 @@ processed in.
Arrange the order of filter rules with the most restrictive first and
work down.
+Lines starting with # or ; are ignored, and can be used to write
+comments. Inline comments are not supported. Use -vv --dump filters to
+see how they appear in the final regexp.
+
E.g. for filter-file.txt:
# a sample filter rule file
@@ -16435,6 +16439,7 @@ E.g. for filter-file.txt:
+ *.jpg
+ *.png
+ file2.avi
+ - /dir/tmp/** # WARNING! This text will be treated as part of the path.
- /dir/Trash/**
+ /dir/**
# exclude everything else
@@ -19269,7 +19274,7 @@ Here is an overview of the major features of each cloud storage system.
OpenDrive MD5 R/W Yes Partial ⁸ - -
OpenStack Swift MD5 R/W No No R/W -
Oracle Object Storage MD5 R/W No No R/W -
- pCloud MD5, SHA1 ⁷ R No No W -
+ pCloud MD5, SHA1 ⁷ R/W No No W -
PikPak MD5 R No No R -
Pixeldrain SHA256 R/W No No R RW
premiumize.me - - Yes No R -
@@ -20076,7 +20081,7 @@ Flags for general networking and HTTP stuff.
--tpslimit float Limit HTTP transactions per second to this
--tpslimit-burst int Max burst of transactions for --tpslimit (default 1)
--use-cookies Enable session cookiejar
- --user-agent string Set the user-agent to a specified string (default "rclone/v1.68.1")
+ --user-agent string Set the user-agent to a specified string (default "rclone/v1.68.2")
Performance
@@ -27364,13 +27369,13 @@ rclone like this:
chunk_size = 5M
copy_cutoff = 5M
-C14 Cold Storage is the low-cost S3 Glacier alternative from Scaleway
+Scaleway Glacier is the low-cost S3 Glacier alternative from Scaleway
and it works the same way as on S3 by accepting the "GLACIER"
storage_class. So you can configure your remote with the
-storage_class = GLACIER option to upload directly to C14. Don't forget
-that in this state you can't read files back after, you will need to
-restore them to "STANDARD" storage_class first before being able to read
-them (see "restore" section above)
+storage_class = GLACIER option to upload directly to Scaleway Glacier.
+Don't forget that in this state you can't read files back after, you
+will need to restore them to "STANDARD" storage_class first before being
+able to read them (see "restore" section above)
Seagate Lyve Cloud
@@ -37324,9 +37329,9 @@ Here is how to create your own Google Drive client ID for rclone:
9. It will show you a client ID and client secret. Make a note of
these.
- (If you selected "External" at Step 5 continue to Step 9. If you
+ (If you selected "External" at Step 5 continue to Step 10. If you
chose "Internal" you don't need to publish and can skip straight to
- Step 10 but your destination drive must be part of the same Google
+ Step 11 but your destination drive must be part of the same Google
Workspace.)
10. Go to "Oauth consent screen" and then click "PUBLISH APP" button and
@@ -54290,6 +54295,52 @@ Options:
Changelog
+v1.68.2 - 2024-11-15
+
+See commits
+
+- Security fixes
+ - local backend: CVE-2024-52522: fix permission and ownership on
+ symlinks with --links and --metadata (Nick Craig-Wood)
+ - Only affects users using --metadata and --links and copying
+ files to the local backend
+ - See
+ https://github.com/rclone/rclone/security/advisories/GHSA-hrxh-9w67-g4cv
+ - build: bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1
+ (dependabot)
+ - This is an issue in a dependency which is used for JWT
+ certificates
+ - See
+ https://github.com/golang-jwt/jwt/security/advisories/GHSA-29wx-vh33-7x7r
+- Bug Fixes
+ - accounting: Fix wrong message on SIGUSR2 to enable/disable
+ bwlimit (Nick Craig-Wood)
+ - bisync: Fix output capture restoring the wrong output for logrus
+ (Dimitrios Slamaris)
+ - dlna: Fix loggingResponseWriter disregarding log level (Simon
+ Bos)
+ - serve s3: Fix excess locking which was making serve s3 single
+ threaded (Nick Craig-Wood)
+ - doc fixes (Nick Craig-Wood, tgfisher, Alexandre Hamez, Randy
+ Bush)
+- Local
+ - Fix permission and ownership on symlinks with --links and
+ --metadata (Nick Craig-Wood)
+ - Fix --copy-links on macOS when cloning (nielash)
+- Onedrive
+ - Fix Retry-After handling to look at 503 errors also (Nick
+ Craig-Wood)
+- Pikpak
+ - Fix cid/gcid calculations for fs.OverrideRemote (wiserain)
+ - Fix fatal crash on startup with token that can't be refreshed
+ (Nick Craig-Wood)
+- S3
+ - Fix crash when using --s3-download-url after migration to SDKv2
+ (Nick Craig-Wood)
+ - Storj provider: fix server-side copy of files bigger than 5GB
+ (Kaloyan Raev)
+ - Fix multitenant multipart uploads with CEPH (Nick Craig-Wood)
+
v1.68.1 - 2024-09-24
See commits
diff --git a/docs/content/changelog.md b/docs/content/changelog.md
index 3f04c6746..5e31f318e 100644
--- a/docs/content/changelog.md
+++ b/docs/content/changelog.md
@@ -5,6 +5,36 @@ description: "Rclone Changelog"
# Changelog
+## v1.68.2 - 2024-11-15
+
+[See commits](https://github.com/rclone/rclone/compare/v1.68.1...v1.68.2)
+
+* Security fixes
+ * local backend: CVE-2024-52522: fix permission and ownership on symlinks with `--links` and `--metadata` (Nick Craig-Wood)
+ * Only affects users using `--metadata` and `--links` and copying files to the local backend
+ * See https://github.com/rclone/rclone/security/advisories/GHSA-hrxh-9w67-g4cv
+ * build: bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 (dependabot)
+ * This is an issue in a dependency which is used for JWT certificates
+ * See https://github.com/golang-jwt/jwt/security/advisories/GHSA-29wx-vh33-7x7r
+* Bug Fixes
+ * accounting: Fix wrong message on SIGUSR2 to enable/disable bwlimit (Nick Craig-Wood)
+ * bisync: Fix output capture restoring the wrong output for logrus (Dimitrios Slamaris)
+ * dlna: Fix loggingResponseWriter disregarding log level (Simon Bos)
+ * serve s3: Fix excess locking which was making serve s3 single threaded (Nick Craig-Wood)
+ * doc fixes (Nick Craig-Wood, tgfisher, Alexandre Hamez, Randy Bush)
+* Local
+ * Fix permission and ownership on symlinks with `--links` and `--metadata` (Nick Craig-Wood)
+ * Fix `--copy-links` on macOS when cloning (nielash)
+* Onedrive
+ * Fix Retry-After handling to look at 503 errors also (Nick Craig-Wood)
+* Pikpak
+ * Fix cid/gcid calculations for fs.OverrideRemote (wiserain)
+ * Fix fatal crash on startup with token that can't be refreshed (Nick Craig-Wood)
+* S3
+ * Fix crash when using `--s3-download-url` after migration to SDKv2 (Nick Craig-Wood)
+ * Storj provider: fix server-side copy of files bigger than 5GB (Kaloyan Raev)
+ * Fix multitenant multipart uploads with CEPH (Nick Craig-Wood)
+
## v1.68.1 - 2024-09-24
[See commits](https://github.com/rclone/rclone/compare/v1.68.0...v1.68.1)
diff --git a/docs/content/commands/rclone.md b/docs/content/commands/rclone.md
index 7651ff0e9..4c861f498 100644
--- a/docs/content/commands/rclone.md
+++ b/docs/content/commands/rclone.md
@@ -929,7 +929,7 @@ rclone [flags]
--use-json-log Use json log format
--use-mmap Use mmap allocator (see docs)
--use-server-modtime Use server modified time instead of object metadata
- --user-agent string Set the user-agent to a specified string (default "rclone/v1.68.1")
+ --user-agent string Set the user-agent to a specified string (default "rclone/v1.68.2")
-v, --verbose count Print lots more stuff (repeat for more)
-V, --version Print the version number
--webdav-bearer-token string Bearer token instead of user/pass (e.g. a Macaroon)
diff --git a/docs/content/flags.md b/docs/content/flags.md
index ff4cd0955..3e77f5c7f 100644
--- a/docs/content/flags.md
+++ b/docs/content/flags.md
@@ -115,7 +115,7 @@ Flags for general networking and HTTP stuff.
--tpslimit float Limit HTTP transactions per second to this
--tpslimit-burst int Max burst of transactions for --tpslimit (default 1)
--use-cookies Enable session cookiejar
- --user-agent string Set the user-agent to a specified string (default "rclone/v1.68.1")
+ --user-agent string Set the user-agent to a specified string (default "rclone/v1.68.2")
```
diff --git a/rclone.1 b/rclone.1
index 1ec0f04cd..b58d90d0b 100644
--- a/rclone.1
+++ b/rclone.1
@@ -1,7 +1,7 @@
.\"t
.\" Automatically generated by Pandoc 2.9.2.1
.\"
-.TH "rclone" "1" "Sep 24, 2024" "User Manual" ""
+.TH "rclone" "1" "Nov 15, 2024" "User Manual" ""
.hy
.SH Rclone syncs your files to cloud storage
.PP
@@ -20955,6 +20955,12 @@ See above for the order filter flags are processed in.
Arrange the order of filter rules with the most restrictive first and
work down.
.PP
+Lines starting with # or ; are ignored, and can be used to write
+comments.
+Inline comments are not supported.
+\f[I]Use \f[CI]-vv --dump filters\f[I] to see how they appear in the
+final regexp.\f[R]
+.PP
E.g.
for \f[C]filter-file.txt\f[R]:
.IP
@@ -20965,6 +20971,7 @@ for \f[C]filter-file.txt\f[R]:
+ *.jpg
+ *.png
+ file2.avi
+- /dir/tmp/** # WARNING! This text will be treated as part of the path.
- /dir/Trash/**
+ /dir/**
# exclude everything else
@@ -24965,7 +24972,7 @@ pCloud
T}@T{
MD5, SHA1 \[u2077]
T}@T{
-R
+R/W
T}@T{
No
T}@T{
@@ -27719,7 +27726,7 @@ Flags for general networking and HTTP stuff.
--tpslimit float Limit HTTP transactions per second to this
--tpslimit-burst int Max burst of transactions for --tpslimit (default 1)
--use-cookies Enable session cookiejar
- --user-agent string Set the user-agent to a specified string (default \[dq]rclone/v1.68.1\[dq])
+ --user-agent string Set the user-agent to a specified string (default \[dq]rclone/v1.68.2\[dq])
\f[R]
.fi
.SS Performance
@@ -37393,11 +37400,12 @@ copy_cutoff = 5M
\f[R]
.fi
.PP
-C14 Cold Storage (https://www.online.net/en/storage/c14-cold-storage) is
+Scaleway Glacier (https://www.scaleway.com/en/glacier-cold-storage/) is
the low-cost S3 Glacier alternative from Scaleway and it works the same
way as on S3 by accepting the \[dq]GLACIER\[dq] \f[C]storage_class\f[R].
So you can configure your remote with the
-\f[C]storage_class = GLACIER\f[R] option to upload directly to C14.
+\f[C]storage_class = GLACIER\f[R] option to upload directly to Scaleway
+Glacier.
Don\[aq]t forget that in this state you can\[aq]t read files back after,
you will need to restore them to \[dq]STANDARD\[dq] storage_class first
before being able to read them (see \[dq]restore\[dq] section above)
@@ -50216,9 +50224,9 @@ It will show you a client ID and client secret.
Make a note of these.
.RS 4
.PP
-(If you selected \[dq]External\[dq] at Step 5 continue to Step 9.
+(If you selected \[dq]External\[dq] at Step 5 continue to Step 10.
If you chose \[dq]Internal\[dq] you don\[aq]t need to publish and can
-skip straight to Step 10 but your destination drive must be part of the
+skip straight to Step 11 but your destination drive must be part of the
same Google Workspace.)
.RE
.IP "10." 4
@@ -72522,6 +72530,87 @@ Options:
.IP \[bu] 2
\[dq]error\[dq]: return an error based on option value
.SH Changelog
+.SS v1.68.2 - 2024-11-15
+.PP
+See commits (https://github.com/rclone/rclone/compare/v1.68.1...v1.68.2)
+.IP \[bu] 2
+Security fixes
+.RS 2
+.IP \[bu] 2
+local backend: CVE-2024-52522: fix permission and ownership on symlinks
+with \f[C]--links\f[R] and \f[C]--metadata\f[R] (Nick Craig-Wood)
+.RS 2
+.IP \[bu] 2
+Only affects users using \f[C]--metadata\f[R] and \f[C]--links\f[R] and
+copying files to the local backend
+.IP \[bu] 2
+See
+https://github.com/rclone/rclone/security/advisories/GHSA-hrxh-9w67-g4cv
+.RE
+.IP \[bu] 2
+build: bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1
+(dependabot)
+.RS 2
+.IP \[bu] 2
+This is an issue in a dependency which is used for JWT certificates
+.IP \[bu] 2
+See
+https://github.com/golang-jwt/jwt/security/advisories/GHSA-29wx-vh33-7x7r
+.RE
+.RE
+.IP \[bu] 2
+Bug Fixes
+.RS 2
+.IP \[bu] 2
+accounting: Fix wrong message on SIGUSR2 to enable/disable bwlimit (Nick
+Craig-Wood)
+.IP \[bu] 2
+bisync: Fix output capture restoring the wrong output for logrus
+(Dimitrios Slamaris)
+.IP \[bu] 2
+dlna: Fix loggingResponseWriter disregarding log level (Simon Bos)
+.IP \[bu] 2
+serve s3: Fix excess locking which was making serve s3 single threaded
+(Nick Craig-Wood)
+.IP \[bu] 2
+doc fixes (Nick Craig-Wood, tgfisher, Alexandre Hamez, Randy Bush)
+.RE
+.IP \[bu] 2
+Local
+.RS 2
+.IP \[bu] 2
+Fix permission and ownership on symlinks with \f[C]--links\f[R] and
+\f[C]--metadata\f[R] (Nick Craig-Wood)
+.IP \[bu] 2
+Fix \f[C]--copy-links\f[R] on macOS when cloning (nielash)
+.RE
+.IP \[bu] 2
+Onedrive
+.RS 2
+.IP \[bu] 2
+Fix Retry-After handling to look at 503 errors also (Nick Craig-Wood)
+.RE
+.IP \[bu] 2
+Pikpak
+.RS 2
+.IP \[bu] 2
+Fix cid/gcid calculations for fs.OverrideRemote (wiserain)
+.IP \[bu] 2
+Fix fatal crash on startup with token that can\[aq]t be refreshed (Nick
+Craig-Wood)
+.RE
+.IP \[bu] 2
+S3
+.RS 2
+.IP \[bu] 2
+Fix crash when using \f[C]--s3-download-url\f[R] after migration to
+SDKv2 (Nick Craig-Wood)
+.IP \[bu] 2
+Storj provider: fix server-side copy of files bigger than 5GB (Kaloyan
+Raev)
+.IP \[bu] 2
+Fix multitenant multipart uploads with CEPH (Nick Craig-Wood)
+.RE
.SS v1.68.1 - 2024-09-24
.PP
See commits (https://github.com/rclone/rclone/compare/v1.68.0...v1.68.1)