vaultctl 0.2.2__tar.gz → 0.2.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {vaultctl-0.2.2 → vaultctl-0.2.4}/.github/workflows/docker-publish.yaml +1 -1
- {vaultctl-0.2.2 → vaultctl-0.2.4}/.github/workflows/release.yaml +5 -4
- vaultctl-0.2.4/.github/workflows/renovate.yaml +73 -0
- {vaultctl-0.2.2 → vaultctl-0.2.4}/Dockerfile +1 -1
- {vaultctl-0.2.2 → vaultctl-0.2.4}/PKG-INFO +4 -5
- {vaultctl-0.2.2 → vaultctl-0.2.4}/pyproject.toml +5 -6
- {vaultctl-0.2.2 → vaultctl-0.2.4}/src/vaultctl/commands/login.py +6 -7
- {vaultctl-0.2.2 → vaultctl-0.2.4}/src/vaultctl/commands/pki/rotate_issuing.py +0 -1
- {vaultctl-0.2.2 → vaultctl-0.2.4}/uv.lock +67 -72
- {vaultctl-0.2.2 → vaultctl-0.2.4}/.devcontainer/devcontainer-lock.json +0 -0
- {vaultctl-0.2.2 → vaultctl-0.2.4}/.devcontainer/devcontainer.json +0 -0
- {vaultctl-0.2.2 → vaultctl-0.2.4}/.gitignore +0 -0
- {vaultctl-0.2.2 → vaultctl-0.2.4}/.renovaterc.json5 +0 -0
- {vaultctl-0.2.2 → vaultctl-0.2.4}/LICENSE +0 -0
- {vaultctl-0.2.2 → vaultctl-0.2.4}/README.md +0 -0
- {vaultctl-0.2.2 → vaultctl-0.2.4}/src/vaultctl/__init__.py +0 -0
- {vaultctl-0.2.2 → vaultctl-0.2.4}/src/vaultctl/commands/__init__.py +0 -0
- {vaultctl-0.2.2 → vaultctl-0.2.4}/src/vaultctl/commands/backup_raft_snapshot.py +0 -0
- {vaultctl-0.2.2 → vaultctl-0.2.4}/src/vaultctl/commands/bootstrap.py +2 -2
- {vaultctl-0.2.2 → vaultctl-0.2.4}/src/vaultctl/commands/pki/__init__.py +0 -0
- {vaultctl-0.2.2 → vaultctl-0.2.4}/src/vaultctl/commands/restore_raft_snapshot.py +0 -0
- {vaultctl-0.2.2 → vaultctl-0.2.4}/src/vaultctl/main.py +0 -0
- {vaultctl-0.2.2 → vaultctl-0.2.4}/src/vaultctl/options.py +0 -0
- {vaultctl-0.2.2 → vaultctl-0.2.4}/src/vaultctl/utils.py +0 -0
- {vaultctl-0.2.2 → vaultctl-0.2.4}/src/vaultctl/version.py +0 -0
|
@@ -22,7 +22,7 @@ jobs:
|
|
|
22
22
|
|
|
23
23
|
steps:
|
|
24
24
|
- name: Checkout repository
|
|
25
|
-
uses: actions/checkout@
|
|
25
|
+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
26
26
|
|
|
27
27
|
- name: Get project name and version from pyproject.toml
|
|
28
28
|
id: meta
|
|
@@ -13,10 +13,10 @@ jobs:
|
|
|
13
13
|
|
|
14
14
|
steps:
|
|
15
15
|
- name: Checkout repository
|
|
16
|
-
uses: actions/checkout@
|
|
16
|
+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
17
17
|
|
|
18
18
|
- name: Set up Python
|
|
19
|
-
uses: actions/setup-python@
|
|
19
|
+
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
|
|
20
20
|
with:
|
|
21
21
|
python-version: "3.14"
|
|
22
22
|
|
|
@@ -45,10 +45,11 @@ jobs:
|
|
|
45
45
|
uv publish
|
|
46
46
|
|
|
47
47
|
- name: Create GitHub Release
|
|
48
|
-
uses: softprops/action-gh-release@
|
|
48
|
+
uses: softprops/action-gh-release@718ea10b132b3b2eba29c1007bb80653f286566b # v3.0.1
|
|
49
49
|
with:
|
|
50
50
|
tag_name: v${{ steps.meta.outputs.version }}
|
|
51
51
|
name: v${{ steps.meta.outputs.version }}
|
|
52
52
|
generate_release_notes: true
|
|
53
53
|
files: |
|
|
54
|
-
dist
|
|
54
|
+
dist/*.whl
|
|
55
|
+
dist/*.tar.gz
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
---
|
|
2
|
+
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
|
|
3
|
+
name: Renovate
|
|
4
|
+
|
|
5
|
+
on:
|
|
6
|
+
push:
|
|
7
|
+
branches:
|
|
8
|
+
- main
|
|
9
|
+
paths:
|
|
10
|
+
- .renovaterc.json5
|
|
11
|
+
- .renovate/**.json5
|
|
12
|
+
schedule:
|
|
13
|
+
- cron: 0 * * * *
|
|
14
|
+
workflow_dispatch:
|
|
15
|
+
inputs:
|
|
16
|
+
dryRun:
|
|
17
|
+
description: Dry Run
|
|
18
|
+
type: boolean
|
|
19
|
+
default: false
|
|
20
|
+
required: true
|
|
21
|
+
logLevel:
|
|
22
|
+
description: Log Level
|
|
23
|
+
type: choice
|
|
24
|
+
default: debug
|
|
25
|
+
options:
|
|
26
|
+
- debug
|
|
27
|
+
- info
|
|
28
|
+
required: true
|
|
29
|
+
version:
|
|
30
|
+
description: Renovate Version
|
|
31
|
+
default: latest
|
|
32
|
+
required: true
|
|
33
|
+
|
|
34
|
+
concurrency:
|
|
35
|
+
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
|
|
36
|
+
cancel-in-progress: true
|
|
37
|
+
|
|
38
|
+
permissions:
|
|
39
|
+
contents: read
|
|
40
|
+
|
|
41
|
+
jobs:
|
|
42
|
+
main:
|
|
43
|
+
name: Renovate
|
|
44
|
+
runs-on: ubuntu-latest
|
|
45
|
+
permissions:
|
|
46
|
+
packages: read
|
|
47
|
+
steps:
|
|
48
|
+
- name: Generate Token
|
|
49
|
+
uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
|
|
50
|
+
id: app-token
|
|
51
|
+
with:
|
|
52
|
+
client-id: ${{ secrets.BOT_APP_ID }}
|
|
53
|
+
private-key: ${{ secrets.BOT_APP_PRIVATE_KEY }}
|
|
54
|
+
|
|
55
|
+
- name: Checkout
|
|
56
|
+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
57
|
+
with:
|
|
58
|
+
persist-credentials: false
|
|
59
|
+
token: ${{ steps.app-token.outputs.token }}
|
|
60
|
+
|
|
61
|
+
- name: Run Renovate
|
|
62
|
+
uses: renovatebot/github-action@6d859fc95779be83a0335ca704879b47e5d79641 # v46.1.16
|
|
63
|
+
env:
|
|
64
|
+
LOG_LEVEL: ${{ inputs.logLevel || 'debug' }}
|
|
65
|
+
RENOVATE_AUTODISCOVER: true
|
|
66
|
+
RENOVATE_AUTODISCOVER_FILTER: ${{ github.repository }}
|
|
67
|
+
RENOVATE_DRY_RUN: ${{ inputs.dryRun }}
|
|
68
|
+
RENOVATE_INTERNAL_CHECKS_FILTER: strict
|
|
69
|
+
RENOVATE_PLATFORM: github
|
|
70
|
+
RENOVATE_PLATFORM_COMMIT: true
|
|
71
|
+
with:
|
|
72
|
+
token: ${{ steps.app-token.outputs.token }}
|
|
73
|
+
renovate-version: ${{ inputs.version || 'latest' }}
|
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: vaultctl
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.4
|
|
4
4
|
Summary: vaultctl is a command-line interface (CLI) tool designed to facilitate operations with HashiCorp Vault.
|
|
5
5
|
Author-email: d4rkfella <georgi.panov@darkfellanetwork.com>
|
|
6
6
|
License: MIT
|
|
7
7
|
License-File: LICENSE
|
|
8
8
|
Requires-Python: <4.0,>=3.14
|
|
9
|
-
Requires-Dist: boto3==1.43.
|
|
9
|
+
Requires-Dist: boto3==1.43.36
|
|
10
10
|
Requires-Dist: botocore[crt]
|
|
11
|
-
Requires-Dist: cryptography==
|
|
11
|
+
Requires-Dist: cryptography==49.0.0
|
|
12
12
|
Requires-Dist: hvac==2.4
|
|
13
|
-
Requires-Dist:
|
|
14
|
-
Requires-Dist: typer==0.26.7
|
|
13
|
+
Requires-Dist: typer==0.26.8
|
|
15
14
|
Requires-Dist: validators==0.35.0
|
|
16
15
|
Description-Content-Type: text/markdown
|
|
17
16
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "vaultctl"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.4"
|
|
4
4
|
description = "vaultctl is a command-line interface (CLI) tool designed to facilitate operations with HashiCorp Vault."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = { text = "MIT" }
|
|
@@ -9,12 +9,11 @@ authors = [
|
|
|
9
9
|
]
|
|
10
10
|
requires-python = ">=3.14,<4.0"
|
|
11
11
|
dependencies = [
|
|
12
|
-
"typer==0.26.
|
|
12
|
+
"typer==0.26.8",
|
|
13
13
|
"validators==0.35.0",
|
|
14
14
|
"hvac==2.4",
|
|
15
|
-
"cryptography==
|
|
16
|
-
"
|
|
17
|
-
"boto3==1.43.27",
|
|
15
|
+
"cryptography==49.0.0",
|
|
16
|
+
"boto3==1.43.36",
|
|
18
17
|
"botocore[crt]",
|
|
19
18
|
]
|
|
20
19
|
|
|
@@ -31,7 +30,7 @@ packages = ["src/vaultctl"]
|
|
|
31
30
|
[dependency-groups]
|
|
32
31
|
dev = [
|
|
33
32
|
"types-hvac==2.4.0.20260610",
|
|
34
|
-
"mypy-boto3-s3==1.43.
|
|
33
|
+
"mypy-boto3-s3==1.43.31",
|
|
35
34
|
]
|
|
36
35
|
|
|
37
36
|
[tool.ruff]
|
|
@@ -28,26 +28,25 @@ app = typer.Typer()
|
|
|
28
28
|
|
|
29
29
|
@app.command(help="Authenticate with Vault and optionally save the token.")
|
|
30
30
|
def login( # noqa: C901, PLR0913
|
|
31
|
-
ctx: typer.Context, # noqa: ARG001
|
|
32
31
|
address: AddressOption,
|
|
33
|
-
*,
|
|
34
32
|
ca_cert: CACertOption = None,
|
|
35
33
|
ca_path: CAPathOption = None,
|
|
36
|
-
skip_verify: SkipVerifyOption = False,
|
|
37
34
|
method: Annotated[
|
|
38
35
|
Literal["token", "userpass"],
|
|
39
36
|
typer.Option(help="Auth method: token (default) or userpass"),
|
|
40
37
|
] = "token",
|
|
41
|
-
no_store: Annotated[
|
|
42
|
-
bool,
|
|
43
|
-
typer.Option(help="Do not persist the token to disk", is_flag=True),
|
|
44
|
-
] = False,
|
|
45
38
|
params: Annotated[
|
|
46
39
|
list[str] | None,
|
|
47
40
|
typer.Argument(
|
|
48
41
|
help="Auth parameters as key=value, like username=alice password=foo",
|
|
49
42
|
),
|
|
50
43
|
] = None,
|
|
44
|
+
*,
|
|
45
|
+
no_store: Annotated[
|
|
46
|
+
bool,
|
|
47
|
+
typer.Option(help="Do not persist the token to disk", is_flag=True),
|
|
48
|
+
] = False,
|
|
49
|
+
skip_verify: SkipVerifyOption = False,
|
|
51
50
|
) -> None:
|
|
52
51
|
kv = {}
|
|
53
52
|
if params:
|
|
@@ -40,30 +40,30 @@ wheels = [
|
|
|
40
40
|
|
|
41
41
|
[[package]]
|
|
42
42
|
name = "boto3"
|
|
43
|
-
version = "1.43.
|
|
43
|
+
version = "1.43.36"
|
|
44
44
|
source = { registry = "https://pypi.org/simple" }
|
|
45
45
|
dependencies = [
|
|
46
46
|
{ name = "botocore" },
|
|
47
47
|
{ name = "jmespath" },
|
|
48
48
|
{ name = "s3transfer" },
|
|
49
49
|
]
|
|
50
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
50
|
+
sdist = { url = "https://files.pythonhosted.org/packages/ff/9f/897287e955db0f50b12fd69ef45956e4fd2c7ddb48c736872f7ea2314443/boto3-1.43.36.tar.gz", hash = "sha256:587d7ee92a12e440ad12b0e7f11f3358f0c4d65b19f64726efc94aaf194aff28", size = 112690, upload-time = "2026-06-23T02:47:14.561Z" }
|
|
51
51
|
wheels = [
|
|
52
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
52
|
+
{ url = "https://files.pythonhosted.org/packages/9f/f1/274303f52483ecf199eae6f8d9b6f5951670397ee4d72c06cfd4eb644612/boto3-1.43.36-py3-none-any.whl", hash = "sha256:42942dde254673abcbc9e6e60017c88341a4f49d99d24e1f2e290fb38138c26f", size = 140031, upload-time = "2026-06-23T02:47:13.178Z" },
|
|
53
53
|
]
|
|
54
54
|
|
|
55
55
|
[[package]]
|
|
56
56
|
name = "botocore"
|
|
57
|
-
version = "1.43.
|
|
57
|
+
version = "1.43.36"
|
|
58
58
|
source = { registry = "https://pypi.org/simple" }
|
|
59
59
|
dependencies = [
|
|
60
60
|
{ name = "jmespath" },
|
|
61
61
|
{ name = "python-dateutil" },
|
|
62
62
|
{ name = "urllib3" },
|
|
63
63
|
]
|
|
64
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
64
|
+
sdist = { url = "https://files.pythonhosted.org/packages/7c/37/da9e7f6ca73ac73afd7f0bb7f238aa5daba35c081e98d7f48a7c399599c0/botocore-1.43.36.tar.gz", hash = "sha256:4cae47d1b2d426316b85a0087d9e69e048f13bc003b5177d74639fe9dfd28205", size = 15625488, upload-time = "2026-06-23T02:47:03.192Z" }
|
|
65
65
|
wheels = [
|
|
66
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
66
|
+
{ url = "https://files.pythonhosted.org/packages/5c/19/934f81592527a3f7f9b943c893e334c721a4644948642bc33885d584e9ec/botocore-1.43.36-py3-none-any.whl", hash = "sha256:3c65fdc39ed01d8dfde1e961b34038aed03c459f8ddf80717a12ac006475e49d", size = 15313630, upload-time = "2026-06-23T02:46:59.327Z" },
|
|
67
67
|
]
|
|
68
68
|
|
|
69
69
|
[package.optional-dependencies]
|
|
@@ -73,11 +73,11 @@ crt = [
|
|
|
73
73
|
|
|
74
74
|
[[package]]
|
|
75
75
|
name = "certifi"
|
|
76
|
-
version = "2026.
|
|
76
|
+
version = "2026.6.17"
|
|
77
77
|
source = { registry = "https://pypi.org/simple" }
|
|
78
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
78
|
+
sdist = { url = "https://files.pythonhosted.org/packages/c9/c7/424b75da314c1045981bd9777432fad05a9e0c69daa4ed7e308bbaffe405/certifi-2026.6.17.tar.gz", hash = "sha256:024c88eeec92ca068db80f02b8b07c9cef7b9fe261d1d535abfd5abd6f6af432", size = 134594, upload-time = "2026-06-17T10:31:07.894Z" }
|
|
79
79
|
wheels = [
|
|
80
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
80
|
+
{ url = "https://files.pythonhosted.org/packages/ef/2f/c5464532e965badff2f4c4c1a3a83f5697f0d7c407ed0cda44aaa99bb451/certifi-2026.6.17-py3-none-any.whl", hash = "sha256:2227dcbaafe0d2f59279d1762ddddc37783ed4354594f194ffc31d20f41fc3db", size = 133289, upload-time = "2026-06-17T10:31:06.348Z" },
|
|
81
81
|
]
|
|
82
82
|
|
|
83
83
|
[[package]]
|
|
@@ -165,55 +165,52 @@ wheels = [
|
|
|
165
165
|
|
|
166
166
|
[[package]]
|
|
167
167
|
name = "cryptography"
|
|
168
|
-
version = "
|
|
168
|
+
version = "49.0.0"
|
|
169
169
|
source = { registry = "https://pypi.org/simple" }
|
|
170
170
|
dependencies = [
|
|
171
171
|
{ name = "cffi", marker = "platform_python_implementation != 'PyPy'" },
|
|
172
172
|
]
|
|
173
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
173
|
+
sdist = { url = "https://files.pythonhosted.org/packages/1f/99/d1c90d6041656cc6ee229dc99cd67fd0cd5aec3c5f7d72fffc27cc750054/cryptography-49.0.0.tar.gz", hash = "sha256:f89660a348f4f78a92366240a61404e337586ef7f5909a2fef59ca88ef505493", size = 854345, upload-time = "2026-06-12T20:02:30.512Z" }
|
|
174
174
|
wheels = [
|
|
175
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
176
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
177
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
178
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
179
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
180
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
181
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
182
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
183
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
184
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
185
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
186
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
187
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
188
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
189
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
190
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
191
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
192
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
193
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
194
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
195
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
196
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
197
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
198
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
199
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
200
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
201
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
202
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
203
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
204
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
205
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
206
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
207
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
208
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
209
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
210
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
211
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
212
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
213
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
214
|
-
{ url = "https://files.pythonhosted.org/packages/52/41/04cb5eb17085ade6f50cc611fb657df6a0f5885350de8764ece89c050197/cryptography-48.0.1-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:86fe77abb1bd87afb251d4d02ada7ecf53a32cee9b67d976abb2e45a13297475", size = 4964539, upload-time = "2026-06-09T22:31:18.793Z" },
|
|
215
|
-
{ url = "https://files.pythonhosted.org/packages/36/bf/ed70785c496e89d7e73b7cda2d21f2447fd6d4e821714b8d04ff217fed92/cryptography-48.0.1-cp39-abi3-win32.whl", hash = "sha256:6b2c0c3e6ccf3ade7750f836ef3ee36eea250cc467d45c256895573ac08cc6f1", size = 3282307, upload-time = "2026-06-09T22:30:53.162Z" },
|
|
216
|
-
{ url = "https://files.pythonhosted.org/packages/b3/ff/371ea7d252656ee1eb6d83eeeef3d1d0c6baf1d6497687d081ea03814670/cryptography-48.0.1-cp39-abi3-win_amd64.whl", hash = "sha256:9a49ca6c81417f6a5edb50375a60cccdd70fa0a91a5211829dbea74eba94d2ac", size = 3793408, upload-time = "2026-06-09T22:32:15.191Z" },
|
|
175
|
+
{ url = "https://files.pythonhosted.org/packages/9b/22/adf66990e63584a68dfb50c24f48a125c07b1699899381c8151e63ed458c/cryptography-49.0.0-cp311-abi3-macosx_11_0_arm64.whl", hash = "sha256:966fe0e9c67490071f14c0d2b1cb2dfb3023c5ce39457343931415f08382f2db", size = 4032100, upload-time = "2026-06-12T20:02:32.143Z" },
|
|
176
|
+
{ url = "https://files.pythonhosted.org/packages/09/41/3797cfaf69cae04a13ee78ebd83f0678d9c02b4779d21ce24445326f1a69/cryptography-49.0.0-cp311-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:36d1709f992593689b45bda411498d62c6e365f2ca00b84657d4dadd24de16db", size = 4692978, upload-time = "2026-06-12T20:01:21.305Z" },
|
|
177
|
+
{ url = "https://files.pythonhosted.org/packages/e6/8b/43011f7ebe515a8aa20d61f290a326cd890c2e738e16e59eaff8d9c3a412/cryptography-49.0.0-cp311-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:0e959b578856a3924bc0cbb710fc12c387b9412a951389f3ca61704a9e25f325", size = 4716422, upload-time = "2026-06-12T20:01:48.566Z" },
|
|
178
|
+
{ url = "https://files.pythonhosted.org/packages/4a/91/01ce7303a4579e6d3a6abef01bd322848e9ea7a219adcabc5048b9033571/cryptography-49.0.0-cp311-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:53ecee2e23f7169b6117e99fc8a944e5e50f79e69758a83b52a00cb98ab2b2d2", size = 4700503, upload-time = "2026-06-12T20:02:47.091Z" },
|
|
179
|
+
{ url = "https://files.pythonhosted.org/packages/62/99/a2c95cf8293f07491e9e27c20cc4dcd18176d944e674679adeb1d0173fd6/cryptography-49.0.0-cp311-abi3-manylinux_2_28_ppc64le.whl", hash = "sha256:2eda353d8a27bcbcaa4cbed18994a74ab4d19a2ca897db188ea269ab9b71419b", size = 5309779, upload-time = "2026-06-12T20:02:08.987Z" },
|
|
180
|
+
{ url = "https://files.pythonhosted.org/packages/20/2c/0622f20ff02b2ef32558733443805dc82fd4c275be01b2d19d14676f3a1b/cryptography-49.0.0-cp311-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:2afe9051da7ae7bd5905da5a949280c7d2bb75682e188f650a9d0f2756b834c6", size = 4749683, upload-time = "2026-06-12T20:02:03.335Z" },
|
|
181
|
+
{ url = "https://files.pythonhosted.org/packages/a3/5b/c5246635d5fd3b64e0d45ae10e99fd32fe9676a79915ccfe5a61ba9af1a5/cryptography-49.0.0-cp311-abi3-manylinux_2_31_armv7l.whl", hash = "sha256:0b82e28ee398a386f0807bba7884d30f25218855690f45115831bcce5d90822c", size = 4337874, upload-time = "2026-06-12T20:02:54.323Z" },
|
|
182
|
+
{ url = "https://files.pythonhosted.org/packages/6d/88/05563c7fe2e914e87d1a536d06fe83e66b4e1d95cb593e05aea375531da8/cryptography-49.0.0-cp311-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:ccac2bfebc306b862133e3bb71f3f6ee8bb525240089b2d952e4144b3a6d5da7", size = 4700283, upload-time = "2026-06-12T20:01:34.822Z" },
|
|
183
|
+
{ url = "https://files.pythonhosted.org/packages/c4/b6/d7696e4e890d6ae1469935164c9e5215c557671cb78d6e3f458ccceaa632/cryptography-49.0.0-cp311-abi3-manylinux_2_34_ppc64le.whl", hash = "sha256:d0527ce944105f257f605a827d6ebead966c752038b6e8656abb9c5edee6fc68", size = 5265844, upload-time = "2026-06-12T20:01:24.09Z" },
|
|
184
|
+
{ url = "https://files.pythonhosted.org/packages/a9/3c/f3ad17eecc1a57b0ba236dc01f90e783c51f4a2f35f64777cc4f47a184b2/cryptography-49.0.0-cp311-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:cbc77da8c523d5abd028635ba850a6966fcee2c82e2bf65a41d1d8afe0f98be9", size = 4749290, upload-time = "2026-06-12T20:01:30.848Z" },
|
|
185
|
+
{ url = "https://files.pythonhosted.org/packages/4f/01/339573cf1023163a400b0b5d16f6d507de413b9f60be6fd1b77feeaf6737/cryptography-49.0.0-cp311-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:b87e65d263b3e5d3bb92a57e2a6638e2f31110fa7aa890c7b2dbba42248d0a3f", size = 4834612, upload-time = "2026-06-12T20:01:29.246Z" },
|
|
186
|
+
{ url = "https://files.pythonhosted.org/packages/71/fd/577302e213a1be9468f92d1afef66fcf1ef83d516819d9992ca547f592bd/cryptography-49.0.0-cp311-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:66ec79c3904820572d7e987abdf304281f141d37ad9a489b8e97066e7b9b6459", size = 4980804, upload-time = "2026-06-12T20:01:42.853Z" },
|
|
187
|
+
{ url = "https://files.pythonhosted.org/packages/1f/09/f42b1d190c5ba75f72062a387f8030d1d75f6ab035788f1d9c4b01de6525/cryptography-49.0.0-cp311-abi3-win_amd64.whl", hash = "sha256:e5dfc1e64de5677cec922ffa8da89c546d0415bf6efdf081842e5d44c84e1f0e", size = 3810026, upload-time = "2026-06-12T20:02:39.262Z" },
|
|
188
|
+
{ url = "https://files.pythonhosted.org/packages/ec/9e/db72b3ae7fc9cfad53e630e56c6ae83b9b6ff0bf3718ffb8012d20b3aabf/cryptography-49.0.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:73a205dce83953d131a4aa1e0fd917a2fd1c5b1eef251e9d7152efefcbf5caf7", size = 4013892, upload-time = "2026-06-12T20:02:10.735Z" },
|
|
189
|
+
{ url = "https://files.pythonhosted.org/packages/86/12/c48a424f38db03027be9f7ed5c7dc5de9933dbee992865f98b13727a009d/cryptography-49.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:196ecd6a36e4e9aa10270393bb98d8df88fccee0bf1e5128b91ae4eb4375896d", size = 4678835, upload-time = "2026-06-12T20:02:48.743Z" },
|
|
190
|
+
{ url = "https://files.pythonhosted.org/packages/68/28/8a3ad4653662c93fc44dc4e5d8fd374c25c42e07b34bbfbadf49cf57a5a8/cryptography-49.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7abcee80084cda3f7691f3eb1ce480d8df49cec637b429aa35986c1de71738aa", size = 4697239, upload-time = "2026-06-12T20:02:56.03Z" },
|
|
191
|
+
{ url = "https://files.pythonhosted.org/packages/a8/b2/2193fc74f81aee4f9b62733133b73b5176718932ed8f2e4b03fa040480a6/cryptography-49.0.0-cp314-cp314t-manylinux_2_28_aarch64.whl", hash = "sha256:4ae387c9cb68ea569ca17e490d66d8142b81c3cc814bf179974b7d146e490bbb", size = 4685593, upload-time = "2026-06-12T20:02:50.666Z" },
|
|
192
|
+
{ url = "https://files.pythonhosted.org/packages/47/f1/1d3eaa243bfc5de4a187b22aa8c048b3e4980bfbe830ac46e6bac2e66947/cryptography-49.0.0-cp314-cp314t-manylinux_2_28_ppc64le.whl", hash = "sha256:f37d847238971164fdbc68ade6f6574aecc9c0af714190e2083429ff68f4ce9d", size = 5289961, upload-time = "2026-06-12T20:01:46.468Z" },
|
|
193
|
+
{ url = "https://files.pythonhosted.org/packages/58/39/2d51306721330c486495853eda1c567880ff036de15a14c4b74f399934af/cryptography-49.0.0-cp314-cp314t-manylinux_2_28_x86_64.whl", hash = "sha256:c2bc30226390d60ea19d9f82b19db005fe0452154a23c1c410c12ea801e43561", size = 4731145, upload-time = "2026-06-12T20:02:16.832Z" },
|
|
194
|
+
{ url = "https://files.pythonhosted.org/packages/17/50/983e838c7fd0d87fd8c969bcdd328edaf5f756e38df5281637424c155873/cryptography-49.0.0-cp314-cp314t-manylinux_2_31_armv7l.whl", hash = "sha256:07cab27cc7b7e0fd28e5e26bb9eeedde5c135c868b46de4a27845abe94af6122", size = 4321719, upload-time = "2026-06-12T20:02:52.611Z" },
|
|
195
|
+
{ url = "https://files.pythonhosted.org/packages/a7/f5/8f571d7e27c55bce9f76f026143bcb1e040a4233149ecca0bea5fa5dd5f7/cryptography-49.0.0-cp314-cp314t-manylinux_2_34_aarch64.whl", hash = "sha256:b20133d204d2bb56ba047642199603876c872026ca53e79c35b83772ab2cc505", size = 4685209, upload-time = "2026-06-12T20:02:07.282Z" },
|
|
196
|
+
{ url = "https://files.pythonhosted.org/packages/e7/84/0e27016a6fc5a0886f797018b26aa42f40c09a82332bff77822a451deaaa/cryptography-49.0.0-cp314-cp314t-manylinux_2_34_ppc64le.whl", hash = "sha256:b970c6da94d5bb18629db453d14f2a1300f6bf59b61e9b82377931ef95504866", size = 5246285, upload-time = "2026-06-12T20:01:32.439Z" },
|
|
197
|
+
{ url = "https://files.pythonhosted.org/packages/11/2d/5e1fb307cb5931881516b464c98774b3f2c36b5d4bb9a2830253cf553cad/cryptography-49.0.0-cp314-cp314t-manylinux_2_34_x86_64.whl", hash = "sha256:d8ecde755e2e91bf773fc94e8c9d730cd7f2007004cb492263a794ec3899a1c8", size = 4730441, upload-time = "2026-06-12T20:02:01.469Z" },
|
|
198
|
+
{ url = "https://files.pythonhosted.org/packages/e4/c0/bff5a02ee731d207d6a1ed51732549d8c53d2bc8da1d10ec6f2844201d68/cryptography-49.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:e3fb64c420688e5319ae25113a354015abbd8dffbfbc41781a1ea66fc7622ac3", size = 4815869, upload-time = "2026-06-12T20:01:36.574Z" },
|
|
199
|
+
{ url = "https://files.pythonhosted.org/packages/b9/26/814681d14248d95d73d5c3eea0c39a94eb8302df966f670a2c60de90974b/cryptography-49.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:32703d93296f5c1f4b53349ad3a250c2cae0fdecd3a3dd5d47e616d8d616af27", size = 4960948, upload-time = "2026-06-12T20:02:18.688Z" },
|
|
200
|
+
{ url = "https://files.pythonhosted.org/packages/4c/fe/93ecac273d3738939d023612ad12cca9a3740a5345d69fda04134c43fd96/cryptography-49.0.0-cp314-cp314t-win_amd64.whl", hash = "sha256:33cd0565932807baddb67b96dbee92f2c374b5c89dee09fd74079aeb8c8dba61", size = 3799153, upload-time = "2026-06-12T20:01:39.059Z" },
|
|
201
|
+
{ url = "https://files.pythonhosted.org/packages/19/2a/5bb823f5bedcf80718cea7fbc95ec5515cca3769633c4b01a32be7f30e7c/cryptography-49.0.0-cp39-abi3-macosx_11_0_arm64.whl", hash = "sha256:ec5e529fb80935c94fe7b729f9972b50e351a0e6b50aa294fd5cabb109fcc29a", size = 4025947, upload-time = "2026-06-12T20:01:25.745Z" },
|
|
202
|
+
{ url = "https://files.pythonhosted.org/packages/3d/df/40577043ca124e17012f408ddddaeb213b856336ac82ddb3bc915f39e29f/cryptography-49.0.0-cp39-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:f78ff2c9ed8dc2d036b0f4d640e22522213d047c1b14e61205a7e55c80a494d4", size = 4692429, upload-time = "2026-06-12T20:01:53.628Z" },
|
|
203
|
+
{ url = "https://files.pythonhosted.org/packages/2c/99/2d13299eb3dd27b02dcfaafcc91d6b5cb3329f7cbd6d8f51921acd566c1a/cryptography-49.0.0-cp39-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:35b151772baff2c74cba7fa290ceaff4c3b11c0c881eb93eb5dbc05a7cfbba18", size = 4700968, upload-time = "2026-06-12T20:02:45.383Z" },
|
|
204
|
+
{ url = "https://files.pythonhosted.org/packages/a5/4d/9c0cd02f95e2602dd5e563da149ee0830abef3537be8b34dc56281ebe27a/cryptography-49.0.0-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:0f21641cf4b30fca7aee061ced0ec7ad7b073518088b7c9969a297c0ae796c69", size = 4697758, upload-time = "2026-06-12T20:01:41.13Z" },
|
|
205
|
+
{ url = "https://files.pythonhosted.org/packages/24/01/186c825898477d77e2324d5360fefe622ff1d8d1963ec0554e2cada8ec77/cryptography-49.0.0-cp39-abi3-manylinux_2_28_ppc64le.whl", hash = "sha256:9e82dcc8e56052715fb18b2429e3bca4823b1629136a2084fc45a9a5cecb9b64", size = 5298863, upload-time = "2026-06-12T20:02:24.579Z" },
|
|
206
|
+
{ url = "https://files.pythonhosted.org/packages/b8/7b/62cbbab75d0659865bf0273790031544a0b16c8072d258f9428dcd8190dc/cryptography-49.0.0-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:6f2debedf9ca60cf1d5bd466475638af5130f89965605cd818484d19987d3a21", size = 4735983, upload-time = "2026-06-12T20:01:50.14Z" },
|
|
207
|
+
{ url = "https://files.pythonhosted.org/packages/6c/72/3e798c064bc39e471008075d0f9bc9daf77a80879c092e4a8e170c585ed4/cryptography-49.0.0-cp39-abi3-manylinux_2_31_armv7l.whl", hash = "sha256:8c25ceb16df5b9435f3f6a9829204985b0e0cbee3b48aacd432c7d2c850b44d9", size = 4334173, upload-time = "2026-06-12T20:01:44.743Z" },
|
|
208
|
+
{ url = "https://files.pythonhosted.org/packages/f0/ee/6fca21d1ac73e06f8bef71940abfd4d2f6472b4bca284d770f32bd4086f6/cryptography-49.0.0-cp39-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:28d8b15e6275f12c8a207dc309dfa957903c927d08d0cc937ee3f63f200693cc", size = 4697298, upload-time = "2026-06-12T20:02:20.918Z" },
|
|
209
|
+
{ url = "https://files.pythonhosted.org/packages/67/d0/a5fcd3515f0bae49a7b6d0413cc1bdccdcc1fc0047037a0d480642cdc5d6/cryptography-49.0.0-cp39-abi3-manylinux_2_34_ppc64le.whl", hash = "sha256:6fc361c34fb6aac015ce19435876635e5c6d21db31998b0920f675f131e043b8", size = 5254338, upload-time = "2026-06-12T20:02:22.737Z" },
|
|
210
|
+
{ url = "https://files.pythonhosted.org/packages/a0/84/84fe36f19caf857d61cb7fc9c63035a47ffabd84ea12d1d393148efa3615/cryptography-49.0.0-cp39-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:2400ef9c9e2299a25614eb1dea3db54a69b1349efd043bfac9c67630d136df36", size = 4735650, upload-time = "2026-06-12T20:02:41.389Z" },
|
|
211
|
+
{ url = "https://files.pythonhosted.org/packages/6c/a0/db537264e234f7273a73ec020873d6d6b39dfd8a53db78b550ca8320440e/cryptography-49.0.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:67e1d20ad9ef3a563c59ef22e7a8a0b8210bd26604369ea4a30a7c66aefe504e", size = 4834820, upload-time = "2026-06-12T20:01:51.847Z" },
|
|
212
|
+
{ url = "https://files.pythonhosted.org/packages/93/77/8df9eb486495979bccecd1062e2eaf435250e84437040295b57d09048b0b/cryptography-49.0.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:42b0684e0e40cf26122427802486f6d93aea593612603a94fbf260c7eb1e9c1b", size = 4967968, upload-time = "2026-06-12T20:02:12.524Z" },
|
|
213
|
+
{ url = "https://files.pythonhosted.org/packages/c2/e6/f60198ea8d9dfa15fff9ed4ca02ce362f6eadd9ba757dcc50634c4257b63/cryptography-49.0.0-cp39-abi3-win_amd64.whl", hash = "sha256:026ac7423e6fa66872d3bf889be5974507da3944f866f704fa200eadacd00001", size = 3785547, upload-time = "2026-06-12T20:02:26.847Z" },
|
|
217
214
|
]
|
|
218
215
|
|
|
219
216
|
[[package]]
|
|
@@ -269,11 +266,11 @@ wheels = [
|
|
|
269
266
|
|
|
270
267
|
[[package]]
|
|
271
268
|
name = "mypy-boto3-s3"
|
|
272
|
-
version = "1.43.
|
|
269
|
+
version = "1.43.31"
|
|
273
270
|
source = { registry = "https://pypi.org/simple" }
|
|
274
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
271
|
+
sdist = { url = "https://files.pythonhosted.org/packages/1a/1d/cc08acc62582cb6a9b6ccb8dac34da552f259c19f536ab632e03eb14be5f/mypy_boto3_s3-1.43.31.tar.gz", hash = "sha256:fb8674063f3a491f1364c025371c3155077cd780bd04176497f8b31b5a8dd34f", size = 78802, upload-time = "2026-06-16T20:37:48.774Z" }
|
|
275
272
|
wheels = [
|
|
276
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
273
|
+
{ url = "https://files.pythonhosted.org/packages/0b/c0/8c9b1bc257b716251683c3d1c8d9bb45381f71616dacf208b7d484a8737a/mypy_boto3_s3-1.43.31-py3-none-any.whl", hash = "sha256:b21c97c0db23cffcf0704625b42cf369366ad4bbdf84a4eb2fa265431c60ae83", size = 86161, upload-time = "2026-06-16T20:37:46.043Z" },
|
|
277
274
|
]
|
|
278
275
|
|
|
279
276
|
[[package]]
|
|
@@ -296,14 +293,14 @@ wheels = [
|
|
|
296
293
|
|
|
297
294
|
[[package]]
|
|
298
295
|
name = "python-dateutil"
|
|
299
|
-
version = "2.9.0"
|
|
296
|
+
version = "2.9.0.post0"
|
|
300
297
|
source = { registry = "https://pypi.org/simple" }
|
|
301
298
|
dependencies = [
|
|
302
299
|
{ name = "six" },
|
|
303
300
|
]
|
|
304
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
301
|
+
sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432, upload-time = "2024-03-01T18:36:20.211Z" }
|
|
305
302
|
wheels = [
|
|
306
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
303
|
+
{ url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892, upload-time = "2024-03-01T18:36:18.57Z" },
|
|
307
304
|
]
|
|
308
305
|
|
|
309
306
|
[[package]]
|
|
@@ -336,14 +333,14 @@ wheels = [
|
|
|
336
333
|
|
|
337
334
|
[[package]]
|
|
338
335
|
name = "s3transfer"
|
|
339
|
-
version = "0.
|
|
336
|
+
version = "0.19.0"
|
|
340
337
|
source = { registry = "https://pypi.org/simple" }
|
|
341
338
|
dependencies = [
|
|
342
339
|
{ name = "botocore" },
|
|
343
340
|
]
|
|
344
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
341
|
+
sdist = { url = "https://files.pythonhosted.org/packages/f6/94/dcdaeb1713cab9c84def276cfac7388b17c7d9855bbcfe88d77e4dbafd44/s3transfer-0.19.0.tar.gz", hash = "sha256:ce436931687addc4c1712d52d40b32f53e88315723f107ffa20ba82b05a0f685", size = 165171, upload-time = "2026-06-16T19:44:51.599Z" }
|
|
345
342
|
wheels = [
|
|
346
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
343
|
+
{ url = "https://files.pythonhosted.org/packages/46/5f/4c174edad94f82de888ac00a5ddd8d07b35609b6c94f0bdf4d74af57703e/s3transfer-0.19.0-py3-none-any.whl", hash = "sha256:777cc2415536f1debadb5c2ef7779275d0fc0fe0e042411cdd6caebeb2685262", size = 90101, upload-time = "2026-06-16T19:44:50.439Z" },
|
|
347
344
|
]
|
|
348
345
|
|
|
349
346
|
[[package]]
|
|
@@ -366,7 +363,7 @@ wheels = [
|
|
|
366
363
|
|
|
367
364
|
[[package]]
|
|
368
365
|
name = "typer"
|
|
369
|
-
version = "0.26.
|
|
366
|
+
version = "0.26.8"
|
|
370
367
|
source = { registry = "https://pypi.org/simple" }
|
|
371
368
|
dependencies = [
|
|
372
369
|
{ name = "annotated-doc" },
|
|
@@ -374,9 +371,9 @@ dependencies = [
|
|
|
374
371
|
{ name = "rich" },
|
|
375
372
|
{ name = "shellingham" },
|
|
376
373
|
]
|
|
377
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
374
|
+
sdist = { url = "https://files.pythonhosted.org/packages/7c/f7/68adc395201b20b872d68e975386832e8005ffeacedd43a1d837a32815be/typer-0.26.8.tar.gz", hash = "sha256:c244a6bd558886fe3f8780efb6bdd28bb9aff005a94eedebaa5cb32926fe2f7e", size = 202097, upload-time = "2026-06-26T09:22:45.705Z" }
|
|
378
375
|
wheels = [
|
|
379
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
376
|
+
{ url = "https://files.pythonhosted.org/packages/80/87/b9fd69c92c6102a066e1b86a35243f53e70bd4c709f2a26d9f4fee4f4dc0/typer-0.26.8-py3-none-any.whl", hash = "sha256:3512ca79ac5c11113414b36e80281b872884477722440691c89d1112e321a49c", size = 122564, upload-time = "2026-06-26T09:22:44.72Z" },
|
|
380
377
|
]
|
|
381
378
|
|
|
382
379
|
[[package]]
|
|
@@ -411,14 +408,13 @@ wheels = [
|
|
|
411
408
|
|
|
412
409
|
[[package]]
|
|
413
410
|
name = "vaultctl"
|
|
414
|
-
version = "0.2.
|
|
411
|
+
version = "0.2.3"
|
|
415
412
|
source = { editable = "." }
|
|
416
413
|
dependencies = [
|
|
417
414
|
{ name = "boto3" },
|
|
418
415
|
{ name = "botocore", extra = ["crt"] },
|
|
419
416
|
{ name = "cryptography" },
|
|
420
417
|
{ name = "hvac" },
|
|
421
|
-
{ name = "python-dateutil" },
|
|
422
418
|
{ name = "typer" },
|
|
423
419
|
{ name = "validators" },
|
|
424
420
|
]
|
|
@@ -431,17 +427,16 @@ dev = [
|
|
|
431
427
|
|
|
432
428
|
[package.metadata]
|
|
433
429
|
requires-dist = [
|
|
434
|
-
{ name = "boto3", specifier = "==1.43.
|
|
430
|
+
{ name = "boto3", specifier = "==1.43.36" },
|
|
435
431
|
{ name = "botocore", extras = ["crt"] },
|
|
436
|
-
{ name = "cryptography", specifier = "==
|
|
432
|
+
{ name = "cryptography", specifier = "==49.0.0" },
|
|
437
433
|
{ name = "hvac", specifier = "==2.4" },
|
|
438
|
-
{ name = "
|
|
439
|
-
{ name = "typer", specifier = "==0.26.7" },
|
|
434
|
+
{ name = "typer", specifier = "==0.26.8" },
|
|
440
435
|
{ name = "validators", specifier = "==0.35.0" },
|
|
441
436
|
]
|
|
442
437
|
|
|
443
438
|
[package.metadata.requires-dev]
|
|
444
439
|
dev = [
|
|
445
|
-
{ name = "mypy-boto3-s3", specifier = "==1.43.
|
|
440
|
+
{ name = "mypy-boto3-s3", specifier = "==1.43.31" },
|
|
446
441
|
{ name = "types-hvac", specifier = "==2.4.0.20260610" },
|
|
447
442
|
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -30,16 +30,16 @@ AUTO_UNSEAL_MAX_ATTEMPT = 10
|
|
|
30
30
|
def bootstrap( # noqa: PLR0913
|
|
31
31
|
address: AddressOption,
|
|
32
32
|
source: RestoreSourceOption = None,
|
|
33
|
-
*,
|
|
34
33
|
ca_cert: CACertOption = None,
|
|
35
34
|
ca_path: CAPathOption = None,
|
|
36
|
-
skip_verify: SkipVerifyOption = False,
|
|
37
35
|
aws_profile: AwsProfileOption = None,
|
|
38
36
|
aws_access_key_id: AwsAccessKeyIdOption = None,
|
|
39
37
|
aws_secret_access_key: AwsSecretAccessKeyOption = None,
|
|
40
38
|
aws_endpoint_url: AwsEndpointUrlOption = None,
|
|
41
39
|
aws_region: AwsRegionOption = "us-east-1",
|
|
42
40
|
timeout: TimeoutOption = 30,
|
|
41
|
+
*,
|
|
42
|
+
skip_verify: SkipVerifyOption = False,
|
|
43
43
|
) -> None:
|
|
44
44
|
if not source:
|
|
45
45
|
msg = "--from is required"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|