mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
d0b07885f0
* pkgng: Add support for upgrading all installed packages Adds support for ``name: "*", state: latest`` to upgrade all installed packages, similar to other package providers. Co-authored-by: Felix Fontein <felix@fontein.de> * pkgng: Improve wording for warning in example, fix formatting * pkgng.py: Fix capitalization Co-authored-by: Felix Fontein <felix@fontein.de> Co-authored-by: Davíð Steinn Geirsson <david@isnic.is> Co-authored-by: Felix Fontein <felix@fontein.de>
6 lines
788 B
YAML
6 lines
788 B
YAML
---
|
|
minor_changes:
|
|
- "pkgng - added support for upgrading all packages using ``name: *, state: latest``, similar to other package providers (https://github.com/ansible-collections/community.general/pull/569)."
|
|
breaking_changes:
|
|
- "pkgng - passing ``name: *`` with ``state: latest`` or ``state: present`` will no longer install every package from the configured package repositories. Instead, ``name: *, state: latest`` will upgrade all already-installed packages, and ``name: *, state: present`` is a noop. (https://github.com/ansible-collections/community.general/pull/569)."
|
|
- "pkgng - passing ``name: *`` with ``state: absent`` will no longer remove every installed package from the system. It is now a noop. (https://github.com/ansible-collections/community.general/pull/569)."
|