From 41b8b8423ab981b6f1d226844c3e27f34df97af5 Mon Sep 17 00:00:00 2001 From: Alyssa Rock Date: Wed, 26 Jul 2023 12:05:14 -0600 Subject: [PATCH] Add release notes file for 3007 to allow nox builds --- doc/topics/releases/3007.0.md | 147 ++++++++++++++++++++++++++++++++++ 1 file changed, 147 insertions(+) create mode 100644 doc/topics/releases/3007.0.md diff --git a/doc/topics/releases/3007.0.md b/doc/topics/releases/3007.0.md new file mode 100644 index 00000000000..a178e08c59f --- /dev/null +++ b/doc/topics/releases/3007.0.md @@ -0,0 +1,147 @@ +(release-3007.0)= +# Salt 3007.0 release notes - UNRELEASED + + + + + + +## Python 3.11 +Salt's onedir packages now use Python 3.11 + +## Python 3.7 Support Dropped +Support for python 3.7 has been dropped since it reached end-of-line in 27 Jun 2023. + +## Azure Salt Extension + +Starting from Salt version 3007.0, the Azure functionality previously available in the Salt code base is fully removed. To continue using Salt's features for interacting with Azure resources, users are required to utilize the Azure Salt extension. For more information, refer to the [Azure Salt Extension GitHub repository](https://github.com/salt-extensions/saltext-azurerm). + + +## Changelog + +### Removed + +- Removed RHEL 5 support since long since end-of-lifed [#62520](https://github.com/saltstack/salt/issues/62520) +- Fedora 36 support was removed because it reached EOL [#64315](https://github.com/saltstack/salt/issues/64315) +- Removing Azure-Cloud modules from the code base. [#64322](https://github.com/saltstack/salt/issues/64322) +- Dropped Python 3.7 support since it's EOL in 27 Jun 2023 [#64417](https://github.com/saltstack/salt/issues/64417) +- Remove netmiko_conn and pyeapi_conn from salt.modules.napalm_mod [#64460](https://github.com/saltstack/salt/issues/64460) +- Removed 'transport' arg from salt.utils.event.get_event [#64461](https://github.com/saltstack/salt/issues/64461) +- Handle deprecation warnings: + + * Switch to `FullArgSpec` since Py 3.11 no longer has `ArgSpec`, deprecated since Py 3.0 + * Stop using the deprecated `cgi` module + * Stop using the deprecated `pipes` module + * Stop using the deprecated `imp` module [#64553](https://github.com/saltstack/salt/issues/64553) + + +### Changed + +- Addressed Python 3.11 deprecations: + + * Switch to `FullArgSpec` since Py 3.11 no longer has `ArgSpec`, deprecated since Py 3.0 + * Stopped using the deprecated `cgi` module. + * Stopped using the deprecated `pipes` module + * Stopped using the deprecated `imp` module [#64457](https://github.com/saltstack/salt/issues/64457) +- changed 'gpg_decrypt_must_succeed' default from False to True [#64462](https://github.com/saltstack/salt/issues/64462) +- Don't hardcode the python version on the Salt Package tests and on the `pkg/debian/salt-cloud.postinst` file [#64553](https://github.com/saltstack/salt/issues/64553) +- Some more deprecated code fixes: + + * Stop using the deprecated `locale.getdefaultlocale()` function + * Stop accessing deprecated attributes + * `pathlib.Path.__enter__()` usage is deprecated and not required, a no-op [#64565](https://github.com/saltstack/salt/issues/64565) +- Bump to `pyyaml==6.0.1` due to https://github.com/yaml/pyyaml/issues/601 and address lint issues [#64657](https://github.com/saltstack/salt/issues/64657) + + +### Fixed + +- fixes aptpkg module by checking for blank comps. [#58667](https://github.com/saltstack/salt/issues/58667) +- Make the LXD module work with pyLXD > 2.10 [#59514](https://github.com/saltstack/salt/issues/59514) +- `wheel.file_roots.find` is now able to find files in subdirectories of the roots. [#59800](https://github.com/saltstack/salt/issues/59800) +- Do not update the credentials dictionary in `utils/aws.py` while iterating over it, and use the correct delete functionality [#61049](https://github.com/saltstack/salt/issues/61049) +- fixed runner not having a proper exit code when runner modules throw an exception. [#61173](https://github.com/saltstack/salt/issues/61173) +- Fixes an issue with failing subsequent state runs with the lgpo state module. + The ``lgpo.get_polcy`` function now returns all boolean settings. [#63296](https://github.com/saltstack/salt/issues/63296) +- Fixes an issue with boolean settings not being reported after being set. The + ``lgpo.get_polcy`` function now returns all boolean settings. [#63473](https://github.com/saltstack/salt/issues/63473) +- pkg.installed no longer reports failure when installing packages that are installed via the task manager [#63767](https://github.com/saltstack/salt/issues/63767) +- mac_xattr.list and mac_xattr.read will replace undecode-able bytes to avoid raising CommandExecutionError. [#63779](https://github.com/saltstack/salt/issues/63779) [#63779](https://github.com/saltstack/salt/issues/63779) +- Fix aptpkg.latest_version performance, reducing number of times to 'shell out' [#63982](https://github.com/saltstack/salt/issues/63982) +- Added option to use a fresh connection for mysql cache [#63991](https://github.com/saltstack/salt/issues/63991) +- [lxd] Fixed a bug in `container_create` which prevented devices which are not of type `disk` to be correctly created and added to the container when passed via the `devices` parameter. [#63996](https://github.com/saltstack/salt/issues/63996) +- Fix state_queue type checking to allow int values [#64122](https://github.com/saltstack/salt/issues/64122) +- Call global logger when catching pip.list exceptions in states.pip.installed + Rename global logger `log` to `logger` inside pip_state [#64169](https://github.com/saltstack/salt/issues/64169) +- Fix user.present state when groups is unset to ensure the groups are unchanged, as documented. [#64211](https://github.com/saltstack/salt/issues/64211) +- Fixed issue in mac_user.enable_auto_login that caused the user's keychain to be reset at each boot [#64226](https://github.com/saltstack/salt/issues/64226) +- Fixed x509_v2 `create_private_key`/`create_crl` unknown kwargs: __pub_fun... [#64232](https://github.com/saltstack/salt/issues/64232) +- remove the hard coded python version in error. [#64237](https://github.com/saltstack/salt/issues/64237) +- Ensure we return an error when adding the key fails in the pkgrepo state for debian hosts. [#64253](https://github.com/saltstack/salt/issues/64253) +- Skipped the `isfile` check to greatly increase speed of reading minion keys for systems with a large number of minions on slow file storage [#64260](https://github.com/saltstack/salt/issues/64260) +- Fixed file client private attribute reference on `SaltMakoTemplateLookup` [#64280](https://github.com/saltstack/salt/issues/64280) +- Fix utf8 handling in 'pass' renderer [#64300](https://github.com/saltstack/salt/issues/64300) +- Upgade tornado to 6.3.2 [#64305](https://github.com/saltstack/salt/issues/64305) +- Fix detection of Salt codename by "salt_version" execution module [#64306](https://github.com/saltstack/salt/issues/64306) +- Ensure selinux values are handled lowercase [#64318](https://github.com/saltstack/salt/issues/64318) +- Remove the `clr.AddReference`, it is causing an `Illegal characters in path` exception [#64339](https://github.com/saltstack/salt/issues/64339) +- Allow for multiple user's keys presented when authenticating, for example: root, salt, etc. [#64398](https://github.com/saltstack/salt/issues/64398) +- Fixed an issue with ``lgpo_reg`` where existing entries for the same key in + ``Registry.pol`` were being overwritten in subsequent runs if the value name in + the subesequent run was contained in the existing value name. For example, a + key named ``SetUpdateNotificationLevel`` would be overwritten by a subsequent + run attempting to set ``UpdateNotificationLevel`` [#64401](https://github.com/saltstack/salt/issues/64401) +- Fix 'unable to unmount' failure to return False result instead of None [#64420](https://github.com/saltstack/salt/issues/64420) +- Add search for %ProgramData%\Chocolatey\choco.exe to determine if Chocolatey is installed or not [#64427](https://github.com/saltstack/salt/issues/64427) +- Fix regression for user.present on handling groups with dupe GIDs [#64430](https://github.com/saltstack/salt/issues/64430) +- Fixed issue uninstalling duplicate packages in ``win_appx`` execution module [#64450](https://github.com/saltstack/salt/issues/64450) +- Fix file.symlink will not replace/update existing symlink [#64477](https://github.com/saltstack/salt/issues/64477) +- Fixed salt-ssh state.* commands returning retcode 0 when state/pillar rendering fails [#64514](https://github.com/saltstack/salt/issues/64514) +- `win_pkg` Fixes an issue runing `pkg.install` with `version=latest` where the + new installer would not be cached if there was already an installer present + with the same name. [#64519](https://github.com/saltstack/salt/issues/64519) +- Added a `test:full` label in the salt repository, which, when selected, will force a full test run. [#64539](https://github.com/saltstack/salt/issues/64539) +- Added support for Chocolatey 2.0.0+ [#64622](https://github.com/saltstack/salt/issues/64622) + + +### Added + +- Added syncing of custom salt-ssh wrappers [#45450](https://github.com/saltstack/salt/issues/45450) +- Revised use of deprecated net-tools and added support for ip neighbour with IPv4 ip_neighs, IPv6 ip_neighs6 [#57541](https://github.com/saltstack/salt/issues/57541) +- Added signed_by_any/signed_by_all parameters to gpg.verify [#63166](https://github.com/saltstack/salt/issues/63166) +- Added match runner [#63278](https://github.com/saltstack/salt/issues/63278) +- add JUnit output for saltcheck [#63463](https://github.com/saltstack/salt/issues/63463) +- Add ability for file.keyvalue to create a file if it doesn't exist [#63545](https://github.com/saltstack/salt/issues/63545) +- added cleanup of temporary mountpoint dir for macpackage installed state [#63905](https://github.com/saltstack/salt/issues/63905) +- Add pkg.installed show installable version in test mode [#63985](https://github.com/saltstack/salt/issues/63985) +- Added flags to create local users and groups [#64256](https://github.com/saltstack/salt/issues/64256) +- Add ability to return False result in test mode of configurable_test_state [#64418](https://github.com/saltstack/salt/issues/64418) +- Added a script to automate setting up a 2nd minion in a user context on Windows [#64439](https://github.com/saltstack/salt/issues/64439) +- Switched Salt's onedir Python version to 3.11 [#64457](https://github.com/saltstack/salt/issues/64457) +- Added support for dnf5 and its new command syntax [#64532](https://github.com/saltstack/salt/issues/64532) +- Several fixes to the CI workflow: + + * Don't override the `on` Jinja block on the `ci.yaml` template. This enables reacting to labels getting added/removed + to/from pull requests. + * Switch to using `tools` and re-use the event payload available instead of querying the GH API again to get the pull + request labels + * Concentrate test selection by labels to a single place + * Enable code coverage on pull-requests by setting the `test:coverage` label [#64547](https://github.com/saltstack/salt/issues/64547) +- Adding a new decorator to indicate when a module is deprecated in favor of a Salt extension. [#64569](https://github.com/saltstack/salt/issues/64569) +- Added win_appx state and execution modules for managing Microsoft Store apps and deprovisioning them from systems [#64978](https://github.com/saltstack/salt/issues/64978) + + +### Security + +- Upgrade to `cryptography==41.0.1`(and therefor `pyopenssl==23.2.0` due to https://github.com/advisories/GHSA-5cpq-8wj7-hf2v + + This only really impacts pip installs of Salt and the windows onedir since the linux and macos onedir build every package dependency from source, not from pre-existing wheels. [#64595](https://github.com/saltstack/salt/issues/64595) +- Bump to `aiohttp==3.8.5` due to https://github.com/advisories/GHSA-45c4-8wx5-qw6w [#64687](https://github.com/saltstack/salt/issues/64687)