summaryrefslogtreecommitdiff
path: root/changelogs
diff options
context:
space:
mode:
authorSloane Hertel <19572925+s-hertel@users.noreply.github.com>2023-05-09 15:27:23 -0400
committerGitHub <noreply@github.com>2023-05-09 14:27:23 -0500
commit594f37dbb406cf56667382bfc91bca84779541d9 (patch)
treea8c2df9d766530873e5db3647dc651a0d6f883f6 /changelogs
parent4008335f41d0645a544a6fd9031a1f2a19b6f82a (diff)
downloadansible-594f37dbb406cf56667382bfc91bca84779541d9.tar.gz
[ansible-galaxy] Fix installing signed collections (#80661) (#80666)
* Fix installing signed collections by using the fqcn, version, source, and type as a unique identifier. Define __hash__ and __eq__ methods to handle Candidate/Requirement comparison excluding signatures which aren't fully populated until install time. * Remove PinnedCandidateRequests since it is redundant now. * Fix verifying against a signed remote when the keyring isn't configured (cherry picked from commit d5e2e7a0a8ca9017a091922648430374539f878b)
Diffstat (limited to 'changelogs')
-rw-r--r--changelogs/fragments/80648-fix-ansible-galaxy-cache-signatures-bug.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/changelogs/fragments/80648-fix-ansible-galaxy-cache-signatures-bug.yml b/changelogs/fragments/80648-fix-ansible-galaxy-cache-signatures-bug.yml
new file mode 100644
index 0000000000..eda4eb62f9
--- /dev/null
+++ b/changelogs/fragments/80648-fix-ansible-galaxy-cache-signatures-bug.yml
@@ -0,0 +1,3 @@
+bugfixes:
+ - ansible-galaxy - fix installing signed collections (https://github.com/ansible/ansible/issues/80648).
+ - ansible-galaxy collection verify - fix verifying signed collections when the keyring is not configured.