[stable-2] Backport from main to stable-2 (#287)

* Update CONTRIBUTORS file (#278)

(cherry picked from commit cbdf51234a)

* Honor the set_default_role_all parameter (#282)

The set_default_role_all parameter is documented, but does nothing. This PR fixes this.

(cherry picked from commit f547b66d35)

* Add a changelog fragment to PR 282 (#283)

(cherry picked from commit 952e1666d8)

Co-authored-by: Benoit Garret <benoit.garret_github@gadz.org>
This commit is contained in:
Andrew Klychkov 2022-02-16 13:11:55 +03:00 committed by GitHub
parent 9d9ea46603
commit 8b2c418538
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 1 deletions

View file

@ -36,6 +36,7 @@ Berbe
bjne bjne
bmalynovytch bmalynovytch
bmildren bmildren
bmillemathias
boreal321 boreal321
brutus brutus
burner1024 burner1024
@ -60,6 +61,7 @@ Davidffry
denisemauldin denisemauldin
diclophis diclophis
d-lee d-lee
d-rupp
dmp1ce dmp1ce
dnelson dnelson
dramaley dramaley
@ -100,6 +102,7 @@ hyperfocus1338
igormukhingmailcom igormukhingmailcom
imjoseangel imjoseangel
infigoKriti infigoKriti
int32bit
ipergenitsa ipergenitsa
iredmail iredmail
ivandigiusto ivandigiusto
@ -109,6 +112,7 @@ jamescassell
janosmiko janosmiko
jarnold-timeout jarnold-timeout
JaSafieddine JaSafieddine
jb-2197
jborean93 jborean93
jctanner jctanner
jean-christophe-manciot jean-christophe-manciot
@ -136,10 +140,12 @@ kalaisubbiah
kenichi-ogawa-1988 kenichi-ogawa-1988
kkeane kkeane
klingac klingac
koleo
kotso kotso
kuntalFreshBooks kuntalFreshBooks
kurtdavis kurtdavis
larsks larsks
laurent-indermuehle
ldesgrange ldesgrange
leeadh leeadh
LeonB LeonB
@ -218,6 +224,7 @@ robpblake
rokka-n rokka-n
Roxyrob Roxyrob
roysmith roysmith
rsicart
rthouvenin rthouvenin
ruudk ruudk
samccann samccann
@ -242,6 +249,7 @@ stoned
strixBE strixBE
SWADESNA SWADESNA
tapologo tapologo
tarunm97
tejatsk14 tejatsk14
tersmitten tersmitten
the the
@ -252,6 +260,7 @@ timorunge
Tomasthanes Tomasthanes
tomdymond tomdymond
Tronde Tronde
tuhoanganh
tvlooy tvlooy
tyll tyll
UncertaintyP UncertaintyP

View file

@ -0,0 +1,2 @@
bugfixes:
- mysql_role - make the ``set_default_role_all`` parameter actually working (https://github.com/ansible-collections/community.mysql/pull/282).

View file

@ -770,6 +770,7 @@ class Role():
self.cursor.execute(*self.q_builder.role_grant(user)) self.cursor.execute(*self.q_builder.role_grant(user))
if set_default_role_all:
self.role_impl.set_default_role_all(user) self.role_impl.set_default_role_all(user)
changed = True changed = True