You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+58Lines changed: 58 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,64 @@ Versions are `MAJOR.PATCH`.
7
7
8
8
# Changelog
9
9
10
+
Salt 3001.1 (2020-07-15)
11
+
========================
12
+
13
+
Changed
14
+
-------
15
+
16
+
- Change the ``enable_fqdns_grains`` setting to default to ``False`` on Windows
17
+
to address some issues with slowness. (#56296, #57529)
18
+
- Handle the UCRT libraries the same way they are handled in the Python 3
19
+
installer (#57594)
20
+
- Changes the 'SSDs' grain name to 'ssds' as all grains needs to be
21
+
resolved in lowered case. (#57612)
22
+
23
+
24
+
Fixed
25
+
-----
26
+
27
+
- When running scheduled jobs from a proxy minion with multiprocessing turned off (default) a recursive error occurs as __pub_fun_args is repeated over and over again in the kwargs element in the data dictionary. Now we make a copy of data['kwargs'] instead of using a reference. (#57941)
28
+
- The `x509.certificate_managed` state no longer triggers a change because of sorting issues if the certificate being evaluated was previously generated under Python 2. (#56556)
29
+
- Added support to lo ip alias in network.managed state by checking if lo inet data
30
+
from network.interfaces contains label with the name of managed interface.
31
+
Return status True if match found. (#56901)
32
+
- Redact passwords in the return when setting credentials using
33
+
``win_iis.container_setting`` (#57285)
34
+
- Fixes issue with cmd.powershell. Some powershell commands do not return
35
+
anything in stdout. This causes the JSON parser to fail because an empty string
36
+
is not valid JSON. This changes an empty string to `{}` which is valid JSON and
37
+
will not cause the JSON loader to stacktrace. (#57493)
38
+
- Improves performance. Profiling `test.ping` on Windows shows that 13 of 17
39
+
seconds are wasted when the esxi grain loads vsphere before noting that
40
+
the OS is not a esxi host. (#57529)
41
+
- Fixed permissions issue with certain pip/virtualenv states/modules when configured for non-root user. (#57550)
42
+
- Allow running nox sessions either using our `nox-py2 fork <https://github.com/s0undt3ch/nox/tree/hotfix/py2-release>`_ or upstream `nox <https://github.com/theacodes/nox>`_. (#57583)
43
+
- Fixes issue with lgpo.get when there are unicode characters in the hostname (#57591)
44
+
- Fixes issue with virtual block devices, like loopbacks and LVMs, wrongly
45
+
populating the "disks" or "ssds" grains. (#57612)
46
+
- Due to some optimization the `virtual` grain was never updated on illumos. Move the fallback in prtdiag output parsing outside the loop that now gets skipped due to the command exiting non-zero. (#57714)
47
+
- Grains module delkey and delval methods now support the force option. This is
48
+
needed for deleting grains with complex (nested) values. (#57718)
49
+
- Moving import salt.modules.vsphere into `__virtual__` so we have access to test proxytype in opts,
50
+
previously this was causing a traceback when run on proxy minion as `__opts__` does not exist
51
+
outside of any functions. Introducing a new utils function, is_proxytype, to check that the
52
+
device is a proxy minion and also that the proxy type matches. (#57743)
53
+
- Fixed fail_with_changes in the test state to use the comment argument when passed. (#57766)
54
+
- Adds a fix so salt can run on the latest macOS version Big Sur. (#57787)
55
+
- Fixes UnpackValueError when using GPG cache by using atomic open. (#57798)
56
+
- The ``gid_from_name`` argument was removed from the ``user.present`` state in
57
+
version 3001, with no deprecation path. It has been restored and put on a
58
+
proper deprecation path. (#57843)
59
+
- Fixes dictionary being changed during iteration. (#57845)
60
+
61
+
62
+
Added
63
+
-----
64
+
65
+
- Added docs demonstrating how to apply an MSI patch with winrepo (#32780)
0 commit comments