<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Last Update (6.3.0) broke Boards]]></title><description><![CDATA[<p dir="auto">Hey there,</p>
<p dir="auto">does anybody else experience the same?<br />
We were using Mattermost Boards (introduced in V6) and they disappeared after the last update to 6.3.0.</p>
<p dir="auto">I can still find the setting and tried disabling and enabling (hoping that would set a flag in DB). Unfortunately, it did not help.</p>
<p dir="auto">I guess it would make sense to add boards to the tests too.</p>
<p dir="auto">Best</p>
<p dir="auto">Eugene</p>
]]></description><link>https://forum.cloudron.io/topic/6344/last-update-6-3-0-broke-boards</link><generator>RSS for Node</generator><lastBuildDate>Mon, 18 May 2026 09:27:27 GMT</lastBuildDate><atom:link href="https://forum.cloudron.io/topic/6344.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 17 Jan 2022 07:48:58 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Last Update (6.3.0) broke Boards on Thu, 20 Jan 2022 11:02:46 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ashughes" aria-label="Profile: ashughes">@<bdi>ashughes</bdi></a> Perfect, that's correct.</p>
<p dir="auto">Here is the answer:<br />
<a href="https://github.com/mattermost/focalboard/issues/2119#issuecomment-1013751739" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/mattermost/focalboard/issues/2119#issuecomment-1013751739</a></p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/robi" aria-label="Profile: robi">@<bdi>robi</bdi></a> It's not an issue with cloudron. So I guess as soon as there is a fix by Mattermost it will also land here.<br />
The only action step from <a class="plugin-mentions-user plugin-mentions-a" href="/user/nebulon" aria-label="Profile: nebulon">@<bdi>nebulon</bdi></a> and cloudron would be to add some tests for boards in future releases.</p>
]]></description><link>https://forum.cloudron.io/post/42112</link><guid isPermaLink="true">https://forum.cloudron.io/post/42112</guid><dc:creator><![CDATA[mtd-sales]]></dc:creator><pubDate>Thu, 20 Jan 2022 11:02:46 GMT</pubDate></item><item><title><![CDATA[Reply to Last Update (6.3.0) broke Boards on Thu, 20 Jan 2022 01:49:00 GMT]]></title><description><![CDATA[<p dir="auto">Does this mean there will be a Cloudron Mattermost App update pushed <a class="plugin-mentions-user plugin-mentions-a" href="/user/nebulon" aria-label="Profile: nebulon">@<bdi>nebulon</bdi></a> ?</p>
]]></description><link>https://forum.cloudron.io/post/42098</link><guid isPermaLink="true">https://forum.cloudron.io/post/42098</guid><dc:creator><![CDATA[robi]]></dc:creator><pubDate>Thu, 20 Jan 2022 01:49:00 GMT</pubDate></item><item><title><![CDATA[Reply to Last Update (6.3.0) broke Boards on Wed, 19 Jan 2022 03:44:26 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mtd-sales" aria-label="Profile: mtd-sales">@<bdi>mtd-sales</bdi></a> said in <a href="/post/41965">Last Update (6.3.0) broke Boards</a>:</p>
<blockquote>
<p dir="auto">focalboard_schema_migrations</p>
</blockquote>
<p dir="auto">Was having the same issue and this seemed to work. TLDR; Seems like I only had to update <code>dirty</code>.</p>
<p dir="auto">Before Mattermost update:</p>
<pre><code>select * from focalboard_schema_migrations;

+---------+-------+
| version | dirty |
+---------+-------+
|      14 |     0 |
+---------+-------+
</code></pre>
<p dir="auto">After Mattermost update:</p>
<pre><code>select * from focalboard_schema_migrations;

+---------+-------+
| version | dirty |
+---------+-------+
|      15 |     1 |
+---------+-------+
</code></pre>
<p dir="auto">Then I ran the following:</p>
<pre><code>update focal_schema_migrations set dirty=1 where dirty=0;
commit; 
</code></pre>
<p dir="auto">Then I rebooted the Mattermost instance and checked the table again:</p>
<pre><code>select * from focalboard_schema_migrations;

+---------+-------+
| version | dirty |
+---------+-------+
|      16 |     0 |
+---------+-------+
</code></pre>
<p dir="auto">Finally, I restarted Mattermost Desktop and checked that I could load Boards again, and it all works great.</p>
]]></description><link>https://forum.cloudron.io/post/42046</link><guid isPermaLink="true">https://forum.cloudron.io/post/42046</guid><dc:creator><![CDATA[ashughes]]></dc:creator><pubDate>Wed, 19 Jan 2022 03:44:26 GMT</pubDate></item><item><title><![CDATA[Reply to Last Update (6.3.0) broke Boards on Tue, 18 Jan 2022 10:45:43 GMT]]></title><description><![CDATA[<p dir="auto">I was able to fix it by changing the following values in table <code>focalboard_schema_migrations</code></p>
<ul>
<li><code>version</code> 15 -&gt; 11 (I figured that's the current version)</li>
<li><code>dirty</code> 1 -&gt; 0</li>
</ul>
]]></description><link>https://forum.cloudron.io/post/41965</link><guid isPermaLink="true">https://forum.cloudron.io/post/41965</guid><dc:creator><![CDATA[mtd-sales]]></dc:creator><pubDate>Tue, 18 Jan 2022 10:45:43 GMT</pubDate></item><item><title><![CDATA[Reply to Last Update (6.3.0) broke Boards on Tue, 18 Jan 2022 10:35:55 GMT]]></title><description><![CDATA[<p dir="auto">Thank you, guys.<br />
Unfortunately, it didn't fix it for me, since plugins were already enabled.</p>
<p dir="auto">Then I found this in my logs:</p>
<blockquote>
<p dir="auto">Jan 18 11:25:23 {"timestamp":"2022-01-18 10:25:23.926 Z","level":"error","msg":"Not activating plugin because diagnostics are disabled","caller":"app/plugin_api.go:928","plugin_id":"com.mattermost.nps"}</p>
</blockquote>
<p dir="auto">So I enabled diagnostics. However this was the result (not sure if its related to this update):</p>
<blockquote>
<p dir="auto">Jan 18 11:28:35 {"timestamp":"2022-01-18 10:28:35.229 Z","level":"error","msg":"Unable to activate plugin","caller":"app/plugin.go:142","plugin_id":"focalboard","error":"error initializing the DB: Dirty database version 15. Fix and force version."}</p>
</blockquote>
]]></description><link>https://forum.cloudron.io/post/41964</link><guid isPermaLink="true">https://forum.cloudron.io/post/41964</guid><dc:creator><![CDATA[mtd-sales]]></dc:creator><pubDate>Tue, 18 Jan 2022 10:35:55 GMT</pubDate></item><item><title><![CDATA[Reply to Last Update (6.3.0) broke Boards on Mon, 17 Jan 2022 18:23:30 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/nebulon" aria-label="Profile: nebulon">@<bdi>nebulon</bdi></a> ahhh makes sense. Thanks!</p>
]]></description><link>https://forum.cloudron.io/post/41951</link><guid isPermaLink="true">https://forum.cloudron.io/post/41951</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Mon, 17 Jan 2022 18:23:30 GMT</pubDate></item><item><title><![CDATA[Reply to Last Update (6.3.0) broke Boards on Mon, 17 Jan 2022 16:24:28 GMT]]></title><description><![CDATA[<p dir="auto">Ok looks like I found the issue there. By default "Plugin Mangement" is disabled in the System Console. Once "Enable Plugins" is set to true, the Boards feature is available in the top-left menu.</p>
]]></description><link>https://forum.cloudron.io/post/41944</link><guid isPermaLink="true">https://forum.cloudron.io/post/41944</guid><dc:creator><![CDATA[nebulon]]></dc:creator><pubDate>Mon, 17 Jan 2022 16:24:28 GMT</pubDate></item><item><title><![CDATA[Reply to Last Update (6.3.0) broke Boards on Mon, 17 Jan 2022 15:41:11 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/nebulon" aria-label="Profile: nebulon">@<bdi>nebulon</bdi></a> so I couldn’t find any upstream bugs reported but here is some info on what it is and how it is accessed:</p>
<p dir="auto"><a href="https://docs.mattermost.com/guides/boards.html" target="_blank" rel="noopener noreferrer nofollow ugc">https://docs.mattermost.com/guides/boards.html</a><br />
<a href="https://docs.mattermost.com/boards/accessing-boards.html" target="_blank" rel="noopener noreferrer nofollow ugc">https://docs.mattermost.com/boards/accessing-boards.html</a></p>
]]></description><link>https://forum.cloudron.io/post/41941</link><guid isPermaLink="true">https://forum.cloudron.io/post/41941</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Mon, 17 Jan 2022 15:41:11 GMT</pubDate></item><item><title><![CDATA[Reply to Last Update (6.3.0) broke Boards on Mon, 17 Jan 2022 15:16:40 GMT]]></title><description><![CDATA[<p dir="auto">Indeed the Boards feature is not tested currently with out update tests. Is there already an upstream bug report for that or does it seem like a packaging bug? I have never used Boards in Mattermost, so have to try it out first to understand what it is.</p>
]]></description><link>https://forum.cloudron.io/post/41939</link><guid isPermaLink="true">https://forum.cloudron.io/post/41939</guid><dc:creator><![CDATA[nebulon]]></dc:creator><pubDate>Mon, 17 Jan 2022 15:16:40 GMT</pubDate></item><item><title><![CDATA[Reply to Last Update (6.3.0) broke Boards on Mon, 17 Jan 2022 14:59:58 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mtd-sales" aria-label="Profile: mtd-sales">@<bdi>mtd-sales</bdi></a> same issue here</p>
]]></description><link>https://forum.cloudron.io/post/41937</link><guid isPermaLink="true">https://forum.cloudron.io/post/41937</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Mon, 17 Jan 2022 14:59:58 GMT</pubDate></item></channel></rss>