Commit graph

9747 commits

Author SHA1 Message Date
TW
1c05ab32db
Merge pull request #9430 from ThomasWaldmann/y2038
Y2038+
2026-03-04 14:16:49 +01:00
TW
b1c32bd979
Merge pull request #9389 from mr-raj12/win32-syncfile-write-through
Some checks are pending
Lint / lint (push) Waiting to run
CI / lint (push) Waiting to run
CI / security (push) Waiting to run
CI / asan_ubsan (push) Blocked by required conditions
CI / native_tests (push) Blocked by required conditions
CI / vm_tests (Haiku, false, haiku, r1beta5) (push) Blocked by required conditions
CI / vm_tests (NetBSD, false, netbsd, 10.1) (push) Blocked by required conditions
CI / vm_tests (OmniOS, false, omnios, r151056) (push) Blocked by required conditions
CI / vm_tests (OpenBSD, false, openbsd, 7.7) (push) Blocked by required conditions
CI / vm_tests (borg-freebsd-14-x86_64-gh, FreeBSD, true, freebsd, 14.3) (push) Blocked by required conditions
CI / windows_tests (push) Blocked by required conditions
CodeQL / Analyze (push) Waiting to run
platform: use FILE_FLAG_WRITE_THROUGH on Windows for SyncFile data durability, fixes #9388
2026-03-04 12:12:56 +01:00
Mrityunjay Raj
0f360f2f1b platform: use FILE_FLAG_WRITE_THROUGH on Windows for SyncFile data durability, fixes #9388 2026-03-04 15:52:52 +05:30
TW
57af68e1e1
Merge pull request #9434 from ThomasWaldmann/update-changes-master
update CHANGES
2026-03-04 09:19:45 +01:00
Thomas Waldmann
cb6a7b6fcf
update CHANGES 2026-03-03 14:03:54 +01:00
TW
ff78d00c97
Merge pull request #9431 from borgbackup/dependabot/pip/requirements.d/pip-dependencies-e903f47b53
Some checks are pending
CI / lint (push) Waiting to run
CI / security (push) Waiting to run
CI / asan_ubsan (push) Blocked by required conditions
CI / native_tests (push) Blocked by required conditions
CI / vm_tests (Haiku, false, haiku, r1beta5) (push) Blocked by required conditions
CI / vm_tests (NetBSD, false, netbsd, 10.1) (push) Blocked by required conditions
CI / vm_tests (OmniOS, false, omnios, r151056) (push) Blocked by required conditions
CI / vm_tests (OpenBSD, false, openbsd, 7.7) (push) Blocked by required conditions
CI / vm_tests (borg-freebsd-14-x86_64-gh, FreeBSD, true, freebsd, 14.3) (push) Blocked by required conditions
CI / windows_tests (push) Blocked by required conditions
build(deps-dev): bump setuptools from 80.10.1 to 80.10.2 in /requirements.d in the pip-dependencies group
2026-03-03 08:58:50 +01:00
TW
8ef1759343
Merge pull request #9432 from borgbackup/dependabot/github_actions/actions-38c31c5b5d
build(deps): bump the actions group with 2 updates
2026-03-03 08:33:59 +01:00
dependabot[bot]
5a69ea2c8d
build(deps): bump the actions group with 2 updates
Bumps the actions group with 2 updates: [actions/attest-build-provenance](https://github.com/actions/attest-build-provenance) and [actions/upload-artifact](https://github.com/actions/upload-artifact).


Updates `actions/attest-build-provenance` from 3 to 4
- [Release notes](https://github.com/actions/attest-build-provenance/releases)
- [Changelog](https://github.com/actions/attest-build-provenance/blob/main/RELEASE.md)
- [Commits](https://github.com/actions/attest-build-provenance/compare/v3...v4)

Updates `actions/upload-artifact` from 6 to 7
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v6...v7)

---
updated-dependencies:
- dependency-name: actions/attest-build-provenance
  dependency-version: '4'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: actions/upload-artifact
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-03-03 05:46:19 +00:00
dependabot[bot]
71d70fdf92
build(deps-dev): bump setuptools
Bumps the pip-dependencies group in /requirements.d with 1 update: [setuptools](https://github.com/pypa/setuptools).


Updates `setuptools` from 80.10.1 to 80.10.2
- [Release notes](https://github.com/pypa/setuptools/releases)
- [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst)
- [Commits](https://github.com/pypa/setuptools/compare/v80.10.1...v80.10.2)

---
updated-dependencies:
- dependency-name: setuptools
  dependency-version: 80.10.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-03-03 05:43:20 +00:00
Thomas Waldmann
7b69bed8c4
add a borg create/extract timestamp test for y2261.
in y2262, nanoseconds as signed int64 will overflow.
2026-03-02 23:34:27 +01:00
Thomas Waldmann
eca66a0e3e
y2038: SUPPORT_32BIT_PLATFORMS = False, fixes #9429
Not as bad as it sounds:
32bit platforms with 64bit time_t will still work.

As of 2026, this is pretty much any platform that can run borg reasonably well.
2026-03-02 23:06:29 +01:00
Thomas Waldmann
f496497d92
time calculations: avoid floating point
Do not use 1e9 if it is not mean to be a fp calculation anyway, but rather use 10**9 for pure integer calculations.
2026-03-02 23:03:44 +01:00
Thomas Waldmann
04940e3d44
helpers/time: avoid floating point in timestamp handling
Add utcfromtimestampns() helper that converts nanosecond timestamps to
datetime objects using integer arithmetic (timedelta) instead of floating
point division. This avoids precision loss and potential overflow on 32bit
platforms with old glibc.

Use it in safe_timestamp() and timestamp() instead of datetime.fromtimestamp().

Needed to tweak the timestamps in repo12.tar.gz/test_meta/*.json +/- 1us.
2026-03-02 22:49:50 +01:00
TW
ef778332b5
Merge pull request #9428 from borgbackup/new-version-selector-location-master
Some checks failed
CI / lint (push) Waiting to run
CI / security (push) Waiting to run
CI / asan_ubsan (push) Blocked by required conditions
CI / native_tests (push) Blocked by required conditions
CI / vm_tests (Haiku, false, haiku, r1beta5) (push) Blocked by required conditions
CI / vm_tests (NetBSD, false, netbsd, 10.1) (push) Blocked by required conditions
CI / vm_tests (OmniOS, false, omnios, r151056) (push) Blocked by required conditions
CI / vm_tests (OpenBSD, false, openbsd, 7.7) (push) Blocked by required conditions
CI / vm_tests (borg-freebsd-14-x86_64-gh, FreeBSD, true, freebsd, 14.3) (push) Blocked by required conditions
CI / windows_tests (push) Blocked by required conditions
Lint / lint (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
docs: move RTD version selector to sidebar top-left, fixes #8204
2026-03-02 21:06:22 +01:00
Thomas Waldmann
9a02947d40
docs: move RTD version selector to sidebar top-left
That way, right below the docs version number that is currently
being displayed, it is easier to find for users.

Also: hide the default readthedocs-flyout (bottom right)

Co-authored-by: Junie <junie@jetbrains.com>
Co-authored-by: Junie <junie@jetbrains.com>
2026-03-02 20:46:26 +01:00
TW
f86c5900e8
Merge pull request #9427 from ThomasWaldmann/simplify-prune
simplify prune
2026-03-02 19:39:05 +01:00
Thomas Waldmann
ec9e32a54f
prune: print hint to run compact to free space
similar to what borg delete does.

also:
- remove "uncommitted" counter, we do not use commits anymore
- always call manifest.write() if we deleted something
2026-03-02 18:31:40 +01:00
Thomas Waldmann
1759b6ccfb
prune: use same method to delete archives as delete subcommand, fixes #9424 2026-03-02 18:31:30 +01:00
TW
fb4843fdc6
Merge pull request #9417 from toroleapinc/fix/issue-9414-benchmark-cpu-test-speed
Some checks are pending
Lint / lint (push) Waiting to run
CI / lint (push) Waiting to run
CI / security (push) Waiting to run
CI / asan_ubsan (push) Blocked by required conditions
CI / native_tests (push) Blocked by required conditions
CI / vm_tests (Haiku, false, haiku, r1beta5) (push) Blocked by required conditions
CI / vm_tests (NetBSD, false, netbsd, 10.1) (push) Blocked by required conditions
CI / vm_tests (OmniOS, false, omnios, r151056) (push) Blocked by required conditions
CI / vm_tests (OpenBSD, false, openbsd, 7.7) (push) Blocked by required conditions
CI / vm_tests (borg-freebsd-14-x86_64-gh, FreeBSD, true, freebsd, 14.3) (push) Blocked by required conditions
CI / windows_tests (push) Blocked by required conditions
CodeQL / Analyze (push) Waiting to run
Speed up benchmark cpu tests with _BORG_BENCHMARK_CPU_TEST env var
2026-03-02 18:06:42 +01:00
Thomas Waldmann
a4fbf7cf36
benchmark cpu test: minor consistency changes 2026-03-02 17:40:32 +01:00
TW
b38107c506
Merge pull request #9422 from ThomasWaldmann/deletion-fixes
Some checks are pending
Lint / lint (push) Waiting to run
CI / lint (push) Waiting to run
CI / security (push) Waiting to run
CI / asan_ubsan (push) Blocked by required conditions
CI / native_tests (push) Blocked by required conditions
CI / vm_tests (Haiku, false, haiku, r1beta5) (push) Blocked by required conditions
CI / vm_tests (NetBSD, false, netbsd, 10.1) (push) Blocked by required conditions
CI / vm_tests (OmniOS, false, omnios, r151056) (push) Blocked by required conditions
CI / vm_tests (OpenBSD, false, openbsd, 7.7) (push) Blocked by required conditions
CI / vm_tests (borg-freebsd-14-x86_64-gh, FreeBSD, true, freebsd, 14.3) (push) Blocked by required conditions
CI / windows_tests (push) Blocked by required conditions
CodeQL / Analyze (push) Waiting to run
prune/delete fixes
2026-03-01 14:01:11 +01:00
Thomas Waldmann
8a4f42d0d2
delete: compute archive_formatted before archive deletion, see #9416
here it was not a problem currently, because format_archive(archive_info) does not load the archive from the repo, but only uses the given archive_info contents.
2026-03-01 06:08:14 +01:00
Thomas Waldmann
3c204c31f3
prune: fix Archive.DoesNotExist when using --list, fixes #9416
format_item() can trigger lazy loading of archive metadata (e.g. hostname,
username, size) from the repository. Previously it was called after
archive.delete(), which caused Archive.DoesNotExist for pruned archives.

Fix: call formatter.format_item() early, before any deletion takes place.

Also added a test.
2026-03-01 05:57:24 +01:00
TW
f3ac2e0d54
Merge pull request #9392 from mr-raj12/fix-syncfile-seek-tell
Some checks are pending
Lint / lint (push) Waiting to run
CI / lint (push) Waiting to run
CI / security (push) Waiting to run
CI / asan_ubsan (push) Blocked by required conditions
CI / native_tests (push) Blocked by required conditions
CI / vm_tests (Haiku, false, haiku, r1beta5) (push) Blocked by required conditions
CI / vm_tests (NetBSD, false, netbsd, 10.1) (push) Blocked by required conditions
CI / vm_tests (OmniOS, false, omnios, r151056) (push) Blocked by required conditions
CI / vm_tests (OpenBSD, false, openbsd, 7.7) (push) Blocked by required conditions
CI / vm_tests (borg-freebsd-14-x86_64-gh, FreeBSD, true, freebsd, 14.3) (push) Blocked by required conditions
CI / windows_tests (push) Blocked by required conditions
CodeQL / Analyze (push) Waiting to run
cache: add seek()/tell() to SyncFile, use SaveFile in _write_files_cache, fixes #9390
2026-02-28 11:43:01 +01:00
TW
7092d7715d
Merge pull request #9421 from ThomasWaldmann/fuse-fixes-master
Some checks are pending
Lint / lint (push) Waiting to run
CI / lint (push) Waiting to run
CI / security (push) Waiting to run
CI / asan_ubsan (push) Blocked by required conditions
CI / native_tests (push) Blocked by required conditions
CI / vm_tests (Haiku, false, haiku, r1beta5) (push) Blocked by required conditions
CI / vm_tests (NetBSD, false, netbsd, 10.1) (push) Blocked by required conditions
CI / vm_tests (OmniOS, false, omnios, r151056) (push) Blocked by required conditions
CI / vm_tests (OpenBSD, false, openbsd, 7.7) (push) Blocked by required conditions
CI / vm_tests (borg-freebsd-14-x86_64-gh, FreeBSD, true, freebsd, 14.3) (push) Blocked by required conditions
CI / windows_tests (push) Blocked by required conditions
CodeQL / Analyze (push) Waiting to run
mount: fuse fs performance fix, docstring
2026-02-28 09:31:03 +01:00
Mrityunjay Raj
2357071111 cache: add seek()/tell()/read() to SyncFile, use SaveFile in _write_files_cache, fixes #9390 2026-02-28 13:34:28 +05:30
TW
614d8e33cd
Merge pull request #9420 from ThomasWaldmann/add-prune-stats-master
added stats to prune command, fixes #9262
2026-02-28 08:58:28 +01:00
Thomas Waldmann
2b75e98c92
fuse: add thread/async safety warning 2026-02-28 07:27:46 +01:00
Thomas Waldmann
9bf937a485
mount: performance improvement
The efficiency difference between `meta.extend(bytes(N))` and `meta = meta + bytes(N)` stems from how Python manages memory and objects during these operations.

- **`bytearray.extend()`**: This is an **in-place** operation. If the current memory block allocated for the `bytearray` has enough extra capacity (pre-allocated space), Python simply writes the new bytes into that space and updates the length. If it needs more space, it uses `realloc()`, which can often expand the existing memory block without moving the entire data set to a new location.
- **Concatenation (`+`)**: This creates a **completely new** `bytearray` object. It allocates a new memory block large enough to hold the sum of both parts, copies the contents of `meta`, copies the contents of `bytes(N)`, and then reassigns the variable `meta` to this new object.

- **`bytearray.extend()`**: In the best case (when capacity exists), it is **O(K)**, where K is the number of bytes being added. In the worst case (reallocation), it is **O(N + K)**, but Python uses an over-allocation strategy (growth factor) that amortizes this cost, making it significantly faster on average.
- **Concatenation (`+`)**: It is always **O(N + K)** because it must copy the existing `N` bytes every single time. As the `bytearray` grows larger (e.g., millions of items in a backup), this leads to **O(N²)** total time complexity across multiple additions, as you are repeatedly copying an ever-growing buffer.

- Concatenation briefly requires memory for **both** the old buffer and the new buffer simultaneously before the old one is garbage collected. This increases the peak memory usage of the process.
- `extend()` is more memory-efficient as it minimizes the need for multiple large allocations and relies on the underlying memory manager's ability to resize buffers efficiently.

In the context of `borg mount`, where `meta` can grow to be many megabytes or even gigabytes for very large repositories, using concatenation causes a noticeable slowdown as the number of archives or files increases, whereas `extend()` remains performant.
2026-02-28 07:23:23 +01:00
Thomas Waldmann
b2fe60c345
added stats to prune command, fixes #9262
-v / --info displays archive counts (total, kept, pruned).
2026-02-28 07:09:51 +01:00
TW
c18184550f
Merge pull request #9393 from mr-raj12/fix-debug-format-obj-robj-type
debug format-obj: support all repo object types, fixes #9391
2026-02-28 05:44:52 +01:00
Mrityunjay Raj
be42fdf195 debug format-obj: support all repo object types, fixes #9391 2026-02-28 07:16:18 +05:30
edvatar
bb2ca29cba Speed up benchmark cpu tests with _BORG_BENCHMARK_CPU_TEST env var
Add _BORG_BENCHMARK_CPU_TEST environment variable (following the existing
pattern of _BORG_BENCHMARK_CRUD_TEST) that reduces:
- timeit iterations from 100 to 1 (10 to 1 for compression)
- KDF iterations from 5 to 1
- random data buffer from 10MB to 100KB

Set this env var in test_benchmark_cpu and test_benchmark_cpu_json so
they complete quickly in CI while still exercising the full code path.

Fixes #9414

Signed-off-by: edvatar <88481784+toroleapinc@users.noreply.github.com>
2026-02-27 11:17:46 -05:00
TW
eb82eeba05
Merge pull request #9369 from mr-raj12/docs-platformdirs-7332
Some checks are pending
CI / lint (push) Waiting to run
CI / security (push) Waiting to run
CI / asan_ubsan (push) Blocked by required conditions
CI / native_tests (push) Blocked by required conditions
CI / vm_tests (Haiku, false, haiku, r1beta5) (push) Blocked by required conditions
CI / vm_tests (NetBSD, false, netbsd, 10.1) (push) Blocked by required conditions
CI / vm_tests (OmniOS, false, omnios, r151056) (push) Blocked by required conditions
CI / vm_tests (OpenBSD, false, openbsd, 7.7) (push) Blocked by required conditions
CI / vm_tests (borg-freebsd-14-x86_64-gh, FreeBSD, true, freebsd, 14.3) (push) Blocked by required conditions
CI / windows_tests (push) Blocked by required conditions
docs: document platformdirs change and platform-specific directory paths, fixes #7332
2026-02-27 15:52:55 +01:00
Mrityunjay Raj
02f447536c docs: document platformdirs change and platform-specific directory paths, fixes #7332 2026-02-27 11:50:35 +05:30
TW
7be6fcd904
Merge pull request #9412 from ThomasWaldmann/fix-env-var-names
Some checks failed
Lint / lint (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / security (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
CI / asan_ubsan (push) Has been cancelled
CI / native_tests (push) Has been cancelled
CI / vm_tests (Haiku, false, haiku, r1beta5) (push) Has been cancelled
CI / vm_tests (NetBSD, false, netbsd, 10.1) (push) Has been cancelled
CI / vm_tests (OmniOS, false, omnios, r151056) (push) Has been cancelled
CI / vm_tests (OpenBSD, false, openbsd, 7.7) (push) Has been cancelled
CI / vm_tests (borg-freebsd-14-x86_64-gh, FreeBSD, true, freebsd, 14.3) (push) Has been cancelled
CI / windows_tests (push) Has been cancelled
rename BORG_RLIST_FORMAT to BORG_REPO_LIST_FORMAT, #9411
2026-02-24 11:47:41 +01:00
Thomas Waldmann
0b05b44c0a
rename BORG_RLIST_FORMAT to BORG_REPO_LIST_FORMAT, #9411 2026-02-24 10:42:50 +01:00
TW
2951a648b7
Merge pull request #9410 from borgbackup/dependabot/pip/requirements.d/pip-dependencies-6902ed81f3
build(deps-dev): bump the pip-dependencies group in /requirements.d with 3 updates
2026-02-24 10:07:27 +01:00
dependabot[bot]
748b519107
build(deps-dev): bump the pip-dependencies group
Bumps the pip-dependencies group in /requirements.d with 3 updates: [setuptools](https://github.com/pypa/setuptools), [pytest](https://github.com/pytest-dev/pytest) and [coverage[toml]](https://github.com/coveragepy/coveragepy).


Updates `setuptools` from 80.9.0 to 80.10.1
- [Release notes](https://github.com/pypa/setuptools/releases)
- [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst)
- [Commits](https://github.com/pypa/setuptools/compare/v80.9.0...v80.10.1)

Updates `pytest` from 9.0.1 to 9.0.2
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](https://github.com/pytest-dev/pytest/compare/9.0.1...9.0.2)

Updates `coverage[toml]` from 7.13.1 to 7.13.4
- [Release notes](https://github.com/coveragepy/coveragepy/releases)
- [Changelog](https://github.com/coveragepy/coveragepy/blob/main/CHANGES.rst)
- [Commits](https://github.com/coveragepy/coveragepy/compare/7.13.1...7.13.4)

---
updated-dependencies:
- dependency-name: setuptools
  dependency-version: 80.10.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip-dependencies
- dependency-name: pytest
  dependency-version: 9.0.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip-dependencies
- dependency-name: coverage[toml]
  dependency-version: 7.13.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-02-24 05:43:27 +00:00
TW
49959db0e2
Merge pull request #9407 from ThomasWaldmann/fix-filename-backslash
Some checks are pending
Lint / lint (push) Waiting to run
CI / lint (push) Waiting to run
CI / security (push) Waiting to run
CI / asan_ubsan (push) Blocked by required conditions
CI / native_tests (push) Blocked by required conditions
CI / vm_tests (Haiku, false, haiku, r1beta5) (push) Blocked by required conditions
CI / vm_tests (NetBSD, false, netbsd, 10.1) (push) Blocked by required conditions
CI / vm_tests (OmniOS, false, omnios, r151056) (push) Blocked by required conditions
CI / vm_tests (OpenBSD, false, openbsd, 7.7) (push) Blocked by required conditions
CI / vm_tests (borg-freebsd-14-x86_64-gh, FreeBSD, true, freebsd, 14.3) (push) Blocked by required conditions
CI / windows_tests (push) Blocked by required conditions
CodeQL / Analyze (push) Waiting to run
remove_dotdot_prefixes: remove bad assert, fixes #9406
2026-02-23 20:38:00 +01:00
Thomas Waldmann
23f7388e21
remove_dotdot_prefixes: remove bad assert, fixes #9406
guess the assert was meant to make sure that we do not have backslashes as path separators, but did not consider that on linux a backslash can be part of a filename (without being a path separator).
2026-02-23 19:59:08 +01:00
TW
3e15918b82
Merge pull request #9404 from defnvary/ignore_more_artifacts
Some checks are pending
Lint / lint (push) Waiting to run
CI / lint (push) Waiting to run
CI / security (push) Waiting to run
CI / asan_ubsan (push) Blocked by required conditions
CI / native_tests (push) Blocked by required conditions
CI / vm_tests (Haiku, false, haiku, r1beta5) (push) Blocked by required conditions
CI / vm_tests (NetBSD, false, netbsd, 10.1) (push) Blocked by required conditions
CI / vm_tests (OmniOS, false, omnios, r151056) (push) Blocked by required conditions
CI / vm_tests (OpenBSD, false, openbsd, 7.7) (push) Blocked by required conditions
CI / vm_tests (borg-freebsd-14-x86_64-gh, FreeBSD, true, freebsd, 14.3) (push) Blocked by required conditions
CI / windows_tests (push) Blocked by required conditions
CodeQL / Analyze (push) Waiting to run
ignore more artifacts generated during build
2026-02-23 14:17:53 +01:00
TW
23060e3943
Merge pull request #9397 from defnvary/use_zstd_python_stdlib
use zstd from python lib or backports.zstd (python<'3.14'), closes #9261
2026-02-23 12:10:52 +01:00
defnvary
075323b8e7 .gitignore: move entries to correct location in file 2026-02-23 10:54:14 +05:30
TW
2698f50c99
Merge pull request #9396 from mr-raj12/resolve-fakeroot-xattr-todos
Some checks are pending
Lint / lint (push) Waiting to run
CI / lint (push) Waiting to run
CI / security (push) Waiting to run
CI / asan_ubsan (push) Blocked by required conditions
CI / native_tests (push) Blocked by required conditions
CI / vm_tests (Haiku, false, haiku, r1beta5) (push) Blocked by required conditions
CI / vm_tests (NetBSD, false, netbsd, 10.1) (push) Blocked by required conditions
CI / vm_tests (OmniOS, false, omnios, r151056) (push) Blocked by required conditions
CI / vm_tests (OpenBSD, false, openbsd, 7.7) (push) Blocked by required conditions
CI / vm_tests (borg-freebsd-14-x86_64-gh, FreeBSD, true, freebsd, 14.3) (push) Blocked by required conditions
CI / windows_tests (push) Blocked by required conditions
CodeQL / Analyze (push) Waiting to run
xattr: document fakeroot xattr as Linux-only, add missing fakeroot skip on FreeBSD, fixes #9394
2026-02-22 21:23:12 +01:00
defnvary
4344eb37d1 use zstd from python stdlib or backport.zstd, closes #9261 2026-02-23 00:33:21 +05:30
defnvary
398ac5ab84 ignore more artifacts generated during build 2026-02-23 00:16:54 +05:30
TW
c86e5af5ca
Merge pull request #9398 from ThomasWaldmann/fix-requests-chardet-master
Some checks are pending
Lint / lint (push) Waiting to run
CI / lint (push) Waiting to run
CI / security (push) Waiting to run
CI / asan_ubsan (push) Blocked by required conditions
CI / native_tests (push) Blocked by required conditions
CI / vm_tests (Haiku, false, haiku, r1beta5) (push) Blocked by required conditions
CI / vm_tests (NetBSD, false, netbsd, 10.1) (push) Blocked by required conditions
CI / vm_tests (OmniOS, false, omnios, r151056) (push) Blocked by required conditions
CI / vm_tests (OpenBSD, false, openbsd, 7.7) (push) Blocked by required conditions
CI / vm_tests (borg-freebsd-14-x86_64-gh, FreeBSD, true, freebsd, 14.3) (push) Blocked by required conditions
CI / windows_tests (push) Blocked by required conditions
CodeQL / Analyze (push) Waiting to run
fix dependency issue related to chardet 6 release
2026-02-22 14:53:14 +01:00
Thomas Waldmann
475b70b7d0
fix dependency issue related to chardet 6 release
requests wants < 6, but something else installs >= 6,
triggering this warning on stderr that breaks our tests:

 /home/runner/work/borg/borg/.tox/py311-pyfuse3/lib/python3.11/site-packages/requests/__init__.py:113:
 RequestsDependencyWarning: urllib3 (2.6.3) or chardet (6.0.0dev0)/charset_normalizer (3.4.4) doesn't match a supported version!
2026-02-22 14:38:37 +01:00
TW
0b19a10831
Merge pull request #9384 from mr-raj12/fix-win32-files-changed
create: implement "file changed while backup" detection on Windows, fixes #9382
2026-02-22 12:54:15 +01:00