- Package AWS : extend aws helper to manage accessKey
	- Package Cobra : refactor configure function to allow use independant part of the command
	- Package ldap : fix error
	- Package config
		- interface : add shutdown method
		- components:
			- request : syntax error in default json
			- mail : syntax error default json
			- ldap :
				- allow to access loaded config
				- mutex lock circular
			- tls : allow to access loaded config
	- Package request :
		- add error managment
		- fix error with circular mutex
		- fix bug with empty response body
		- fix some other errors
	- Package status : default label in component default config
	- Bump dependancies
	- Bump yaml to v3 (in waiting fix for CVE-2022-28948)
	- force dependancies gogo/protobuff to v1.3.2+
This commit is contained in:
Nicolas JUHEL
2022-05-23 11:01:03 +02:00
parent 01308cc8f2
commit 90ceb19d2f
19 changed files with 397 additions and 277 deletions

View File

@@ -37,6 +37,7 @@ const (
type ComponentTlS interface {
libcfg.Component
Config() *libtls.Config
GetTLS() libtls.TLSConfig
SetTLS(tls libtls.TLSConfig)
}