mirror of
https://github.com/netbirdio/plugins.git
synced 2026-05-22 18:44:07 -07:00
security/openconnect: Allow further characters in group name (#3160)
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
PLUGIN_NAME= openconnect
|
||||
PLUGIN_VERSION= 1.4.2
|
||||
PLUGIN_VERSION= 1.4.3
|
||||
PLUGIN_REVISION= 1
|
||||
PLUGIN_COMMENT= OpenConnect Client
|
||||
PLUGIN_DEPENDS= openconnect
|
||||
|
||||
@@ -6,6 +6,10 @@ the Juniper SSL VPN which is now known as Pulse Connect Secure.
|
||||
Plugin Changelog
|
||||
================
|
||||
|
||||
1.4.3
|
||||
|
||||
* Permit additional characters in group name
|
||||
|
||||
1.4.2
|
||||
|
||||
* Allow usernames up to 64 characters
|
||||
|
||||
@@ -40,8 +40,8 @@
|
||||
</hash>
|
||||
<group type="TextField">
|
||||
<Required>N</Required>
|
||||
<mask>/^[a-zA-Z0-9._-]{1,64}$/</mask>
|
||||
<ValidationMessage>Please provide a valid group name. Allowed characters are a-zA-Z0-9._- and it has to be 1-64 characters long.</ValidationMessage>
|
||||
<mask>/^[() a-zA-Z0-9._-]{1,64}$/</mask>
|
||||
<ValidationMessage>Please provide a valid group name. Allowed are at most 64 characters from a-zA-Z0-9._-() and space.</ValidationMessage>
|
||||
</group>
|
||||
<clientcertificate type="CertificateField">
|
||||
<Type>cert</Type>
|
||||
|
||||
Reference in New Issue
Block a user