{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":160977659,"defaultBranch":"devel","name":"ansible","ownerLogin":"Andersson007","currentUserCanPush":false,"isFork":true,"isEmpty":false,"createdAt":"2018-12-08T20:53:06.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/34477873?v=4","public":true,"private":false,"isOrgOwned":false},"refInfo":{"name":"","listCacheKey":"v0:1700550136.0","currentOid":""},"activityList":{"items":[{"before":"e458cbac6137b010835bd5e78374545f9c7196c6","after":"b70248eb2207d53f371d6ef4bafebd1637fd1f82","ref":"refs/heads/devel","pushedAt":"2024-05-16T07:32:42.000Z","pushType":"push","commitsCount":163,"pusher":{"login":"Andersson007","name":"Andrew Klychkov","path":"/Andersson007","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/34477873?s=80&v=4"},"commit":{"message":"Warn if the binary is unavailable using get_bin_path (#83258)\n\nSigned-off-by: Abhijeet Kasurde ","shortMessageHtmlLink":"Warn if the binary is unavailable using get_bin_path (ansible#83258)"}},{"before":"55065c00428cf857d501b7183ed8be34841f8025","after":"e458cbac6137b010835bd5e78374545f9c7196c6","ref":"refs/heads/devel","pushedAt":"2024-01-31T07:36:43.000Z","pushType":"push","commitsCount":57,"pusher":{"login":"Andersson007","name":"Andrew Klychkov","path":"/Andersson007","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/34477873?s=80&v=4"},"commit":{"message":"Allow for arbitrary key 'context' in argument spec (#82183)\n\n* Allow for arbitrary key 'context' in argument spec","shortMessageHtmlLink":"Allow for arbitrary key 'context' in argument spec (ansible#82183)"}},{"before":"a9919dd7f62c9efe17b8acaebf7c627606ae9f66","after":"55065c00428cf857d501b7183ed8be34841f8025","ref":"refs/heads/devel","pushedAt":"2024-01-01T12:41:41.000Z","pushType":"push","commitsCount":7,"pusher":{"login":"Andersson007","name":"Andrew Klychkov","path":"/Andersson007","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/34477873?s=80&v=4"},"commit":{"message":"Role fixes (#82339)\n\n* Various fixes to roles\r\n\r\n - static property is now properly set\r\n - role_names and other magic vars now have full list\r\n - role public/private var loading is now done when adding to play.roles instead of on each var query\r\n - added tests\r\n\r\nCo-authored-by: Felix Fontein ","shortMessageHtmlLink":"Role fixes (ansible#82339)"}},{"before":"fbdb666411f0d2c833e2a74cbf35593b22abb69f","after":"a9919dd7f62c9efe17b8acaebf7c627606ae9f66","ref":"refs/heads/devel","pushedAt":"2023-12-10T12:05:04.000Z","pushType":"push","commitsCount":27,"pusher":{"login":"Andersson007","name":"Andrew Klychkov","path":"/Andersson007","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/34477873?s=80&v=4"},"commit":{"message":"lookups, make file searching use better is_role (#82290)\n\n* lookups, make file searching use better is_role\r\n\r\n The dwim function will internally try by detecting tasks/main['','.yml','.yaml]\r\n but this is far from optimial, the existince of role path in vars is much better\r\n indicator that we can use to pass a hint\r\n\r\n\r\n* updated test to avoid main.yml","shortMessageHtmlLink":"lookups, make file searching use better is_role (ansible#82290)"}},{"before":null,"after":"6707632e971a6f897c9ced470dca7a654f9d1ec5","ref":"refs/heads/update_readme","pushedAt":"2023-11-21T07:02:16.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"Andersson007","name":"Andrew Klychkov","path":"/Andersson007","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/34477873?s=80&v=4"},"commit":{"message":"README: update working groups link","shortMessageHtmlLink":"README: update working groups link"}},{"before":"47ab59753c2a91aef8823ccf4f4b7bc61d2efe03","after":"fbdb666411f0d2c833e2a74cbf35593b22abb69f","ref":"refs/heads/devel","pushedAt":"2023-11-21T06:52:51.000Z","pushType":"push","commitsCount":225,"pusher":{"login":"Andersson007","name":"Andrew Klychkov","path":"/Andersson007","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/34477873?s=80&v=4"},"commit":{"message":"ansible-test: Added Fedora 39 (#82218)\n\n* Fedora 39 remote\r\n* Fedora 39 container\r\n\r\nFixes: #82018\r\n\r\nSigned-off-by: Abhijeet Kasurde ","shortMessageHtmlLink":"ansible-test: Added Fedora 39 (ansible#82218)"}},{"before":"1ca03139ccf46745015fb0d4ce78ed00cf8d9115","after":"47ab59753c2a91aef8823ccf4f4b7bc61d2efe03","ref":"refs/heads/devel","pushedAt":"2023-08-11T11:18:14.000Z","pushType":"push","commitsCount":82,"pusher":{"login":"Andersson007","name":"Andrew Klychkov","path":"/Andersson007","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/34477873?s=80&v=4"},"commit":{"message":"Clean up release script (#81488)\n\n* Enable mypy for the entire packaging directory\r\n\r\n* Return CompletedProcess only when capturing output\r\n\r\nThis allows stdout/stderr on CompletedProcess to be `str` instead of `str | None`.\r\nThe unused args on CompletedProcess have been removed.\r\nOverload type hints have been added to reflect these changes.\r\n\r\n* Relax return type on ensure_venv\r\n\r\nThis improves consistency with its usage, since `run` accepts `env` of `dict[str, t.Any]`.\r\nAlso removed unnecssary `str()` usage when updating `env`.\r\n\r\n* Fix type hint on suppress_when\r\n\r\n* Fix callable annotation\r\n\r\n* Add type hint for command_parser\r\n\r\nPyCharm complains about using a protected member, and also that it can't find the type in the type stubs.\r\nHowever, mypy properly recognizes the type.\r\n\r\n* Avoid unnecessary TypeVar usage","shortMessageHtmlLink":"Clean up release script (ansible#81488)"}},{"before":"91177623581490af0455307f6c8e26312b04b4a0","after":"1ca03139ccf46745015fb0d4ce78ed00cf8d9115","ref":"refs/heads/devel","pushedAt":"2023-07-12T12:00:48.000Z","pushType":"push","commitsCount":60,"pusher":{"login":"Andersson007","name":"Andrew Klychkov","path":"/Andersson007","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/34477873?s=80&v=4"},"commit":{"message":"Update regex_* docs (#81016)\n\n* Update regex_* docs\r\n* Remove Python 3 regex link\r\n* Added references to inline regex flags\r\n\r\nSigned-off-by: Abhijeet Kasurde ","shortMessageHtmlLink":"Update regex_* docs (ansible#81016)"}},{"before":null,"after":"42235004048f07b971d31de9d7f8394fa42339ab","ref":"refs/heads/update_communication_guide","pushedAt":"2023-06-13T08:33:54.604Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"Andersson007","name":"Andrew Klychkov","path":"/Andersson007","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/34477873?s=80&v=4"},"commit":{"message":"Communication guide: move mailing lists to the bottom","shortMessageHtmlLink":"Communication guide: move mailing lists to the bottom"}},{"before":"652ddc407858cb5ee4b5a56fb87c271bf2fc873d","after":"91177623581490af0455307f6c8e26312b04b4a0","ref":"refs/heads/devel","pushedAt":"2023-06-13T08:31:47.941Z","pushType":"push","commitsCount":57,"pusher":{"login":"Andersson007","name":"Andrew Klychkov","path":"/Andersson007","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/34477873?s=80&v=4"},"commit":{"message":"define code owners to support branch-protection rules on docs (#81041)\n\n* during interim docs/ (and related dirs) split to separate repo, prevent merges that might require a rebase of the target repo","shortMessageHtmlLink":"define code owners to support branch-protection rules on docs (ansibl…"}},{"before":"cdeb607b1d01af4d8dd652bf7117a442fcd9b229","after":"652ddc407858cb5ee4b5a56fb87c271bf2fc873d","ref":"refs/heads/devel","pushedAt":"2023-05-23T06:50:08.707Z","pushType":"push","commitsCount":39,"pusher":{"login":"Andersson007","name":"Andrew Klychkov","path":"/Andersson007","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/34477873?s=80&v=4"},"commit":{"message":"Fix pylint disallowed-name errors (#80854)\n\nSigned-off-by: Abhijeet Kasurde ","shortMessageHtmlLink":"Fix pylint disallowed-name errors (ansible#80854)"}},{"before":"9026bc5d76a54d38d156e837f71178071eb60a64","after":"cdeb607b1d01af4d8dd652bf7117a442fcd9b229","ref":"refs/heads/devel","pushedAt":"2023-05-05T08:12:56.000Z","pushType":"push","commitsCount":75,"pusher":{"login":"Andersson007","name":"Andrew Klychkov","path":"/Andersson007","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/34477873?s=80&v=4"},"commit":{"message":"ansible-test - Always use unique container names (#80724)","shortMessageHtmlLink":"ansible-test - Always use unique container names (ansible#80724)"}},{"before":"5e131a96c086eda58436429a417c8e7cf256602b","after":"9026bc5d76a54d38d156e837f71178071eb60a64","ref":"refs/heads/devel","pushedAt":"2023-04-12T09:17:36.000Z","pushType":"push","commitsCount":37,"pusher":{"login":"Andersson007","name":"Andrew Klychkov","path":"/Andersson007","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/34477873?s=80&v=4"},"commit":{"message":"Remove obsolete pkg_resources usage (#80489)","shortMessageHtmlLink":"Remove obsolete pkg_resources usage (ansible#80489)"}},{"before":"f12baa472d56844f7787f62dd32956c548ed616b","after":"7ce4752224e3a29a7881bad64d1ceffd2de1ff92","ref":"refs/heads/shield","pushedAt":"2023-04-04T08:34:02.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"Andersson007","name":"Andrew Klychkov","path":"/Andersson007","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/34477873?s=80&v=4"},"commit":{"message":"Fix sanity","shortMessageHtmlLink":"Fix sanity"}},{"before":null,"after":"f12baa472d56844f7787f62dd32956c548ed616b","ref":"refs/heads/shield","pushedAt":"2023-04-04T08:22:26.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"Andersson007","name":"Andrew Klychkov","path":"/Andersson007","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/34477873?s=80&v=4"},"commit":{"message":"communication.rst: Add a hint about adding Matrix shields to READMEs","shortMessageHtmlLink":"communication.rst: Add a hint about adding Matrix shields to READMEs"}},{"before":"1491ec8019b064374145dace41b1320e04fb494b","after":"5e131a96c086eda58436429a417c8e7cf256602b","ref":"refs/heads/devel","pushedAt":"2023-04-04T08:12:07.000Z","pushType":"push","commitsCount":52,"pusher":{"login":"Andersson007","name":"Andrew Klychkov","path":"/Andersson007","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/34477873?s=80&v=4"},"commit":{"message":"bump devel to 2.16.0.dev0 (#80390)","shortMessageHtmlLink":"bump devel to 2.16.0.dev0 (ansible#80390)"}},{"before":"ecf66c6f821f81d9f868df1280b3fcfe2b26d1a3","after":"1491ec8019b064374145dace41b1320e04fb494b","ref":"refs/heads/devel","pushedAt":"2023-03-20T12:31:31.690Z","pushType":"push","commitsCount":75,"pusher":{"login":"Andersson007","name":"Andrew Klychkov","path":"/Andersson007","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/34477873?s=80&v=4"},"commit":{"message":"Update special_variables.rst (#80210)\n\nThe usage of a glossary on this page will allow linking to a specific special variable, like on the glossary page, e.g.: https://docs.ansible.com/ansible/latest/reference_appendices/glossary.html#term-Idempotency","shortMessageHtmlLink":"Update special_variables.rst (ansible#80210)"}}],"hasNextPage":false,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAES1HJ4wA","startCursor":null,"endCursor":null}},"title":"Activity · Andersson007/ansible"}