KS> This pull request: KS> https://github.com/ansible/ansible-modules-core/pull/2673 supposedly KS> adds MySQL 5.7 support on mysql_user. The last note says it's been KS> merged into the 2.0 stable and the devel branch, but it's not clear to KS> me if it means it's in the 2.0 release or the upcoming 2.1 release. KS> How can I see which pull requests have gone into which release?
Here's how I do it. That PR says abadger merged commit e6b7b17 into ansible:devel on Dec 14, 2015 so that's the commit we're looking for. I get an clone of the Ansible software and modules: cd ~/somewhere git clone https://github.com/ansible/ansible cd ansible git submodule update --init --recursive Now find this commit in whichever repo it's actually in -- ansible-modules-core in this case -- and see what branches it's in: +$ cd lib/ansible/modules/core +$ git branch -a --contains e6b7b17 * (HEAD detached at bb9572c) devel remotes/origin/HEAD -> origin/devel remotes/origin/devel remotes/origin/revert-3124-elb_proxy_protocol remotes/origin/revert-3488-azure_rm_virtualmachine remotes/origin/stable-2.1 So, looks like it's in stable-2.1. (You could also just clone ansible-modules-core and do the same thing, but I happened to already have an up-to-date clone of the main 'ansible' repo lying around, with submodules in place, so.) -Josh ([email protected]) (apologies for the automatic corporate disclaimer that follows) This email is intended for the person(s) to whom it is addressed and may contain information that is PRIVILEGED or CONFIDENTIAL. Any unauthorized use, distribution, copying, or disclosure by any person other than the addressee(s) is strictly prohibited. If you have received this email in error, please notify the sender immediately by return email and delete the message and any attachments from your system. -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/22312.49172.602330.401468%40gargle.gargle.HOWL. For more options, visit https://groups.google.com/d/optout.
