<turbo-stream action="append" target="posts_list"><template>    <div class="postbit" id="292132" data-post-id="292132">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="hubertlepicki" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/hubertlepicki/120/6822_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  hubertlepicki
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>I assumed it was a log with level <code>:warn</code> sneaking in somewhere but no, the problem is different. I am still trying to pinpoint what’s going on, but the issue disappears completely with <code>--max-cases=1</code>, and then gradually starts to show up as I increase the concurrency of tests. At <code>--max-cases=6</code> it’s almost always guaranteed to happen in my test suite.</p>
<p>Edit: I opened a bug report here: <a href="https://github.com/elixir-lang/elixir/issues/12692" class="inline-onebox" rel="noopener nofollow ugc">ExUnit.CaptureLog fails in tests on high concurrency · Issue #12692 · elixir-lang/elixir · GitHub</a> we can move conversation there</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="292132" data-batch-url="/posts/batch_likers">
                        1
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/elixir-v1-15-0-released/56584/33">Post #32</a>
	                </div>
	            </div>
              <div id="likers-container-292132" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="292132"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #32"></div>
  </section>
</div>
    <div class="postbit" id="292134" data-post-id="292134">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="Cervajz" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/Cervajz/120/40055_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  Cervajz
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Thank you for testing it.</p>
<p>I found that the issue is probably connected to fun_with_flags, specifically when <strong>runtime: false</strong> is used. It works with Elixir 1.14.5-otp-26.</p>
<p>I was able to replicate a minimal app that causes the issue:</p>
<pre data-code-wrap="shell"><code class="lang-shell">mix new ek --sup --module EK
</code></pre>
<p>and then use the following mix.exs as is:</p>
<pre data-code-wrap="elixir"><code class="lang-elixir">defmodule EK.MixProject do
  use Mix.Project

  def project do
    [
      app: :ek,
      version: "0.1.0",
      elixir: "~&gt; 1.15",
      start_permanent: Mix.env() == :prod,
      deps: deps(),
      releases: [
        ek: [
          include_erts: true,
          include_executables_for: [:unix],
          applications: [
            ek: :permanent,
            fun_with_flags: :load
          ]
        ]
      ]
    ]
  end

  # Run "mix help compile.app" to learn about applications.
  def application do
    [
      extra_applications: [:logger],
      mod: {EK.Application, []}
    ]
  end

  # Run "mix help deps" to learn about dependencies.
  defp deps do
    [
      {:ecto_sql, "~&gt; 3.6"},
      {:postgrex, "&gt;= 0.0.0"},
      {:fun_with_flags, "~&gt; 1.10.1", runtime: false}
    ]
  end
end
</code></pre>
<pre data-code-wrap="shell"><code class="lang-shell">❯ mix release ek
Generated ek app
** (Mix) Could not find application :myxql
</code></pre>
<p>I am now trying to figure out what’s wrong <img src="https://forum.elixirforum.com/images/emoji/apple/slight_smile.png?v=15" title=":slight_smile:" class="emoji" alt=":slight_smile:" loading="lazy" width="20" height="20"></p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="292134" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/elixir-v1-15-0-released/56584/34">Post #33</a>
	                </div>
	            </div>
              <div id="likers-container-292134" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="292134"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #33"></div>
  </section>
</div>
    <div class="postbit" id="292176" data-post-id="292176">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="josevalim" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/josevalim/120/1787_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  josevalim
                  </h3>
		          </div>
						
			          <div class="user-title">
									<span>Creator of Elixir</span>
			          </div>
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Can you please open up an issue with pretty much what you have here? So I don’t forget about it and then I can investigate it as soon as possible. Thank you!</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="292176" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/elixir-v1-15-0-released/56584/35">Post #34</a>
	                </div>
	            </div>
              <div id="likers-container-292176" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="292176"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #34"></div>
  </section>
</div>
    <div class="postbit" id="292181" data-post-id="292181">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="Cervajz" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/Cervajz/120/40055_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  Cervajz
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Thank you <a class="mention" href="/u/josevalim" rel="nofollow">@josevalim</a> <a href="https://github.com/elixir-lang/elixir/issues/12694" class="inline-onebox" rel="noopener nofollow ugc">v1.15.0: Unable to assemble the release - optional dependencies (applications) are missing · Issue #12694 · elixir-lang/elixir · GitHub</a></p>
<p>I was unable to determine on which side the problem might be.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="292181" data-batch-url="/posts/batch_likers">
                        1
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/elixir-v1-15-0-released/56584/36">Post #35</a>
	                </div>
	            </div>
              <div id="likers-container-292181" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="292181"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #35"></div>
  </section>
</div>
    <div class="postbit" id="292217" data-post-id="292217">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="prihandi" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/prihandi/120/6398_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  prihandi
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>I just tried the new version today.</p>
<p>First issue as other mentioned before, <code>ssl_verify_fun</code> broken and need to be updated.</p>
<p>Several surprising differences so far was formatting.</p>
<ul>
<li>mix format default <code>line_length</code> constraint becoming exactly 98 as docs said (previously it was 100 somehow), so running <code>mix format --check-formatted</code> on existing code will be failed until we reformat (if we accidentally have lines with 100 chars length).</li>
<li>typespec for anonymous function replaced with empty string by formatter, ie<pre data-code-wrap="elixir"><code class="lang-elixir">@spec proces_fn((() -&gt; term()), keyword()) :: term()
</code></pre>
will be replaced to<pre data-code-wrap="elixir"><code class="lang-elixir"> @spec proces_fn(( -&gt; term()), keyword()) :: term()
</code></pre>
Dialyzer works as expected, just feel a bit strange for me at first.</li>
<li>charlist written inside <code>'</code>  replaced with sigil <code>~c""</code> i.e <code>'word'</code> become <code>~c"word"</code></li>
</ul>
<p>I’ve checked the changelog, they’re already documented. So. no issues so far.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="292217" data-batch-url="/posts/batch_likers">
                        3
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/elixir-v1-15-0-released/56584/37">Post #36</a>
	                </div>
	            </div>
              <div id="likers-container-292217" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="292217"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #36"></div>
  </section>
</div>
    <div class="postbit" id="292227" data-post-id="292227">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="werkzeugh" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/werkzeugh/120/22721_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  werkzeugh
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Thanks for the update!</p>
<p>I have noticed a small but annoying “but”:</p>
<p>➜ does anyone else find the new behavior of reporting multiple errors per file a bit tedious?</p>
<p>I find myself scrolling around a lot now,<br>
in need to find the actual error embedded within the other warnings - as the last message is not always the actual error anymore.</p>
<p>It breaks my workflow so heavily (code reloading in Phoenix and seeing errors in the browser or doing recompile() in iex) that I reverted to 1.14 for now.</p>
<p>Is there maybe an option to re-enable the old behavior again?</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="292227" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/elixir-v1-15-0-released/56584/38">Post #37</a>
	                </div>
	            </div>
              <div id="likers-container-292227" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="292227"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #37"></div>
  </section>
</div>
    <div class="postbit" id="292228" data-post-id="292228">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="josevalim" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/josevalim/120/1787_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  josevalim
                  </h3>
		          </div>
						
			          <div class="user-title">
									<span>Creator of Elixir</span>
			          </div>
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>You should be able to see errors in the Phoenix error page. Make sure you are on latest and, if it still does not work, please let me know.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="292228" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/elixir-v1-15-0-released/56584/39">Post #38</a>
	                </div>
	            </div>
              <div id="likers-container-292228" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="292228"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #38"></div>
  </section>
</div>
    <div class="postbit" id="292236" data-post-id="292236">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="werkzeugh" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/werkzeugh/120/22721_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  werkzeugh
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>The error shows but in a different spot than before. Let me explain in detail.</p>
<p>If there are yet unsolved warnings (which one want to take care of later)<br>
it makes it hard to glance in an instance what the error is you just introduced in your code.</p>
<p></p><div class="lightbox-wrapper"><a class="lightbox" href="https://forum.elixirforum.com/uploads/default/original/3X/d/9/d95b5418e999c0fbdb640f2de720e6282afc384b.jpeg" data-download-href="https://forum.elixirforum.com/uploads/default/d95b5418e999c0fbdb640f2de720e6282afc384b" title="Browser" rel="nofollow"><img src="https://forum.elixirforum.com/uploads/default/optimized/3X/d/9/d95b5418e999c0fbdb640f2de720e6282afc384b_2_690x340.jpeg" alt="Browser" data-base62-sha1="v0Phs743kCpwWKeE1MpjJiVVuPN" width="690" height="340" srcset="https://forum.elixirforum.com/uploads/default/optimized/3X/d/9/d95b5418e999c0fbdb640f2de720e6282afc384b_2_690x340.jpeg, https://forum.elixirforum.com/uploads/default/optimized/3X/d/9/d95b5418e999c0fbdb640f2de720e6282afc384b_2_1035x510.jpeg 1.5x, https://forum.elixirforum.com/uploads/default/original/3X/d/9/d95b5418e999c0fbdb640f2de720e6282afc384b.jpeg 2x" data-dominant-color="F7F5F4"><div class="meta"><svg class="fa d-icon d-icon-far-image svg-icon" aria-hidden="true"><use href="#far-image"></use></svg><span class="filename">Browser</span><span class="informations">1200×593 59.4 KB</span><svg class="fa d-icon d-icon-discourse-expand svg-icon" aria-hidden="true"><use href="#discourse-expand"></use></svg></div></a></div><p></p>
<p>Also, in iex, this is different than before:</p>
<p></p><div class="lightbox-wrapper"><a class="lightbox" href="https://forum.elixirforum.com/uploads/default/original/3X/9/7/977ab5c0a0e452b6f545027d1ca617d70f2876b3.jpeg" data-download-href="https://forum.elixirforum.com/uploads/default/977ab5c0a0e452b6f545027d1ca617d70f2876b3" title="Terminal" rel="nofollow"><img src="https://forum.elixirforum.com/uploads/default/optimized/3X/9/7/977ab5c0a0e452b6f545027d1ca617d70f2876b3_2_690x332.jpeg" alt="Terminal" data-base62-sha1="lC30bi0qtpvpIp6stUYzLK60Xg7" width="690" height="332" srcset="https://forum.elixirforum.com/uploads/default/optimized/3X/9/7/977ab5c0a0e452b6f545027d1ca617d70f2876b3_2_690x332.jpeg, https://forum.elixirforum.com/uploads/default/optimized/3X/9/7/977ab5c0a0e452b6f545027d1ca617d70f2876b3_2_1035x498.jpeg 1.5x, https://forum.elixirforum.com/uploads/default/original/3X/9/7/977ab5c0a0e452b6f545027d1ca617d70f2876b3.jpeg 2x" data-dominant-color="242120"><div class="meta"><svg class="fa d-icon d-icon-far-image svg-icon" aria-hidden="true"><use href="#far-image"></use></svg><span class="filename">Terminal</span><span class="informations">1200×578 78.5 KB</span><svg class="fa d-icon d-icon-discourse-expand svg-icon" aria-hidden="true"><use href="#discourse-expand"></use></svg></div></a></div><p></p>
<p>The screenshots I chose have the number of warnings fit the screen, but I might have more of them.<br>
I even think I saw an error once in the middle of the list of warnings.</p>
<p>➜ for terminal &amp; browser that leads to scrolling around where the error is, which takes time and involves mousing.</p>
<ul>
<li>in iex: it would be ideal to have the warnings first, error(s) last.</li>
<li>in phoenix error pages: error(s) first, warnings after</li>
</ul>
<p>it was like this till 1.14</p>
<p>I could also live with hiding warnings in iex and Phoenix at all, as I mostly need them for elixir-ls anyway - but that seems also wrong to me.</p>
<p>I hope I don’t come around as nitpicky, but these details are important for developer experience, and error handling in elixir is known to be good.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="292236" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/elixir-v1-15-0-released/56584/40">Post #39</a>
	                </div>
	            </div>
              <div id="likers-container-292236" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="292236"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #39"></div>
  </section>
</div>
    <div class="postbit" id="292244" data-post-id="292244">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="josevalim" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/josevalim/120/1787_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  josevalim
                  </h3>
		          </div>
						
			          <div class="user-title">
									<span>Creator of Elixir</span>
			          </div>
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>That’s a consequence of parallel compilation. We indeed may have warnings from other files overlapping. We will see how to improve it, we should at least hide the shutdown message, but the new behavior is somewhat expected.</p>
<p>But also, if that is motivation to fix warnings, even better. <img src="https://forum.elixirforum.com/images/emoji/apple/slight_smile.png?v=15" title=":slight_smile:" class="emoji" alt=":slight_smile:" loading="lazy" width="20" height="20"></p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="292244" data-batch-url="/posts/batch_likers">
                        2
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/elixir-v1-15-0-released/56584/41">Post #40</a>
	                </div>
	            </div>
              <div id="likers-container-292244" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="292244"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #40"></div>
  </section>
</div>
    <div class="postbit" id="292307" data-post-id="292307">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="justincy" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/justincy/120/30965_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  justincy
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>I’m seeing this error when running dialyzer with Dialyzer v5.1 Elixir 1.15 OTP 26</p>
<pre data-code-wrap="elixir"><code class="lang-elixir">** (UndefinedFunctionError) function Dialyxir.Output.info/1 is undefined (module Dialyxir.Output is not available)
    (dialyxir 1.3.0) Dialyxir.Output.info("Finding suitable PLTs")
    (dialyxir 1.3.0) lib/mix/tasks/dialyzer.ex:172: Mix.Tasks.Dialyzer.run/1
    (mix 1.15.0) lib/mix/task.ex:447: anonymous fn/3 in Mix.Task.run_task/5
    (mix 1.15.0) lib/mix/cli.ex:92: Mix.CLI.run_task/2
</code></pre>
<p>I guess that means Dialyxir isn’t fully loaded? This was working with Elixir v1.14.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="292307" data-batch-url="/posts/batch_likers">
                        1
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/elixir-v1-15-0-released/56584/42">Post #41</a>
	                </div>
	            </div>
              <div id="likers-container-292307" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="292307"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #41"></div>
  </section>
</div>
</template></turbo-stream><turbo-stream action="replace" target="load-more-container"><template><div id="load-more-container" class="load-more-container">
    <a class="load-more-button" data-turbo-stream="true" href="/topics/56584/load_more?page=5">Load more posts (34 remaining)</a>
</div></template></turbo-stream>