Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: pvizeli/securetar
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2024.11.0
Choose a base ref
...
head repository: pvizeli/securetar
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2025.1.3
Choose a head ref
Loading
Showing with 484 additions and 109 deletions.
  1. +1 −1 pyproject.toml
  2. +1 −1 requirements-test.txt
  3. +209 −41 securetar/__init__.py
  4. BIN tests/fixtures/backup_encrypted_gzipped_legacy_format.tar
  5. +273 −66 tests/test_tar.py
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "securetar"
version = "2024.11.0"
version = "2025.1.3"
license = {text = "Apache-2.0"}
description = "Python module to handle tarfile backups."
readme = "README.md"
2 changes: 1 addition & 1 deletion requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
flake8==7.1.1
black==24.10.0
pytest==8.3.3
pytest==8.3.4
Loading