mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Update changelog and release notes for 3005
This commit is contained in:
parent
6ff7116195
commit
39322eb354
9 changed files with 30 additions and 19 deletions
|
@ -7,7 +7,7 @@ Versions are `MAJOR.PATCH`.
|
|||
|
||||
# Changelog
|
||||
|
||||
Salt 3005 (2022-06-30)
|
||||
Salt 3005 (2022-08-17)
|
||||
======================
|
||||
|
||||
Removed
|
||||
|
@ -48,6 +48,7 @@ Deprecated
|
|||
- Deprecate all Azure cloud modules (#62183)
|
||||
- Deprecated ``defaults`` and ``preserve_context`` for ``salt.utils.functools.namespaced_function``.
|
||||
Additionally, the behavior when ``preserve_namespace=True`` was passed is now the default in order not to require duplicating imports on the modules that are namespacing functions. (#62272)
|
||||
- Deprecated the cassandra module in favor of the cassandra_cql module/returner. (#62327)
|
||||
|
||||
|
||||
Changed
|
||||
|
@ -254,6 +255,12 @@ Fixed
|
|||
- Update all platforms to use pycparser 2.21 or greater for Py 3.9 or higher, fixes fips fault with openssl v3.x (#62400)
|
||||
- Due to changes in the Netmiko library for the exception paths, need to check the version of Netmiko python library and then import the exceptions from different locations depending on the result. (#62405)
|
||||
- Fixed urlparse typo in rpmbuild_pkgbuild.py (#62442)
|
||||
- Fixing changes dict in pkg state to be consistent when installing and test=True. (#60995)
|
||||
- Use fire_event_async when expecting a coroutine (#62453)
|
||||
- Fixes import error under windows. (#62459)
|
||||
- account for revision number in formulas to account for difference between bottle and formula (#62466)
|
||||
- Fixed stacktrace on Windows when running pkg.list_pkgs (#62479)
|
||||
- Update sanitizing masking for Salt SSH to include additional password like strings. (#62483)
|
||||
|
||||
|
||||
Added
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
Fixing changes dict in pkg state to be consistent when installing and test=True.
|
|
@ -1 +0,0 @@
|
|||
Deprecated the cassandra module in favor of the cassandra_cql module/returner.
|
|
@ -1 +0,0 @@
|
|||
Use fire_event_async when expecting a coroutine
|
|
@ -1 +0,0 @@
|
|||
Fixes import error under windows.
|
|
@ -1 +0,0 @@
|
|||
account for revision number in formulas to account for difference between bottle and formula
|
|
@ -1 +0,0 @@
|
|||
Fixed stacktrace on Windows when running pkg.list_pkgs
|
|
@ -1 +0,0 @@
|
|||
Update sanitizing masking for Salt SSH to include additional password like strings.
|
|
@ -154,20 +154,24 @@ For example:
|
|||
|
||||
Known issues
|
||||
------------
|
||||
To make use of Salt 3005 or later on a Salt master connected to SaltStack
|
||||
Config, you must use SaltStack Config version 8.9.0 or later.
|
||||
- To make use of Salt 3005 or later on a Salt master connected to SaltStack
|
||||
Config, you must use SaltStack Config version 8.9.0 or later.
|
||||
|
||||
The root cause of the issue is a breaking change to
|
||||
``AsyncClient._proc_function()``` in Salt, which is the function that the
|
||||
raas-master uses to run ``salt-run`` commands. As this is a private API, there's
|
||||
no expectation that the API should remain backward-compatible.
|
||||
The root cause of the issue is a breaking change to
|
||||
``AsyncClient._proc_function()``` in Salt, which is the function that the
|
||||
raas-master uses to run ``salt-run`` commands. As this is a private API, there's
|
||||
no expectation that the API should remain backward-compatible.
|
||||
|
||||
It is recommended to upgrade SaltStack Config before upgrading your Salt
|
||||
masters. However, if a Salt master is upgraded to version 3005 before
|
||||
upgrading SaltStack Config, the upgrade can still be completed.
|
||||
It is recommended to upgrade SaltStack Config before upgrading your Salt
|
||||
masters. However, if a Salt master is upgraded to version 3005 before
|
||||
upgrading SaltStack Config, the upgrade can still be completed.
|
||||
|
||||
After upgrading SaltStack Config, including the SSC plugin on each Salt master,
|
||||
restart the Salt masters.
|
||||
After upgrading SaltStack Config, including the SSC plugin on each Salt master,
|
||||
restart the Salt masters.
|
||||
|
||||
|
||||
- Salt does not currently support napalm 4. Users will need to install napalm 3.x to
|
||||
ensure they do run into issue #62468
|
||||
|
||||
|
||||
Removed
|
||||
|
@ -213,6 +217,7 @@ Deprecated
|
|||
- All of the requirements provided in the requirements files are now included. The job of evaluating platform markers is not Salt's it's pip's. (#62392)
|
||||
- Update all platforms to use pycparser 2.21 or greater for Py 3.9 or higher, fixes fips fault with openssl v3.x (#62400)
|
||||
- Due to changes in the Netmiko library for the exception paths, need to check the version of Netmiko python library and then import the exceptions from different locations depending on the result. (#62405)
|
||||
- Deprecated the cassandra module in favor of the cassandra_cql module/returner. (#62327)
|
||||
|
||||
|
||||
Changed
|
||||
|
@ -414,6 +419,12 @@ Fixed
|
|||
- 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)
|
||||
- Fixed urlparse typo in rpmbuild_pkgbuild.py (#62442)
|
||||
- Fixing changes dict in pkg state to be consistent when installing and test=True. (#60995)
|
||||
- Use fire_event_async when expecting a coroutine (#62453)
|
||||
- Fixes import error under windows. (#62459)
|
||||
- account for revision number in formulas to account for difference between bottle and formula (#62466)
|
||||
- Fixed stacktrace on Windows when running pkg.list_pkgs (#62479)
|
||||
- Update sanitizing masking for Salt SSH to include additional password like strings. (#62483)
|
||||
|
||||
|
||||
Added
|
||||
|
|
Loading…
Add table
Reference in a new issue