Merged
Conversation
Raise minimum Python to 3.9, fix keeper_create on empty shared folders, and fix Tower Execution Environment missing system packages. Bug fixes: - KSM-816: fix keeper_create failing when target shared folder is empty - KSM-827: fix Tower EE Docker image missing system packages (openssh-clients, sshpass, rsync, git, krb5-workstation) Maintenance: - KSM-811: raise python_requires 3.7 → 3.9, drop importlib_metadata backport, bump core/helper deps to >=17.2.0/>=1.1.0
c6c122d to
fe31a09
Compare
maksimu
approved these changes
Mar 17, 2026
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.
Summary
Release branch for v1.4.0 — bug fixes for
keeper_createon empty shared folders, missing system packages in the Tower Execution Environment Docker image, and Python 3.9 minimum with updated SDK dependencies.Changes
Bug Fixes
keeper_createfailed when the target shared folder contained no records. The plugin now uses theget_foldersendpoint to resolve the folder encryption key, which returns all folders regardless of record count. Previouslyget_secretswas used, which only returns folder keys bundled alongside records.keeper-secrets-manager-tower-eeDocker image was missingopenssh-clients,sshpass,rsync, andgit— packages present in the previousansible-runnerbase that are absent fromredhat/ubi9. This caused AAP to fail with[dumb-init] ssh agent: No such file or directoryat container startup. Added all four packages toadditional_build_packagesinexecution-environment.yml. Added regression test to prevent recurrence.Maintenance
keeper-secrets-manager-core >= 17.2.0keeper-secrets-manager-coreto>=17.2.0andkeeper-secrets-manager-helperto>=1.1.0shared_folder_uiddocs inkeeper_createto note it must be a top-level shared folder UID, not a subfolder UIDBreaking Changes
None.
Related Issues