Revert "Update changelog/versionadded for 3005 and add note for raspberry pi packages"

This reverts commit 6f444ab929.
This commit is contained in:
Caleb Beard 2022-07-20 14:57:57 -04:00 committed by Megan Wilhite
parent 6f444ab929
commit 6ddad5a10c
9 changed files with 20 additions and 31 deletions

View file

@ -241,8 +241,6 @@ Fixed
- Fixes issue in postgresql privileges detection: privileges on views were never retrieved and always recreated. (#57690)
- Fix service.enabled error for unavailable service in test mode (#62258)
- Fix variable reuse causing requisite_in problems (#62264)
- Adding -G option to pkgdd cmd_prefix list when current_zone_only is True. (#62206)
- Don't expect ``lsof`` to be installed when trying check which minions are connected. (#62303)
Added
@ -294,14 +292,6 @@ Added
Added compatibility with Zabbix 4.0+ for `zabbix.user_getmedia` method
Added support for setting medias in `zabbix.user_update` for Zabbix 3.4+ (#62012)
- Add ignore_missing parameter to file.comment state (#62044)
- General improvements on the "ansiblegate" module:
* Add "ansible.targets" method to gather Ansible inventory
* Add "ansible.discover_playbooks" method to help collecting playbooks
* Fix crash when running Ansible playbooks if ansible-playbook CLI output is not the expected JSON.
* Fix issues when processing inventory and there are groups with no members.
* Allow new types of targets for Ansible roster (#60056)
- Add sample and shuffle functions from random (#62225)
Salt 3004.2 (2022-05-12)
========================

6
changelog/60056.added Normal file
View file

@ -0,0 +1,6 @@
General improvements on the "ansiblegate" module:
* Add "ansible.targets" method to gather Ansible inventory
* Add "ansible.discover_playbooks" method to help collecting playbooks
* Fix crash when running Ansible playbooks if ansible-playbook CLI output is not the expected JSON.
* Fix issues when processing inventory and there are groups with no members.
* Allow new types of targets for Ansible roster

1
changelog/62206.fixed Normal file
View file

@ -0,0 +1 @@
Adding -G option to pkgdd cmd_prefix list when current_zone_only is True.

1
changelog/62225.added Normal file
View file

@ -0,0 +1 @@
Add sample and shuffle functions from random

1
changelog/62303.fixed Normal file
View file

@ -0,0 +1 @@
Don't expect ``lsof`` to be installed when trying check which minions are connected.

View file

@ -19,13 +19,6 @@ OS Support End of Life
Debian and Raspbian 9 are now EOL, therefore we will no longer be building
packages for these platforms.
Raspberry Pi
------------
We will no longer build the Raspberry Pi packages after the 3005 release but will
provide open sources project links in an updated announcement later. Please see the
announcement for more details:
https://saltproject.io/salt-project-announces-the-open-sourcing-of-several-saltstack-native-minions/
New packages available
----------------------
@ -103,7 +96,7 @@ Repo paths
+----------+-----------------------------------------------+-----------------------------------------+
| Debian | https://repo.saltproject.io/salt/py3/debian/ | https://repo.saltproject.io/py3/debian/ |
+----------+-----------------------------------------------+-----------------------------------------+
| Raspbian | Not available | https://repo.saltproject.io/py3/debian/ |
| Raspbian | https://repo.saltproject.io/salt/py3/debian/ | https://repo.saltproject.io/py3/debian/ |
+----------+-----------------------------------------------+-----------------------------------------+
| Fedora | Hosted on Fedora Repos | Hosted on Fedora Repos |
+----------+-----------------------------------------------+-----------------------------------------+
@ -372,8 +365,6 @@ Fixed
- Fixes issue in postgresql privileges detection: privileges on views were never retrieved and always recreated. (#57690)
- Fix service.enabled error for unavailable service in test mode (#62258)
- Fix variable reuse causing requisite_in problems (#62264)
- Adding -G option to pkgdd cmd_prefix list when current_zone_only is True. (#62206)
- Don't expect ``lsof`` to be installed when trying check which minions are connected. (#62303)
Added
@ -425,10 +416,3 @@ Added
Added compatibility with Zabbix 4.0+ for `zabbix.user_getmedia` method
Added support for setting medias in `zabbix.user_update` for Zabbix 3.4+ (#62012)
- Add ignore_missing parameter to file.comment state (#62044)
- General improvements on the "ansiblegate" module:
* Add "ansible.targets" method to gather Ansible inventory
* Add "ansible.discover_playbooks" method to help collecting playbooks
* Fix crash when running Ansible playbooks if ansible-playbook CLI output is not the expected JSON.
* Fix issues when processing inventory and there are groups with no members.
* Allow new types of targets for Ansible roster (#60056)
- Add sample and shuffle functions from random (#62225)

View file

@ -55,6 +55,10 @@ Platform package support
+--------------+---------------------+---------------------+
| Debian 11 | yes | yes |
+--------------+---------------------+---------------------+
| Raspbian 10 | no | no |
+--------------+---------------------+---------------------+
| Raspbian 11 | no | yes |
+--------------+---------------------+---------------------+
| Fedora 35 | yes | yes |
+--------------+---------------------+---------------------+
| Fedora 36 | yes | yes |
@ -77,6 +81,8 @@ Repo paths
+----------+-----------------------------------------------+-----------------------------------------+
| Debian | https://repo.saltproject.io/salt/py3/debian/ | https://repo.saltproject.io/py3/debian/ |
+----------+-----------------------------------------------+-----------------------------------------+
| Raspbian | https://repo.saltproject.io/salt/py3/debian/ | https://repo.saltproject.io/py3/debian/ |
+----------+-----------------------------------------------+-----------------------------------------+
| Fedora | Hosted on Fedora Repos | Hosted on Fedora Repos |
+----------+-----------------------------------------------+-----------------------------------------+
| MacOS | https://repo.saltproject.io/salt/py3/osx/ | https://repo.saltproject.io/osx/ |

View file

@ -403,7 +403,7 @@ def playbooks(
def targets(inventory="/etc/ansible/hosts", yaml=False, export=False):
"""
.. versionadded:: 3005
.. versionadded:: 3006
Return the inventory from an Ansible inventory_file
@ -435,7 +435,7 @@ def discover_playbooks(
syntax_check=False,
):
"""
.. versionadded:: 3005
.. versionadded:: 3006
Discover Ansible playbooks stored under the given path or from multiple paths (locations)

View file

@ -286,7 +286,7 @@ def sample(value, size, seed=None):
Return a given sample size from a list. By default, the random number
generator uses the current system time unless given a seed value.
.. versionadded:: 3005
.. versionadded:: 3006.0
value
A list to e used as input.
@ -316,7 +316,7 @@ def shuffle(value, seed=None):
Return a shuffled copy of an input list. By default, the random number
generator uses the current system time unless given a seed value.
.. versionadded:: 3005
.. versionadded:: 3006.0
value
A list to be used as input.