UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 12e1fc1b authored by Micah Nagel's avatar Micah Nagel
Browse files

Update to 5.38.2

parent a8803d72
No related branches found
No related tags found
1 merge request!58Update to 5.38.2
......@@ -3,6 +3,12 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
---
## [0.2.0-bb.0] - 2021-08-27
### Changed
- Updated to latest IB 5.38.2
- Modified tests to remove buggy "site name" test and accomodate the new "tutorial" setup
## [0.1.8-bb.0] - 2021-08-19
### Fix
- Fixes issue with default bucket creation already existing
......
......@@ -2,7 +2,7 @@
apiVersion: v2
name: mattermost
type: application
version: "0.1.8-bb.1"
version: "0.2.0-bb.0"
appVersion: "5.37.0"
description: "Deployment of mattermost"
keywords:
......
......@@ -41,16 +41,19 @@ describe('Mattermost Healthcheck', function() {
cy.title().should('include', 'Town Square - Big Bang')
}
})
cy.get("body").then($body => {
if ($body.find('a[id="tutorialSkipLink"]').length > 0) {
cy.get('a[id="tutorialSkipLink"]').click()
if ($body.find('button[class="SidebarNextSteps__close"]').length > 0) {
cy.get('button[class="SidebarNextSteps__close"]').click()
cy.get('button[type="submit"] > span').contains("Remove").click()
}
})
})
})
it('should allow chatting', function() {
let randomChat = "Hello " + Math.random().toString(36).substring(8);
cy.get('textarea[id="post_textbox"]').type(randomChat).type('{enter}')
cy.reload()
cy.get('p').contains(randomChat).should('be.visible')
})
......@@ -62,16 +65,4 @@ describe('Mattermost Healthcheck', function() {
cy.get('span').contains("Test Connection").click()
cy.get('div[class="alert alert-success"]').should('be.visible')
})
it('should save settings changes', function() {
cy.get('button[aria-label="main menu"]').click()
cy.get('a[href="/admin_console"]').click()
cy.get('a[id="site_config/customization"]').click()
let randomName = Math.random().toString(36).substring(8);
cy.get('input[id="TeamSettings.SiteName"]').clear().type(randomName)
cy.get('button[id="saveSetting"]').click()
cy.reload()
cy.title().should('include', randomName)
})
})
......@@ -36,7 +36,7 @@ sso:
# Repo and image tag
image:
name: registry1.dso.mil/ironbank/opensource/mattermost/mattermost
tag: 5.37.0
tag: 5.38.2
imagePullPolicy: IfNotPresent
global:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment