From 68c2a4d231dd455b4306f953237aa6cb63b08a2c Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Fri, 27 Feb 2026 23:26:02 -0800 Subject: [PATCH] Add "files_changed" and "msgpack_version_check" to NEWS. --- NEWS | 2 ++ borgmatic/config/schema.yaml | 11 ++++++----- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/NEWS b/NEWS index f1a8bde7..762c3ea2 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,6 @@ 2.1.3.dev0 + * #1175: Add a "files_changed" option for customizing Borg's file modification detection. + * #1175: Add a "msgpack_version_check" option to prevent Borg from validating msgpack's version. * #1218: Add a "config show" action to display computed borgmatic configuration as YAML or JSON, handy for fetching borgmatic configuration from external scripts. See the documentation for more information: diff --git a/borgmatic/config/schema.yaml b/borgmatic/config/schema.yaml index 07beb241..15976270 100644 --- a/borgmatic/config/schema.yaml +++ b/borgmatic/config/schema.yaml @@ -172,8 +172,9 @@ properties: description: | Threshold for considering a file as changed. See https://borgbackup.readthedocs.io/en/stable/usage/create.html for - details. Defaults to "ctime" (i.e., a file is considered - changed if its ctime has changed since the last backup). + details. Defaults to "ctime". E.g., a file is considered changed if + its ctime has changed since the last backup. (This option is + supported for Borg 1.4.2+ only.) example: ctime files_cache: type: string @@ -574,9 +575,9 @@ properties: msgpack_version_check: type: boolean description: | - Optionally disable the msgpack version check. - Default is true; use at your own risk. - example: true + Optionally disable the msgpack version check. Default is true; use + at your own risk. (This option is supported for Borg 1.4.2+ only.) + example: false extra_borg_options: type: object additionalProperties: false