Skip to content

Commit

Permalink
Merge pull request #23 from kjkeane/update-5.18.0
Browse files Browse the repository at this point in the history
update to 5.18.0
  • Loading branch information
kjkeane authored Jan 3, 2020
2 parents a29b887 + fa167c0 commit 7a7996a
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 4 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
2019-01-03 - 5.18.0
* Update Mattermost Template
* TeamSettings
- LockTeammateNameDisplay
* LdapSettings
- GuestFilter
* SamlSettings
- SignatureAlgorithm
- CanonicalAlgorithm
- GuestAttribute
* PluginSettings
- RequirePluginSignature
- SignaturePublicKeyFiles
* ServiceSettings
- Removed ExperimentalLdapGroupSync
2019-12-07 - 5.17.1
* Update Mattermost Template
* ServiceSettings
Expand Down
2 changes: 1 addition & 1 deletion mattermost/osfingermap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# vim: ft=yaml

default:
version: '5.17.1'
version: '5.18.0'
install_dir: '/opt'
config_file: '/opt/mattermost/config/config.json'
config_file_source: 'salt://mattermost/templates/mattermost.jinja'
Expand Down
13 changes: 10 additions & 3 deletions mattermost/templates/mattermost.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@
"ExperimentalEnableHardenedMode": {{ service.get('ExperimentalEnableHardenedMode', 'false') }},
"DisableLegacyMFA": {{ service.get('DisableLegacyMFA', 'true') }},
"ExperimentalEmailInvitations": {{ service.get('ExperimentalEmailInvitation', 'false') }},
"ExperimentalLdapGroupSync": {{ service.get('ExperimentalLdapGroupSync', 'false') }},
"ExperimentalStrictCSRFEnforcement": {{ service.get('ExperimentalStrictCSRFEnforcement', 'false') }},
"EnableBotAccountCreation": {{ service.get('EnableBotAccountCreation', 'false') }},
"DisableBotsWhenOwnerIsDeactivated": {{ service.get('DisableBotsWhenOwnerIsDeactivated', 'true') }},
Expand Down Expand Up @@ -115,6 +114,7 @@
"ViewArchivedChannels": {{ team.get('ViewArchiveChannels', 'true') }},
"ExperimentalEnableAutomaticReplies": {{ team.get('ExperimentalEnableAutomaticReplies', 'false') }},
"ExperimentlaHideTownSquareinLHS": {{ team.get('ExperimentalHideTownSquareinLHS', 'false') }},
"LockTeammateNameDisplay": {{ team.get('LockTeammateNameDisplay', 'false') }},
"ExperimentalTownSquareIsReadOnly": {{ team.get('ExperimentalTownSquareIsReadOnly', 'false') }},
"ExperimentalPrimaryTeam": "{{ team.get('ExperimentalPrimaryTeam', '') }}",
"ExperimentalDefaultChannels": "{{ team.get('ExperimentalDefaultChannels', '') }}"
Expand Down Expand Up @@ -303,6 +303,7 @@
"BindPassword": "{{ ldap.get('BindPassword', '') }}",
"UserFilter": "{{ ldap.get('UserFilter', '') }}",
"GroupFilter": "{{ ldap.get('GroupFilter', '') }}",
"GuestFilter": "{{ ldap.get('GuestFilter', '') }},
"GroupDisplayNameAttribute": "{{ ldap.get('GroupDisplayNameAttribute', '') }}",
"GroupIdAttribute": "{{ ldap.get('GroupIDAttribute', '') }}",
"FirstNameAttribute": "{{ ldap.get('FirstNameAttribute', '') }}",
Expand All @@ -320,7 +321,8 @@
"LoginFieldName": "{{ ldap.get('LoginFieldName', '') }}",
"LoginButtonColor": "{{ ldap.get('LoginButtonColor', '') }}",
"LoginButtonBorderColor": "{{ ldap.get('LoginButtonBorderColor', '') }}",
"LoginButtonTextColor": "{{ ldap.get('LoginButtonTextColor', '') }}"
"LoginButtonTextColor": "{{ ldap.get('LoginButtonTextColor', '') }}",
"Trace": {{ ldap.get('Trace', 'false') }}
},
{% set compliance = mattermost.get('ComplianceSettings', {}) %}
"ComplianceSettings": {
Expand All @@ -344,12 +346,15 @@
"IdpUrl": "{{ saml.get('IdpUrl', '') }}",
"IdpDescriptorUrl": "{{ saml.get('IdpDescriptorUrl', '') }}",
"AssertionConsumerServiceURL": "{{ saml.get('AssertionConsumerServiceURL', '') }}",
"SignatureAlgorithm": "RSAwithSHA1",
"CanonicalAlgorithm": "Canonical1.0",
"ScopingIDPProviderId": "{{ saml.get('ScopingIDPProviderId', '') }}",
"ScopingIDPName": "{{ saml.get('ScopingIDPName', '') }}",
"IdpCertificateFile": "{{ saml.get('IdpCertificateFile', '') }}",
"PublicCertificateFile": "{{ saml.get('public-cert-file', '') }}",
"PrivateKeyFile": "{{ saml.get('PrivateKeyFile', '') }}",
"IdAttribute": "{{ saml.get('IdAttribute', '') }}",
"GuestAttribute": "{{ saml.get('GuestAttribute', '') }}",
"FirstNameAttribute": "{{ saml.get('FirstNameAttribute', '') }}",
"LastNameAttribute": "{{ saml.get('LastNameAttribute', '') }}",
"EmailAttribute": "{{ saml.get('EmailAttribute', '') }}",
Expand Down Expand Up @@ -468,7 +473,9 @@
}
},
"EnableMarketplace": "{{ plugin.get('EnableMarketplace', 'true') }}",
"MarketplaceUrl": "https://api.integrations.mattermost.com"
"RequirePluginSignature": "{{ plugin.get('RequirePluginSignature', 'false') }}",
"MarketplaceUrl": "https://api.integrations.mattermost.com",
"SignaturePublicKeyFiles": []
},

{% set display = mattermost.get('DisplaySettings', {}) %}
Expand Down

0 comments on commit 7a7996a

Please sign in to comment.