vaultctl 0.2.3__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.3 → vaultctl-0.2.4}/.github/workflows/docker-publish.yaml +1 -1
- {vaultctl-0.2.3 → vaultctl-0.2.4}/.github/workflows/release.yaml +3 -3
- {vaultctl-0.2.3 → vaultctl-0.2.4}/.github/workflows/renovate.yaml +2 -2
- {vaultctl-0.2.3 → vaultctl-0.2.4}/Dockerfile +1 -1
- {vaultctl-0.2.3 → vaultctl-0.2.4}/PKG-INFO +3 -3
- {vaultctl-0.2.3 → vaultctl-0.2.4}/pyproject.toml +3 -3
- {vaultctl-0.2.3 → vaultctl-0.2.4}/uv.lock +12 -12
- {vaultctl-0.2.3 → vaultctl-0.2.4}/.devcontainer/devcontainer-lock.json +0 -0
- {vaultctl-0.2.3 → vaultctl-0.2.4}/.devcontainer/devcontainer.json +0 -0
- {vaultctl-0.2.3 → vaultctl-0.2.4}/.gitignore +0 -0
- {vaultctl-0.2.3 → vaultctl-0.2.4}/.renovaterc.json5 +0 -0
- {vaultctl-0.2.3 → vaultctl-0.2.4}/LICENSE +0 -0
- {vaultctl-0.2.3 → vaultctl-0.2.4}/README.md +0 -0
- {vaultctl-0.2.3 → vaultctl-0.2.4}/src/vaultctl/__init__.py +0 -0
- {vaultctl-0.2.3 → vaultctl-0.2.4}/src/vaultctl/commands/__init__.py +0 -0
- {vaultctl-0.2.3 → vaultctl-0.2.4}/src/vaultctl/commands/backup_raft_snapshot.py +0 -0
- {vaultctl-0.2.3 → vaultctl-0.2.4}/src/vaultctl/commands/bootstrap.py +0 -0
- {vaultctl-0.2.3 → vaultctl-0.2.4}/src/vaultctl/commands/login.py +0 -0
- {vaultctl-0.2.3 → vaultctl-0.2.4}/src/vaultctl/commands/pki/__init__.py +0 -0
- {vaultctl-0.2.3 → vaultctl-0.2.4}/src/vaultctl/commands/pki/rotate_issuing.py +0 -0
- {vaultctl-0.2.3 → vaultctl-0.2.4}/src/vaultctl/commands/restore_raft_snapshot.py +0 -0
- {vaultctl-0.2.3 → vaultctl-0.2.4}/src/vaultctl/main.py +0 -0
- {vaultctl-0.2.3 → vaultctl-0.2.4}/src/vaultctl/options.py +0 -0
- {vaultctl-0.2.3 → vaultctl-0.2.4}/src/vaultctl/utils.py +0 -0
- {vaultctl-0.2.3 → 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,7 +45,7 @@ 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 }}
|
|
@@ -53,13 +53,13 @@ jobs:
|
|
|
53
53
|
private-key: ${{ secrets.BOT_APP_PRIVATE_KEY }}
|
|
54
54
|
|
|
55
55
|
- name: Checkout
|
|
56
|
-
uses: actions/checkout@
|
|
56
|
+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
57
57
|
with:
|
|
58
58
|
persist-credentials: false
|
|
59
59
|
token: ${{ steps.app-token.outputs.token }}
|
|
60
60
|
|
|
61
61
|
- name: Run Renovate
|
|
62
|
-
uses: renovatebot/github-action@
|
|
62
|
+
uses: renovatebot/github-action@6d859fc95779be83a0335ca704879b47e5d79641 # v46.1.16
|
|
63
63
|
env:
|
|
64
64
|
LOG_LEVEL: ${{ inputs.logLevel || 'debug' }}
|
|
65
65
|
RENOVATE_AUTODISCOVER: true
|
|
@@ -1,16 +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
11
|
Requires-Dist: cryptography==49.0.0
|
|
12
12
|
Requires-Dist: hvac==2.4
|
|
13
|
-
Requires-Dist: typer==0.26.
|
|
13
|
+
Requires-Dist: typer==0.26.8
|
|
14
14
|
Requires-Dist: validators==0.35.0
|
|
15
15
|
Description-Content-Type: text/markdown
|
|
16
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,11 +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
15
|
"cryptography==49.0.0",
|
|
16
|
-
"boto3==1.43.
|
|
16
|
+
"boto3==1.43.36",
|
|
17
17
|
"botocore[crt]",
|
|
18
18
|
]
|
|
19
19
|
|
|
@@ -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]
|
|
@@ -363,7 +363,7 @@ wheels = [
|
|
|
363
363
|
|
|
364
364
|
[[package]]
|
|
365
365
|
name = "typer"
|
|
366
|
-
version = "0.26.
|
|
366
|
+
version = "0.26.8"
|
|
367
367
|
source = { registry = "https://pypi.org/simple" }
|
|
368
368
|
dependencies = [
|
|
369
369
|
{ name = "annotated-doc" },
|
|
@@ -371,9 +371,9 @@ dependencies = [
|
|
|
371
371
|
{ name = "rich" },
|
|
372
372
|
{ name = "shellingham" },
|
|
373
373
|
]
|
|
374
|
-
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" }
|
|
375
375
|
wheels = [
|
|
376
|
-
{ 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" },
|
|
377
377
|
]
|
|
378
378
|
|
|
379
379
|
[[package]]
|
|
@@ -408,7 +408,7 @@ wheels = [
|
|
|
408
408
|
|
|
409
409
|
[[package]]
|
|
410
410
|
name = "vaultctl"
|
|
411
|
-
version = "0.2.
|
|
411
|
+
version = "0.2.3"
|
|
412
412
|
source = { editable = "." }
|
|
413
413
|
dependencies = [
|
|
414
414
|
{ name = "boto3" },
|
|
@@ -427,11 +427,11 @@ dev = [
|
|
|
427
427
|
|
|
428
428
|
[package.metadata]
|
|
429
429
|
requires-dist = [
|
|
430
|
-
{ name = "boto3", specifier = "==1.43.
|
|
430
|
+
{ name = "boto3", specifier = "==1.43.36" },
|
|
431
431
|
{ name = "botocore", extras = ["crt"] },
|
|
432
432
|
{ name = "cryptography", specifier = "==49.0.0" },
|
|
433
433
|
{ name = "hvac", specifier = "==2.4" },
|
|
434
|
-
{ name = "typer", specifier = "==0.26.
|
|
434
|
+
{ name = "typer", specifier = "==0.26.8" },
|
|
435
435
|
{ name = "validators", specifier = "==0.35.0" },
|
|
436
436
|
]
|
|
437
437
|
|
|
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
|
|
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
|