Skip to content

Commit 3b3728b

Browse files
committed
Release v3007.10
1 parent 0cafde2 commit 3b3728b

32 files changed

+243
-47
lines changed

CHANGELOG.md

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,59 @@ Versions are `MAJOR.PATCH`.
77

88
# Changelog
99

10+
## 3007.10 (2025-12-18)
11+
12+
13+
### Fixed
14+
15+
- Fixed an issue with how existing entries are tracked in grains.list_present. Previous entries were only considered if
16+
the grain previously existed. If not then the state would not "see" the duplicates. Removed the dubious tracking via
17+
"context" and focused on using checking for existance in the live grains. [#31427](https://github.com/saltstack/salt/issues/31427)
18+
- Fixed issue with complex objects in grains.list_present. Original fix #52710 did not fully address the problem. [#39875](https://github.com/saltstack/salt/issues/39875)
19+
- Fixed ssh_auth.present to respect provided `options` when read keys from source file [#60769](https://github.com/saltstack/salt/issues/60769)
20+
- Fixed ssh_auth regexp to handle key types with @ or . [#61299](https://github.com/saltstack/salt/issues/61299)
21+
- Fixed a TypeError exception thrown by ssh_known_hosts.present when the specified user account does not exist [#62049](https://github.com/saltstack/salt/issues/62049)
22+
- Fixed false identification of text as binary in salt.utils.file.is_binary if utf-8 multibyte character is truncated at end of 2048 bytes sample. [#62214](https://github.com/saltstack/salt/issues/62214)
23+
- Fix runtime error on OpenBSD by adding support for the osfullname grain [#64189](https://github.com/saltstack/salt/issues/64189)
24+
- Fix closing of TCP transport channels and avoid additional errors [#66568](https://github.com/saltstack/salt/issues/66568)
25+
- Fixed false negative "is not text" in salt.utils.files.is_text if an utf-8 multibyte character is truncated at end of 512 bytes sample. [#66706](https://github.com/saltstack/salt/issues/66706)
26+
- fixes salt runner mine.get not returning value if allow_tgt is defined in mine function [#68188](https://github.com/saltstack/salt/issues/68188)
27+
- Forward minion list events in Syndic cluster mode to enable proper job completion detection [#68319](https://github.com/saltstack/salt/issues/68319)
28+
- Fixes issue with asyncio logger not using SaltLoggingClass and causing exceptions when "%(jid)s" is used in a log format. [#68400](https://github.com/saltstack/salt/issues/68400)
29+
- Fixed ssh_auth.present and ssh.absent to report changes if some key was added or removed when reading keys from a source file [#68403](https://github.com/saltstack/salt/issues/68403)
30+
- Test loader now prevents .pyc files from being written during test run using
31+
sys.dont_write_bytecode = True. This results in 3x faster test execution and
32+
reduced IO operations [#68412](https://github.com/saltstack/salt/issues/68412)
33+
- Fixes a issue where variable names were reversed when detecting domain and
34+
username from a username. [#68450](https://github.com/saltstack/salt/issues/68450)
35+
- Changed the glob pattern for APT sources from `**/*.list` to `*.list`, in line
36+
with APT's default pattern in sources.list.d [#68475](https://github.com/saltstack/salt/issues/68475)
37+
- Remove unwanted error log from aptpkg [#68485](https://github.com/saltstack/salt/issues/68485)
38+
- Use the packaging library instead of the deprecated pkg_resources library for
39+
working with version to avoid a deprecation warning when running salt
40+
commands [#68487](https://github.com/saltstack/salt/issues/68487)
41+
- Fixes issue with disk.tune passing incorrect args for read-only and read-write
42+
to blockdev.
43+
Improves argument and error handling in blockdev. [#68490](https://github.com/saltstack/salt/issues/68490)
44+
- Enhance mod_data to Use Global Loader Extensions in salt-ssh [#68496](https://github.com/saltstack/salt/issues/68496)
45+
- Fix race condition in Salt Syndic when multiple Syndic Masters return at the same time and the Master of Masters tries to write to the same file in the job cache. [#68508](https://github.com/saltstack/salt/issues/68508)
46+
- Patch tornado for CVE-2023-28370 [#68529](https://github.com/saltstack/salt/issues/68529)
47+
- Fixed some of the commands in the Contributing guide. [#68538](https://github.com/saltstack/salt/issues/68538)
48+
- Fix check for non-blockdev devices in blockdev.tuned. Check always returned True
49+
previously, now actually checks with file.is_blkdev. [#68541](https://github.com/saltstack/salt/issues/68541)
50+
- Added documentation and CLI help text for the --disable-keepalive option for
51+
salt-minion and salt-proxy, which disables the automatic restart mechanism
52+
when external process managers like systemd handle daemon restarts. [#68544](https://github.com/saltstack/salt/issues/68544)
53+
- Upgrade relenv to 0.22.1 and fix Python 3.13 support
54+
55+
- Updated relenv from 0.21.2 to 0.22.1
56+
- Fixed backports module import for Python 3.13 compatibility
57+
- Fixed RUSTFLAGS conflicts when compiling cryptography package
58+
- Fixed toolchain cache location for relenv 0.22.1
59+
- Added Obsoletes directives to prevent EPEL salt3006 package conflicts on Rocky 9 [#68552](https://github.com/saltstack/salt/issues/68552)
60+
- Fixed minion process name pollution when multiprocessing is disabled [#68553](https://github.com/saltstack/salt/issues/68553)
61+
62+
1063
## 3007.9 (2025-11-20)
1164
## 3006.17 (2025-11-20)
1265

changelog/31427.fixed.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

changelog/39875.fixed.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/60769.fixed.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/61299.fixed.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/62049.fixed.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/62214.fixed.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/64189.fixed.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/66568.fixed.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/66706.fixed.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)