From 9fdbaaa89f653dbf8f4adf16afc70802069b6e94 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 5 Jun 2024 01:15:34 +0800
Subject: [PATCH] build(deps): bump zip-extensions from 0.6.2 to 0.7.0 in
/userspace/ksud (#1798)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
[//]: # (dependabot-start)
⚠️ **Dependabot is rebasing this PR** ⚠️
Rebasing might not happen immediately, so don't worry if this takes some
time.
Note: if you make any changes to this PR yourself, they will take
precedence over the rebase.
---
[//]: # (dependabot-end)
Bumps
[zip-extensions](https://github.com/matzefriedrich/zip-extensions-rs)
from 0.6.2 to 0.7.0.
Release notes
Sourced from zip-extensions's
releases.
v0.7.0
Changes
- The
create_from_directory_with_options method now
supports per-item file options. This introduces a breaking change:
instead of passing FileOptions directly, an Fn
must be specified that will be called for each file and must return a
FileOptions value.
- Upgraded the zip dependency to version 0.6.6.
Changelog
Sourced from zip-extensions's
changelog.
[0.7.0] - 2024-06-01
Changed
- [PR #13]
Adds support for per-item file options by the
create_from_directory_with_options method. This introduces
a breaking change; instead of passing a FileOptions
directly an Fn must be specified that is called for each
file, and must return a FileOptions value.
- Upgraded the zip dependency to version 0.6.6.
Commits
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
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-automerge-start)
[//]: # (dependabot-automerge-end)
---
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 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)
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
userspace/ksud/Cargo.lock | 4 ++--
userspace/ksud/Cargo.toml | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/userspace/ksud/Cargo.lock b/userspace/ksud/Cargo.lock
index ee17c7f5..e39414ab 100644
--- a/userspace/ksud/Cargo.lock
+++ b/userspace/ksud/Cargo.lock
@@ -1791,9 +1791,9 @@ dependencies = [
[[package]]
name = "zip-extensions"
-version = "0.6.2"
+version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cecf62554c4ff96bce01a7ef123d160c3ffe9180638820f8b4d545c65b221b8c"
+checksum = "c865b4f0f43f22d1bd7ba05479b5c003e0e98e9090c3a2e4280b5eace59f62df"
dependencies = [
"zip 0.6.6",
]
diff --git a/userspace/ksud/Cargo.toml b/userspace/ksud/Cargo.toml
index d0316603..b5486ada 100644
--- a/userspace/ksud/Cargo.toml
+++ b/userspace/ksud/Cargo.toml
@@ -17,7 +17,7 @@ zip = { version = "2", features = [
"time",
"zstd",
], default-features = false }
-zip-extensions = "0.6"
+zip-extensions = "0.7"
java-properties = "2"
log = "0.4"
env_logger = { version = "0.11", default-features = false }