From 93cd49adba057e8dc33fc2128ecb085651c7f9ef Mon Sep 17 00:00:00 2001 From: Pavel Bar Date: Thu, 27 Nov 2025 03:09:18 +0200 Subject: [PATCH] Add changelog fragment for deprecated imports fix Added changelog entry documenting the bugfixes for synchronize and mount modules' deprecated import issues. Related to #686 Co-authored-by: Cursor AI Signed-off-by: Pavel Bar --- changelogs/fragments/686_fix_deprecated_imports.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 changelogs/fragments/686_fix_deprecated_imports.yml diff --git a/changelogs/fragments/686_fix_deprecated_imports.yml b/changelogs/fragments/686_fix_deprecated_imports.yml new file mode 100644 index 0000000..9e11c20 --- /dev/null +++ b/changelogs/fragments/686_fix_deprecated_imports.yml @@ -0,0 +1,8 @@ +--- +minor_changes: + - plugins/action/synchronize.py - fix deprecated ``ansible.module_utils._text`` and ``ansible.module_utils.common._collections_compat`` imports (https://github.com/ansible-collections/ansible.posix/issues/686). + - plugins/action/synchronize.py - fix deprecated ``ansible.module_utils.six`` imports for CI compliance. + - plugins/modules/synchronize.py - fix deprecated ``ansible.module_utils._text`` import (https://github.com/ansible-collections/ansible.posix/issues/686). + - plugins/modules/synchronize.py - fix deprecated ``ansible.module_utils.six`` imports for CI compliance. + - mount - fix deprecated ``ansible.module_utils._text`` import (https://github.com/ansible-collections/ansible.posix/issues/686). + - mount - fix deprecated ``ansible.module_utils.six`` imports for CI compliance.