After introduction of the new flow step designer with the last release, we continue our efforts to improve the user experience. This week we present an improvement to the summary page. Now you have the component version and used function listed along the credential and component name.
You can now add additional fields along with the main OAuth2 type secret. To use
you must add additional fields into the credentials
section of the component.json
together with the oauth
field. For example:
{
"name": "Component Name",
"authClientTypes": ["oauth2"],
"credentials": {
"fields": {
"oauth": {
"label": "Authentication",
"viewClass": "OAuthFieldView",
"required": true
},
"base_url": {
"label": "Base URL",
"viewClass": "TextView",
"required": true
}
}
}
}
This will render an additional field called Base URL
along with other OAuth2
fields.
You can also use the API call to save the credential (auth-secret) with the additional fields.
Please Note this additional field will only works with the
oauth
credential type containing theOAuthFieldView
viewClass.
With 22.08 release the platform will start using bcript
(instead of SHA-512
) to encrypt passwords before storing them into the DB. This
would mean:
bcript
to encrypt passwords of all new registered users.bcript
upon their next successful login or password change.auth
field defined. Now the field is ignored and credentials shown.1.2.7
REVERTED Node engine from "node": ">=12.13.0"
to "node": "12.20.0"