update version v7.12.0 (#4814)

pull/4825/head
Scott Bishel 10 months ago committed by GitHub
parent 9901557d99
commit e6b67af8b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      mattermost-plugin/plugin.json
  2. 2
      mattermost-plugin/server/manifest.go
  3. 1
      server/model/version.go
  4. 4
      webapp/package-lock.json
  5. 2
      webapp/package.json
  6. 2
      webapp/src/components/globalHeader/__snapshots__/globalHeader.test.tsx.snap
  7. 20
      webapp/src/components/sidebar/__snapshots__/sidebar.test.tsx.snap
  8. 2
      webapp/src/constants.ts

@ -6,7 +6,7 @@
"support_url": "https://github.com/mattermost/focalboard/issues",
"release_notes_url": "https://github.com/mattermost/focalboard/releases",
"icon_path": "assets/starter-template-icon.svg",
"version": "7.11.1",
"version": "7.12.0",
"min_server_version": "7.2.0",
"server": {
"executables": {

@ -20,7 +20,7 @@ const manifestStr = `
"support_url": "https://github.com/mattermost/focalboard/issues",
"release_notes_url": "https://github.com/mattermost/focalboard/releases",
"icon_path": "assets/starter-template-icon.svg",
"version": "7.11.1",
"version": "7.12.0",
"min_server_version": "7.2.0",
"server": {
"executables": {

@ -8,6 +8,7 @@ import (
// It should be maintained in chronological order with most current
// release at the front of the list.
var versions = []string{
"7.12.0",
"7.11.1",
"7.11.0",
"7.10.0",

@ -1,12 +1,12 @@
{
"name": "focalboard",
"version": "7.11.1",
"version": "7.12.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "focalboard",
"version": "7.11.1",
"version": "7.12.0",
"dependencies": {
"@draft-js-plugins/editor": "^4.1.2",
"@draft-js-plugins/emoji": "^4.6.0",

@ -1,6 +1,6 @@
{
"name": "focalboard",
"version": "7.11.1",
"version": "7.12.0",
"private": true,
"description": "",
"scripts": {

@ -10,7 +10,7 @@ exports[`components/sidebar/GlobalHeader header menu should match snapshot 1`] =
/>
<a
class="GlobalHeaderComponent__button help-button"
href="https://www.focalboard.com/fwlink/doc-boards.html?v=7.11.1"
href="https://www.focalboard.com/fwlink/doc-boards.html?v=7.12.0"
rel="noreferrer"
target="_blank"
>

@ -51,9 +51,9 @@ exports[`components/sidebarSidebar dont show hidden boards 1`] = `
>
<div
class="version"
title="v7.11.1"
title="v7.12.0"
>
v7.11.1
v7.12.0
</div>
</div>
</div>
@ -252,9 +252,9 @@ exports[`components/sidebarSidebar should assign default category if current boa
>
<div
class="version"
title="v7.11.1"
title="v7.12.0"
>
v7.11.1
v7.12.0
</div>
</div>
</div>
@ -508,9 +508,9 @@ exports[`components/sidebarSidebar shouldnt do any category assignment is board
>
<div
class="version"
title="v7.11.1"
title="v7.12.0"
>
v7.11.1
v7.12.0
</div>
</div>
</div>
@ -919,9 +919,9 @@ exports[`components/sidebarSidebar sidebar hidden 1`] = `
>
<div
class="version"
title="v7.11.1"
title="v7.12.0"
>
v7.11.1
v7.12.0
</div>
</div>
</div>
@ -1213,9 +1213,9 @@ exports[`components/sidebarSidebar some categories hidden 1`] = `
>
<div
class="version"
title="v7.11.1"
title="v7.12.0"
>
v7.11.1
v7.12.0
</div>
</div>
</div>

@ -37,7 +37,7 @@ class Constants {
static readonly titleColumnId = '__title'
static readonly badgesColumnId = '__badges'
static readonly versionString = '7.11.1'
static readonly versionString = '7.12.0'
static readonly versionDisplayString = 'May 2023'
static readonly archiveHelpPage = 'https://docs.mattermost.com/boards/migrate-to-boards.html'

Loading…
Cancel
Save