Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump securetar from 2024.11.0 to 2025.1.3 #5553

Merged
merged 2 commits into from
Jan 17, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 16, 2025

Bumps securetar from 2024.11.0 to 2025.1.3.

Release notes

Sourced from securetar's releases.

2025.1.3

[!WARNING]
This release adds a new file header for encrypted tar files. This makes the file format not backwards compatible! The library can read the old format still.

What's Changed

2025.1.2

What's Changed

2025.1.1

[!NOTE]
This version has a breaking change in the atomic_contents_add() API. Instead of a list a filter function is now expected.

What's Changed

2025.1.0

[!NOTE]
This version has a slightly different handling of padding for encrypted tar files. For inner encrypted tar files, a PAX header _securetar.version with value 2.0 is added to indicate the new format. The library itself is backwards compatible since Python tarfile is not checking gzip footer and/or does not read past the tar end-of-file marker.

What's Changed

Commits
  • eb85e5e Bump version to 2025.1.3 (#79)
  • d88f95c Replace custom PAX headers with a file header (#78)
  • c9f0970 Merge pull request #77 from pvizeli/bump-version-to-2025.1.2
  • 672b197 Bump version to 2025.1.2
  • 03bcfad Merge pull request #75 from emontnemery/validate_inner_tar
  • 300b197 Merge branch 'main' into validate_inner_tar
  • 279ba59 Merge pull request #76 from emontnemery/fix_decrypt_2
  • c5c08ee Correct read of tail in DecryptInnerTar
  • b328f6e Update test
  • 58b7d2c Format code
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added dependencies Updates of external dependencies python Pull requests that update Python code labels Jan 16, 2025
@dependabot dependabot bot force-pushed the dependabot/pip/securetar-2025.1.3 branch from 208fba5 to 4c3afaf Compare January 16, 2025 11:52
@agners agners marked this pull request as draft January 16, 2025 11:59
dependabot bot and others added 2 commits January 16, 2025 19:33
Bumps [securetar](https://github.com/pvizeli/securetar) from 2024.11.0 to 2025.1.3.
- [Release notes](https://github.com/pvizeli/securetar/releases)
- [Commits](pvizeli/securetar@2024.11.0...2025.1.3)

---
updated-dependencies:
- dependency-name: securetar
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@mdegat01 mdegat01 force-pushed the dependabot/pip/securetar-2025.1.3 branch from 4c3afaf to fb50692 Compare January 16, 2025 23:05
@mdegat01 mdegat01 marked this pull request as ready for review January 16, 2025 23:05
@@ -640,6 +640,22 @@ def _save() -> None:
# Take backup
_LOGGER.info("Backing up folder %s", name)

def is_excluded_by_filter(item_arcpath: PurePath) -> bool:
"""Filter out bind mounts in folders being backed up."""
full_path = origin_dir / item_arcpath.relative_to(".")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

From what I can tell that relative_to() does nothing really, but it matches the arcname below.

@agners agners merged commit 463f196 into main Jan 17, 2025
21 checks passed
@agners agners deleted the dependabot/pip/securetar-2025.1.3 branch January 17, 2025 10:18
@github-actions github-actions bot locked and limited conversation to collaborators Jan 19, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
cla-signed dependencies Updates of external dependencies python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants