Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update board version to 9.0.4 #45

Merged
merged 2 commits into from
Dec 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": "9.0.2",
"version": "9.0.4",
"min_server_version": "7.2.0",
"server": {
"executables": {
Expand Down
2 changes: 1 addition & 1 deletion server/manifest.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -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=9.0.2"
href="https://www.focalboard.com/fwlink/doc-boards.html?v=9.0.4"
rel="noreferrer"
target="_blank"
>
Expand Down
20 changes: 10 additions & 10 deletions webapp/src/components/sidebar/__snapshots__/sidebar.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ exports[`components/sidebarSidebar dont show hidden boards 1`] = `
>
<div
class="version"
title="v9.0.2"
title="v9.0.4"
>
v9.0.2
v9.0.4
</div>
</div>
</div>
Expand Down Expand Up @@ -252,9 +252,9 @@ exports[`components/sidebarSidebar should assign default category if current boa
>
<div
class="version"
title="v9.0.2"
title="v9.0.4"
>
v9.0.2
v9.0.4
</div>
</div>
</div>
Expand Down Expand Up @@ -508,9 +508,9 @@ exports[`components/sidebarSidebar shouldnt do any category assignment is board
>
<div
class="version"
title="v9.0.2"
title="v9.0.4"
>
v9.0.2
v9.0.4
</div>
</div>
</div>
Expand Down Expand Up @@ -919,9 +919,9 @@ exports[`components/sidebarSidebar sidebar hidden 1`] = `
>
<div
class="version"
title="v9.0.2"
title="v9.0.4"
>
v9.0.2
v9.0.4
</div>
</div>
</div>
Expand Down Expand Up @@ -1213,9 +1213,9 @@ exports[`components/sidebarSidebar some categories hidden 1`] = `
>
<div
class="version"
title="v9.0.2"
title="v9.0.4"
>
v9.0.2
v9.0.4
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class Constants {
static readonly titleColumnId = '__title'
static readonly badgesColumnId = '__badges'

static readonly versionString = '9.0.2'
static readonly versionString = '9.0.4'
static readonly versionDisplayString = 'June 2024'

static readonly archiveHelpPage = 'https://docs.mattermost.com/boards/migrate-to-boards.html'
Expand Down
Loading