-------------
* changed layout connection parameters, sections mysql_users, mssql_users and postgresql users
was a list is now a dictionary. You have to change your old configurations
json
"mssql_users": [
{
"host": "{host}",
"schema": "{schema}",
"username": "{username}",
"password": "{password}",
"port": "{port}"
}
],
"mysql_users": [
{
"host": "{host}",
"database": "{database}",
"username": "{username}",
"password": "{password}",
"port": "{port}"
}
],
"postgresql_users": [
{
"host": "{host}",
"database": "{database}",
"username": "{username}",
"password": "{password}",
"port": "{port}"
}
],