mirror of
https://github.com/saltstack/salt.git
synced 2025-04-16 09:40:20 +00:00
Add changelog and docs for 3005.1 release
This commit is contained in:
parent
a0d3c44b61
commit
f321452879
35 changed files with 1331 additions and 565 deletions
25
CHANGELOG.md
25
CHANGELOG.md
|
@ -7,6 +7,31 @@ Versions are `MAJOR.PATCH`.
|
|||
|
||||
# Changelog
|
||||
|
||||
Salt 3005.1 (2022-09-26)
|
||||
========================
|
||||
|
||||
Fixed
|
||||
-----
|
||||
|
||||
- Fix arch parsing issue in apt source files (#62247)
|
||||
- Fixed parsing CDROM apt sources (#62474)
|
||||
- Use str() method instead of repo_line for when python3-apt is installed or not in aptpkg.py. (#62546)
|
||||
- Remove the connection_timeout from netmiko_connection_args before netmiko_connection_args is added to __context__["netmiko_device"]["args"] which is passed along to the Netmiko library. (#62547)
|
||||
- fixes #62553 by checking for disabled master_type before starting master connection and skipping it if set. (#62553)
|
||||
- Fix runas with cmd module when using the onedir bundled packages (#62565)
|
||||
- Fix the Pyinstaller hooks to preserve the environment if None is passed. (#62567, #62628)
|
||||
- pkgrepo.managed sets wrong permissions on keys installed to /etc/apt/keyring (#62569)
|
||||
- pkgrepo.managed creates zero byte gpg files when dearmoring contents to the same filename (#62570)
|
||||
- Ensure default values for IPC Buffers are correct type (#62591)
|
||||
- Fix a hang on salt-ssh when using sudo. (#62603)
|
||||
- Renderers now have access to the correct set of salt functions. (#62610, #62620)
|
||||
- Fix including Jinja template from absolute path (#62611)
|
||||
- include jmespath in package requirements (#62613)
|
||||
- Fix pkgrepo.managed signed-by in test=true mode (#62662)
|
||||
- Ensure the status of the service is captured when the beacon function is called, even when the event is not being emitted. (#62675)
|
||||
- The sub proxies controlled by Deltaproxy need to have their own req_channel otherwise there are timeout exceptions when the __master_req_channel_payload is fired and reacted on. (#62708)
|
||||
|
||||
|
||||
Salt 3005 (2022-08-22)
|
||||
======================
|
||||
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
Fix arch parsing issue in apt source files
|
|
@ -1 +0,0 @@
|
|||
Fixed parsing CDROM apt sources
|
|
@ -1 +0,0 @@
|
|||
Use str() method instead of repo_line for when python3-apt is installed or not in aptpkg.py.
|
|
@ -1 +0,0 @@
|
|||
Remove the connection_timeout from netmiko_connection_args before netmiko_connection_args is added to __context__["netmiko_device"]["args"] which is passed along to the Netmiko library.
|
|
@ -1 +0,0 @@
|
|||
fixes #62553 by checking for disabled master_type before starting master connection and skipping it if set.
|
|
@ -1 +0,0 @@
|
|||
Fix runas with cmd module when using the onedir bundled packages
|
|
@ -1 +0,0 @@
|
|||
Fix the Pyinstaller hooks to preserve the environment if None is passed.
|
|
@ -1 +0,0 @@
|
|||
pkgrepo.managed sets wrong permissions on keys installed to /etc/apt/keyring
|
|
@ -1 +0,0 @@
|
|||
pkgrepo.managed creates zero byte gpg files when dearmoring contents to the same filename
|
|
@ -1 +0,0 @@
|
|||
Ensure default values for IPC Buffers are correct type
|
|
@ -1 +0,0 @@
|
|||
Fix a hang on salt-ssh when using sudo.
|
|
@ -1 +0,0 @@
|
|||
Renderers now have access to the correct set of salt functions.
|
|
@ -1 +0,0 @@
|
|||
Fix including Jinja template from absolute path
|
|
@ -1 +0,0 @@
|
|||
include jmespath in package requirements
|
|
@ -1 +0,0 @@
|
|||
Renderers now have access to the correct set of salt functions.
|
|
@ -1 +0,0 @@
|
|||
Fix the Pyinstaller hooks to preserve the environment if None is passed.
|
|
@ -1 +0,0 @@
|
|||
Fix pkgrepo.managed signed-by in test=true mode
|
|
@ -1 +0,0 @@
|
|||
Ensure the status of the service is captured when the beacon function is called, even when the event is not being emitted.
|
|
@ -1 +0,0 @@
|
|||
The sub proxies controlled by Deltaproxy need to have their own req_channel otherwise there are timeout exceptions when the __master_req_channel_payload is fired and reacted on.
|
|
@ -1,6 +1,6 @@
|
|||
.\" Man page generated from reStructuredText.
|
||||
.
|
||||
.TH "SALT-API" "1" "Jun 30, 2022" "3005" "Salt"
|
||||
.TH "SALT-API" "1" "Sep 26, 2022" "3005" "Salt"
|
||||
.SH NAME
|
||||
salt-api \- salt-api Command
|
||||
.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.\" Man page generated from reStructuredText.
|
||||
.
|
||||
.TH "SALT-CALL" "1" "Jun 30, 2022" "3005" "Salt"
|
||||
.TH "SALT-CALL" "1" "Sep 26, 2022" "3005" "Salt"
|
||||
.SH NAME
|
||||
salt-call \- salt-call Documentation
|
||||
.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.\" Man page generated from reStructuredText.
|
||||
.
|
||||
.TH "SALT-CLOUD" "1" "Jun 30, 2022" "3005" "Salt"
|
||||
.TH "SALT-CLOUD" "1" "Sep 26, 2022" "3005" "Salt"
|
||||
.SH NAME
|
||||
salt-cloud \- Salt Cloud Command
|
||||
.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.\" Man page generated from reStructuredText.
|
||||
.
|
||||
.TH "SALT-CP" "1" "Jun 30, 2022" "3005" "Salt"
|
||||
.TH "SALT-CP" "1" "Sep 26, 2022" "3005" "Salt"
|
||||
.SH NAME
|
||||
salt-cp \- salt-cp Documentation
|
||||
.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.\" Man page generated from reStructuredText.
|
||||
.
|
||||
.TH "SALT-KEY" "1" "Jun 30, 2022" "3005" "Salt"
|
||||
.TH "SALT-KEY" "1" "Sep 26, 2022" "3005" "Salt"
|
||||
.SH NAME
|
||||
salt-key \- salt-key Documentation
|
||||
.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.\" Man page generated from reStructuredText.
|
||||
.
|
||||
.TH "SALT-MASTER" "1" "Jun 30, 2022" "3005" "Salt"
|
||||
.TH "SALT-MASTER" "1" "Sep 26, 2022" "3005" "Salt"
|
||||
.SH NAME
|
||||
salt-master \- salt-master Documentation
|
||||
.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.\" Man page generated from reStructuredText.
|
||||
.
|
||||
.TH "SALT-MINION" "1" "Jun 30, 2022" "3005" "Salt"
|
||||
.TH "SALT-MINION" "1" "Sep 26, 2022" "3005" "Salt"
|
||||
.SH NAME
|
||||
salt-minion \- salt-minion Documentation
|
||||
.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.\" Man page generated from reStructuredText.
|
||||
.
|
||||
.TH "SALT-PROXY" "1" "Jun 30, 2022" "3005" "Salt"
|
||||
.TH "SALT-PROXY" "1" "Sep 26, 2022" "3005" "Salt"
|
||||
.SH NAME
|
||||
salt-proxy \- salt-proxy Documentation
|
||||
.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.\" Man page generated from reStructuredText.
|
||||
.
|
||||
.TH "SALT-RUN" "1" "Jun 30, 2022" "3005" "Salt"
|
||||
.TH "SALT-RUN" "1" "Sep 26, 2022" "3005" "Salt"
|
||||
.SH NAME
|
||||
salt-run \- salt-run Documentation
|
||||
.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.\" Man page generated from reStructuredText.
|
||||
.
|
||||
.TH "SALT-SSH" "1" "Jun 30, 2022" "3005" "Salt"
|
||||
.TH "SALT-SSH" "1" "Sep 26, 2022" "3005" "Salt"
|
||||
.SH NAME
|
||||
salt-ssh \- salt-ssh Documentation
|
||||
.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.\" Man page generated from reStructuredText.
|
||||
.
|
||||
.TH "SALT-SYNDIC" "1" "Jun 30, 2022" "3005" "Salt"
|
||||
.TH "SALT-SYNDIC" "1" "Sep 26, 2022" "3005" "Salt"
|
||||
.SH NAME
|
||||
salt-syndic \- salt-syndic Documentation
|
||||
.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.\" Man page generated from reStructuredText.
|
||||
.
|
||||
.TH "SALT" "1" "Jun 30, 2022" "3005" "Salt"
|
||||
.TH "SALT" "1" "Sep 26, 2022" "3005" "Salt"
|
||||
.SH NAME
|
||||
salt \- salt
|
||||
.
|
||||
|
|
1803
doc/man/salt.7
1803
doc/man/salt.7
File diff suppressed because it is too large
Load diff
|
@ -1,6 +1,6 @@
|
|||
.\" Man page generated from reStructuredText.
|
||||
.
|
||||
.TH "SPM" "1" "Jun 30, 2022" "3005" "Salt"
|
||||
.TH "SPM" "1" "Sep 26, 2022" "3005" "Salt"
|
||||
.SH NAME
|
||||
spm \- Salt Package Manager Command
|
||||
.
|
||||
|
|
23
doc/topics/releases/3005.1.rst
Normal file
23
doc/topics/releases/3005.1.rst
Normal file
|
@ -0,0 +1,23 @@
|
|||
|
||||
|
||||
Fixed
|
||||
-----
|
||||
|
||||
- Fix arch parsing issue in apt source files (#62247)
|
||||
- Fixed parsing CDROM apt sources (#62474)
|
||||
- Use str() method instead of repo_line for when python3-apt is installed or not in aptpkg.py. (#62546)
|
||||
- Remove the connection_timeout from netmiko_connection_args before netmiko_connection_args is added to __context__["netmiko_device"]["args"] which is passed along to the Netmiko library. (#62547)
|
||||
- fixes #62553 by checking for disabled master_type before starting master connection and skipping it if set. (#62553)
|
||||
- Fix runas with cmd module when using the onedir bundled packages (#62565)
|
||||
- Fix the Pyinstaller hooks to preserve the environment if None is passed. (#62567, #62628)
|
||||
- pkgrepo.managed sets wrong permissions on keys installed to /etc/apt/keyring (#62569)
|
||||
- pkgrepo.managed creates zero byte gpg files when dearmoring contents to the same filename (#62570)
|
||||
- Ensure default values for IPC Buffers are correct type (#62591)
|
||||
- Fix a hang on salt-ssh when using sudo. (#62603)
|
||||
- Renderers now have access to the correct set of salt functions. (#62610, #62620)
|
||||
- Fix including Jinja template from absolute path (#62611)
|
||||
- include jmespath in package requirements (#62613)
|
||||
- Fix pkgrepo.managed signed-by in test=true mode (#62662)
|
||||
- Ensure the status of the service is captured when the beacon function is called, even when the event is not being emitted. (#62675)
|
||||
- The sub proxies controlled by Deltaproxy need to have their own req_channel otherwise there are timeout exceptions when the __master_req_channel_payload is fired and reacted on. (#62708)
|
||||
|
Loading…
Add table
Reference in a new issue