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
pack name and destination action name as mandatory arguments.
68
+
In case destionation already exists then command takes optional arugument ``-f`` or ``--force`` to overwrite
69
+
destination action. #5345
70
+
71
+
Contributed by @mahesh-orch.
72
+
73
+
* Implemented RBAC functionality for existing ``KEY_VALUE_VIEW, KEY_VALUE_SET, KEY_VALUE_DELETE`` and new permission types ``KEY_VALUE_LIST, KEY_VALUE_ALL``.
74
+
RBAC is enabled in the ``st2.conf`` file. Access to a key value pair is checked in the KeyValuePair API controller. #5354
75
+
76
+
Contributed by @m4dcoder and @ashwini-orchestral
77
+
78
+
* Added service degerestration on shutdown of a service. #5396
79
+
80
+
Contributed by @khushboobhatia01
81
+
82
+
* Added pysocks python package for SOCKS proxy support. #5460
83
+
84
+
Contributed by @kingsleyadam
85
+
86
+
* Added support for multiple LDAP hosts to st2-auth-ldap. #5535, https://github.com/StackStorm/st2-auth-ldap/pull/100
87
+
88
+
Contributed by @ktyogurt
89
+
90
+
* Implemented graceful shutdown for action runner. Enabled ``graceful_shutdown`` in ``st2.conf`` file. #5428
91
+
92
+
Contributed by @khushboobhatia01
93
+
94
+
* Enhanced 'search' operator to allow complex criteria matching on payload items. #5482
95
+
96
+
Contributed by @erceth
97
+
98
+
* Added cancel/pause/resume requester information to execution context. #5554
99
+
100
+
Contributed by @khushboobhatia01
101
+
102
+
* Added `trigger.headers_lower` to webhook trigger payload. This allows rules to match webhook triggers
103
+
without dealing with the case-sensitive nature of `trigger.headers`, as `triggers.headers_lower` providers
104
+
the same headers, but with the header name lower cased. #5038
105
+
106
+
Contributed by @Rand01ph
107
+
108
+
* Added support to override enabled parameter of resources. #5506
109
+
110
+
Contributed by Amanda McGuinness (@amanda11 Intive)
111
+
112
+
* Add new ``api.auth_cookie_secure`` and ``api.auth_cookie_same_site`` config options which
113
+
specify values which are set for ``secure`` and ``SameSite`` attribute for the auth cookie
114
+
we set when authenticating via token / api key in query parameter value (e.g. via st2web).
115
+
116
+
For security reasons, ``api.auth_cookie_secure`` defaults to ``True``. This should only be
117
+
changed to ``False`` if you have a valid reason to not run StackStorm behind HTTPs proxy.
118
+
119
+
Default value for ``api.auth_cookie_same_site`` is ``lax``. If you want to disable this
120
+
functionality so it behaves the same as in the previous releases, you can set that option
121
+
to ``None``.
122
+
123
+
#5248
124
+
125
+
Contributed by @Kami.
126
+
127
+
* Add new ``st2 action-alias test <message string>`` CLI command which allows users to easily
128
+
test action alias matching and result formatting.
129
+
130
+
This command will first try to find a matching alias (same as ``st2 action-alias match``
131
+
command) and if a match is found, trigger an execution (same as ``st2 action-alias execute``
132
+
command) and format the execution result.
133
+
134
+
This means it uses exactly the same flow as commands on chat, but the interaction avoids
135
+
chat and hubot which should make testing and developing aliases easier and faster. #5143
136
+
137
+
#5143
138
+
139
+
Contributed by @Kami.
140
+
141
+
* Add new ``credentials.basic_auth = username:password`` CLI configuration option.
142
+
143
+
This argument allows client to use additional set of basic auth credentials when talking to the
144
+
StackStorm API endpoints (api, auth, stream) - that is, in addition to the token / api key
145
+
native StackStorm auth.
146
+
147
+
This allows for simple basic auth based multi factor authentication implementation for
148
+
installations which don't utilize SSO.
149
+
150
+
#5152
151
+
152
+
Contributed by @Kami.
153
+
154
+
* Added garbage collection for rule_enforcement and trace models #5596/5602
155
+
Contributed by Amanda McGuinness (@amanda11 intive)
156
+
157
+
* Added garbage collection for workflow execution and task execution objects #4924
158
+
Contributed by @srimandaleeka01 and @amanda11
159
+
160
+
161
+
Fixed
162
+
~~~~~
163
+
164
+
* Fixed regression caused by #5358. Use string lock name instead of object ID. #5484
165
+
166
+
Contributed by @khushboobhatia01
167
+
168
+
* Fix ``st2-self-check`` script reporting falsey success when the nested workflows runs failed. #5487
169
+
170
+
* Use byte type lock name which is supported by all tooz drivers. #5529
171
+
172
+
Contributed by @khushboobhatia01
173
+
174
+
* Fixed issue where pack index searches are ignoring no_proxy #5497
175
+
176
+
Contributed by @minsis
177
+
10
178
* Fixed trigger references emitted by ``linux.file_watch.line``. #5467
11
179
12
180
Prior to this patch multiple files could be watched but the rule reference of last registered file
0 commit comments