vaultctl 0.2.4__tar.gz → 0.2.5__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.4 → vaultctl-0.2.5}/.github/workflows/docker-publish.yaml +5 -5
- {vaultctl-0.2.4 → vaultctl-0.2.5}/.github/workflows/release.yaml +1 -1
- {vaultctl-0.2.4 → vaultctl-0.2.5}/.github/workflows/renovate.yaml +1 -1
- {vaultctl-0.2.4 → vaultctl-0.2.5}/Dockerfile +1 -1
- {vaultctl-0.2.4 → vaultctl-0.2.5}/PKG-INFO +2 -2
- {vaultctl-0.2.4 → vaultctl-0.2.5}/pyproject.toml +2 -2
- {vaultctl-0.2.4 → vaultctl-0.2.5}/uv.lock +8 -8
- {vaultctl-0.2.4 → vaultctl-0.2.5}/.devcontainer/devcontainer-lock.json +0 -0
- {vaultctl-0.2.4 → vaultctl-0.2.5}/.devcontainer/devcontainer.json +0 -0
- {vaultctl-0.2.4 → vaultctl-0.2.5}/.gitignore +0 -0
- {vaultctl-0.2.4 → vaultctl-0.2.5}/.renovaterc.json5 +0 -0
- {vaultctl-0.2.4 → vaultctl-0.2.5}/LICENSE +0 -0
- {vaultctl-0.2.4 → vaultctl-0.2.5}/README.md +0 -0
- {vaultctl-0.2.4 → vaultctl-0.2.5}/src/vaultctl/__init__.py +0 -0
- {vaultctl-0.2.4 → vaultctl-0.2.5}/src/vaultctl/commands/__init__.py +0 -0
- {vaultctl-0.2.4 → vaultctl-0.2.5}/src/vaultctl/commands/backup_raft_snapshot.py +0 -0
- {vaultctl-0.2.4 → vaultctl-0.2.5}/src/vaultctl/commands/bootstrap.py +0 -0
- {vaultctl-0.2.4 → vaultctl-0.2.5}/src/vaultctl/commands/login.py +0 -0
- {vaultctl-0.2.4 → vaultctl-0.2.5}/src/vaultctl/commands/pki/__init__.py +0 -0
- {vaultctl-0.2.4 → vaultctl-0.2.5}/src/vaultctl/commands/pki/rotate_issuing.py +0 -0
- {vaultctl-0.2.4 → vaultctl-0.2.5}/src/vaultctl/commands/restore_raft_snapshot.py +0 -0
- {vaultctl-0.2.4 → vaultctl-0.2.5}/src/vaultctl/main.py +0 -0
- {vaultctl-0.2.4 → vaultctl-0.2.5}/src/vaultctl/options.py +0 -0
- {vaultctl-0.2.4 → vaultctl-0.2.5}/src/vaultctl/utils.py +0 -0
- {vaultctl-0.2.4 → vaultctl-0.2.5}/src/vaultctl/version.py +0 -0
|
@@ -37,16 +37,16 @@ jobs:
|
|
|
37
37
|
shell: bash
|
|
38
38
|
|
|
39
39
|
- name: Set up QEMU
|
|
40
|
-
uses: docker/setup-qemu-action@
|
|
40
|
+
uses: docker/setup-qemu-action@96fe6ef7f33517b61c61be40b68a1882f3264fb8 # v4.2.0
|
|
41
41
|
|
|
42
42
|
- name: Set up Docker Buildx
|
|
43
|
-
uses: docker/setup-buildx-action@
|
|
43
|
+
uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4.2.0
|
|
44
44
|
|
|
45
45
|
- name: Set up Cosign
|
|
46
46
|
uses: sigstore/cosign-installer@6f9f17788090df1f26f669e9d70d6ae9567deba6 # v4.1.2
|
|
47
47
|
|
|
48
48
|
- name: Log in to GitHub Container Registry
|
|
49
|
-
uses: docker/login-action@
|
|
49
|
+
uses: docker/login-action@af1e73f918a031802d376d3c8bbc3fe56130a9b0 # v4.4.0
|
|
50
50
|
with:
|
|
51
51
|
registry: ghcr.io
|
|
52
52
|
username: ${{ github.actor }}
|
|
@@ -54,7 +54,7 @@ jobs:
|
|
|
54
54
|
|
|
55
55
|
- name: Build and Push Docker Image
|
|
56
56
|
id: build-and-push
|
|
57
|
-
uses: docker/build-push-action@
|
|
57
|
+
uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a # v7.3.0
|
|
58
58
|
with:
|
|
59
59
|
context: .
|
|
60
60
|
file: ./Dockerfile
|
|
@@ -77,7 +77,7 @@ jobs:
|
|
|
77
77
|
${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ steps.meta.outputs.name }}@${{ steps.build-and-push.outputs.digest }}
|
|
78
78
|
|
|
79
79
|
- name: Attest build provenance
|
|
80
|
-
uses: actions/attest-build-provenance@
|
|
80
|
+
uses: actions/attest-build-provenance@0f67c3f4856b2e3261c31976d6725780e5e4c373 # v4.1.1
|
|
81
81
|
with:
|
|
82
82
|
subject-name: ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ steps.meta.outputs.name }}
|
|
83
83
|
subject-digest: ${{ steps.build-and-push.outputs.digest }}
|
|
@@ -21,7 +21,7 @@ jobs:
|
|
|
21
21
|
python-version: "3.14"
|
|
22
22
|
|
|
23
23
|
- name: Install uv
|
|
24
|
-
uses: astral-sh/setup-uv@
|
|
24
|
+
uses: astral-sh/setup-uv@f98e06938123ccabd21905ea5d0069192241f9f1 # v8.3.1
|
|
25
25
|
|
|
26
26
|
- name: Get project name and version from pyproject.toml
|
|
27
27
|
id: meta
|
|
@@ -59,7 +59,7 @@ jobs:
|
|
|
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@b50d2ba2bd928235abdcc14d06dfafc217f1c565 # v46.1.18
|
|
63
63
|
env:
|
|
64
64
|
LOG_LEVEL: ${{ inputs.logLevel || 'debug' }}
|
|
65
65
|
RENOVATE_AUTODISCOVER: true
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: vaultctl
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.5
|
|
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.42
|
|
10
10
|
Requires-Dist: botocore[crt]
|
|
11
11
|
Requires-Dist: cryptography==49.0.0
|
|
12
12
|
Requires-Dist: hvac==2.4
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "vaultctl"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.5"
|
|
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" }
|
|
@@ -13,7 +13,7 @@ dependencies = [
|
|
|
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.42",
|
|
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.42"
|
|
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/21/1e/4b6b2bd7ad9173e72fd5aef5ec1187847e06ff5497b66c2051b387827d56/boto3-1.43.42.tar.gz", hash = "sha256:f5a7fa503fd902dbd305d52a4571971149acb2c19f02508188f283e244e121e4", size = 112671, upload-time = "2026-07-07T19:35:53.709Z" }
|
|
51
51
|
wheels = [
|
|
52
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
52
|
+
{ url = "https://files.pythonhosted.org/packages/85/53/ccb197ae4659300370b2538fa8a73bde1dcb4118319f0e9a865a975ea2a7/boto3-1.43.42-py3-none-any.whl", hash = "sha256:c34a36c9181998dd9b663095b0b0f5f5bc97f3b6846d6a63b31529462091047a", size = 140032, upload-time = "2026-07-07T19:35:51.513Z" },
|
|
53
53
|
]
|
|
54
54
|
|
|
55
55
|
[[package]]
|
|
56
56
|
name = "botocore"
|
|
57
|
-
version = "1.43.
|
|
57
|
+
version = "1.43.42"
|
|
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/54/de/c264abcfb6b371d05c7c1ffbd10d666bf517b6a259390d3e49c921f2a1c5/botocore-1.43.42.tar.gz", hash = "sha256:d813d5d5707db5f1c73b5d65f6b172c49f38375b23b30c593966fef56f8b5e40", size = 15680498, upload-time = "2026-07-07T19:35:41.747Z" }
|
|
65
65
|
wheels = [
|
|
66
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
66
|
+
{ url = "https://files.pythonhosted.org/packages/b2/c5/ca819ae7489a233b03241d20458518b0de150bddc6b87c20192de3eaff7e/botocore-1.43.42-py3-none-any.whl", hash = "sha256:62aa017eb5bb9791b1bc655571fa1548611e508f35e13e636d3939e1be3745f0", size = 15367131, upload-time = "2026-07-07T19:35:36.881Z" },
|
|
67
67
|
]
|
|
68
68
|
|
|
69
69
|
[package.optional-dependencies]
|
|
@@ -408,7 +408,7 @@ wheels = [
|
|
|
408
408
|
|
|
409
409
|
[[package]]
|
|
410
410
|
name = "vaultctl"
|
|
411
|
-
version = "0.2.
|
|
411
|
+
version = "0.2.4"
|
|
412
412
|
source = { editable = "." }
|
|
413
413
|
dependencies = [
|
|
414
414
|
{ name = "boto3" },
|
|
@@ -427,7 +427,7 @@ dev = [
|
|
|
427
427
|
|
|
428
428
|
[package.metadata]
|
|
429
429
|
requires-dist = [
|
|
430
|
-
{ name = "boto3", specifier = "==1.43.
|
|
430
|
+
{ name = "boto3", specifier = "==1.43.42" },
|
|
431
431
|
{ name = "botocore", extras = ["crt"] },
|
|
432
432
|
{ name = "cryptography", specifier = "==49.0.0" },
|
|
433
433
|
{ name = "hvac", specifier = "==2.4" },
|
|
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
|