misc: updated kmip version to v0.3.14#46
Merged
sheensantoscapadngan merged 1 commit intomainfrom Oct 28, 2025
Merged
Conversation
Contributor
There was a problem hiding this comment.
Greptile Overview
Greptile Summary
Minor patch update of the infisical-kmip dependency from v0.3.13 to v0.3.14. This is a straightforward dependency version bump with no code changes to the CLI.
Key points:
- Single dependency update in
go.mod(line 19) - Corresponding checksum updates in
go.sum - No breaking changes to the KMIP server interface
- The KMIP functionality in
packages/cmd/kmip.goremains unchanged
Confidence Score: 5/5
- This PR is safe to merge with minimal risk - it's a straightforward patch version dependency update
- Score reflects the simplicity and safety of a minor patch dependency update with no code changes, no breaking changes, and standard go.sum checksum updates
- No files require special attention
Important Files Changed
File Analysis
| Filename | Score | Overview |
|---|---|---|
| go.mod | 5/5 | Minor version bump of infisical-kmip from v0.3.13 to v0.3.14 - clean dependency update with no other changes |
| go.sum | 5/5 | Updated checksums for infisical-kmip v0.3.14 - standard go.sum update corresponding to go.mod change |
Sequence Diagram
sequenceDiagram
participant User
participant CLI as Infisical CLI
participant KMIP as infisical-kmip v0.3.14
participant API as Infisical API
User->>CLI: infisical kmip start
CLI->>CLI: Parse flags (listen-address, identity-auth-method, etc)
CLI->>CLI: Validate auth method (universal-auth)
CLI->>KMIP: StartServer(ServerConfig)
Note over KMIP: v0.3.13 → v0.3.14
KMIP->>API: Authenticate with client ID/secret
API-->>KMIP: Auth token
KMIP->>KMIP: Generate server certificate
KMIP->>KMIP: Start listening on localhost:5696
KMIP-->>User: KMIP server ready
2 files reviewed, no comments
varonix0
approved these changes
Oct 28, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description 📣
This PR updates KMIP version
Type ✨
Tests 🛠️
# Here's some code block to paste some code snippets