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
+57Lines changed: 57 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,63 @@ 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
+
- 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)
28
+
- Added support to lo ip alias in network.managed state by checking if lo inet data
29
+
from network.interfaces contains label with the name of managed interface.
30
+
Return status True if match found. (#56901)
31
+
- Redact passwords in the return when setting credentials using
32
+
``win_iis.container_setting`` (#57285)
33
+
- Fixes issue with cmd.powershell. Some powershell commands do not return
34
+
anything in stdout. This causes the JSON parser to fail because an empty string
35
+
is not valid JSON. This changes an empty string to `{}` which is valid JSON and
36
+
will not cause the JSON loader to stacktrace. (#57493)
37
+
- Improves performance. Profiling `test.ping` on Windows shows that 13 of 17
38
+
seconds are wasted when the esxi grain loads vsphere before noting that
39
+
the OS is not a esxi host. (#57529)
40
+
- Fixed permissions issue with certain pip/virtualenv states/modules when configured for non-root user. (#57550)
41
+
- 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)
42
+
- Fixes issue with lgpo.get when there are unicode characters in the hostname (#57591)
43
+
- Fixes issue with virtual block devices, like loopbacks and LVMs, wrongly
44
+
populating the "disks" or "ssds" grains. (#57612)
45
+
- 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)
46
+
- Grains module delkey and delval methods now support the force option. This is
47
+
needed for deleting grains with complex (nested) values. (#57718)
48
+
- Moving import salt.modules.vsphere into `__virtual__` so we have access to test proxytype in opts,
49
+
previously this was causing a traceback when run on proxy minion as `__opts__` does not exist
50
+
outside of any functions. Introducing a new utils function, is_proxytype, to check that the
51
+
device is a proxy minion and also that the proxy type matches. (#57743)
52
+
- Fixed fail_with_changes in the test state to use the comment argument when passed. (#57766)
53
+
- Adds a fix so salt can run on the latest macOS version Big Sur. (#57787)
54
+
- Fixes UnpackValueError when using GPG cache by using atomic open. (#57798)
55
+
- The ``gid_from_name`` argument was removed from the ``user.present`` state in
56
+
version 3001, with no deprecation path. It has been restored and put on a
57
+
proper deprecation path. (#57843)
58
+
- Fixes dictionary being changed during iteration. (#57845)
59
+
60
+
61
+
Added
62
+
-----
63
+
64
+
- Added docs demonstrating how to apply an MSI patch with winrepo (#32780)
0 commit comments