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.
Files changed (25) hide show
  1. {vaultctl-0.2.4 → vaultctl-0.2.5}/.github/workflows/docker-publish.yaml +5 -5
  2. {vaultctl-0.2.4 → vaultctl-0.2.5}/.github/workflows/release.yaml +1 -1
  3. {vaultctl-0.2.4 → vaultctl-0.2.5}/.github/workflows/renovate.yaml +1 -1
  4. {vaultctl-0.2.4 → vaultctl-0.2.5}/Dockerfile +1 -1
  5. {vaultctl-0.2.4 → vaultctl-0.2.5}/PKG-INFO +2 -2
  6. {vaultctl-0.2.4 → vaultctl-0.2.5}/pyproject.toml +2 -2
  7. {vaultctl-0.2.4 → vaultctl-0.2.5}/uv.lock +8 -8
  8. {vaultctl-0.2.4 → vaultctl-0.2.5}/.devcontainer/devcontainer-lock.json +0 -0
  9. {vaultctl-0.2.4 → vaultctl-0.2.5}/.devcontainer/devcontainer.json +0 -0
  10. {vaultctl-0.2.4 → vaultctl-0.2.5}/.gitignore +0 -0
  11. {vaultctl-0.2.4 → vaultctl-0.2.5}/.renovaterc.json5 +0 -0
  12. {vaultctl-0.2.4 → vaultctl-0.2.5}/LICENSE +0 -0
  13. {vaultctl-0.2.4 → vaultctl-0.2.5}/README.md +0 -0
  14. {vaultctl-0.2.4 → vaultctl-0.2.5}/src/vaultctl/__init__.py +0 -0
  15. {vaultctl-0.2.4 → vaultctl-0.2.5}/src/vaultctl/commands/__init__.py +0 -0
  16. {vaultctl-0.2.4 → vaultctl-0.2.5}/src/vaultctl/commands/backup_raft_snapshot.py +0 -0
  17. {vaultctl-0.2.4 → vaultctl-0.2.5}/src/vaultctl/commands/bootstrap.py +0 -0
  18. {vaultctl-0.2.4 → vaultctl-0.2.5}/src/vaultctl/commands/login.py +0 -0
  19. {vaultctl-0.2.4 → vaultctl-0.2.5}/src/vaultctl/commands/pki/__init__.py +0 -0
  20. {vaultctl-0.2.4 → vaultctl-0.2.5}/src/vaultctl/commands/pki/rotate_issuing.py +0 -0
  21. {vaultctl-0.2.4 → vaultctl-0.2.5}/src/vaultctl/commands/restore_raft_snapshot.py +0 -0
  22. {vaultctl-0.2.4 → vaultctl-0.2.5}/src/vaultctl/main.py +0 -0
  23. {vaultctl-0.2.4 → vaultctl-0.2.5}/src/vaultctl/options.py +0 -0
  24. {vaultctl-0.2.4 → vaultctl-0.2.5}/src/vaultctl/utils.py +0 -0
  25. {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@06116385d9baf250c9f4dcb4858b16962ea869c3 # v4.1.0
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@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4.1.0
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@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0
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@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7.2.0
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@a2bbfa25375fe432b6a289bc6b6cd05ecd0c4c32 # v4.1.0
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@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0
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@6d859fc95779be83a0335ca704879b47e5d79641 # v46.1.16
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,4 +1,4 @@
1
- FROM python:3.14-slim@sha256:63a4c7f612a00f92042cbdcc7cdc6a306f38485af0a200b9c89de7d9b1607d15
1
+ FROM python:3.14-slim@sha256:b877e50bd90de10af8d82c57a022fc2e0dc731c5320d762a27986facfc3355c1
2
2
 
3
3
  ARG PYPI_VERSION
4
4
 
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vaultctl
3
- Version: 0.2.4
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.36
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.4"
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.36",
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.36"
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/ff/9f/897287e955db0f50b12fd69ef45956e4fd2c7ddb48c736872f7ea2314443/boto3-1.43.36.tar.gz", hash = "sha256:587d7ee92a12e440ad12b0e7f11f3358f0c4d65b19f64726efc94aaf194aff28", size = 112690, upload-time = "2026-06-23T02:47:14.561Z" }
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/9f/f1/274303f52483ecf199eae6f8d9b6f5951670397ee4d72c06cfd4eb644612/boto3-1.43.36-py3-none-any.whl", hash = "sha256:42942dde254673abcbc9e6e60017c88341a4f49d99d24e1f2e290fb38138c26f", size = 140031, upload-time = "2026-06-23T02:47:13.178Z" },
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.36"
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/7c/37/da9e7f6ca73ac73afd7f0bb7f238aa5daba35c081e98d7f48a7c399599c0/botocore-1.43.36.tar.gz", hash = "sha256:4cae47d1b2d426316b85a0087d9e69e048f13bc003b5177d74639fe9dfd28205", size = 15625488, upload-time = "2026-06-23T02:47:03.192Z" }
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/5c/19/934f81592527a3f7f9b943c893e334c721a4644948642bc33885d584e9ec/botocore-1.43.36-py3-none-any.whl", hash = "sha256:3c65fdc39ed01d8dfde1e961b34038aed03c459f8ddf80717a12ac006475e49d", size = 15313630, upload-time = "2026-06-23T02:46:59.327Z" },
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.3"
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.36" },
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