<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <id>https://almin.github.io/blog</id>
    <title>Almin Blog</title>
    <updated>2018-08-27T06:00:00.000Z</updated>
    <generator>https://github.com/jpmonette/feed</generator>
    <link rel="alternate" href="https://almin.github.io/blog"/>
    <subtitle>The best place to stay up-to-date with the latest Almin news and events.</subtitle>
    <logo>https://almin.github.io/img/icon-highlight.png</logo>
    <rights>Copyright © 2021 Your Name or Your Company Name</rights>
    <entry>
        <title type="html"><![CDATA[Almin v0.18 – React Native compatible]]></title>
        <id>https://almin.github.io/blog/2018/08/27/almin-0.18.html</id>
        <link href="https://almin.github.io/blog/2018/08/27/almin-0.18.html"/>
        <updated>2018-08-27T06:00:00.000Z</updated>
        <summary type="html"><![CDATA[<p><a href="https://github.com/almin/almin/releases/tag/almin%400.18.0">almin@0.18.0</a> is released 🎉</p> <h2><a class="anchor" aria-hidden="true" id="summary"></a><a href="#summary" aria-hidden="true" class="hash-link"><svg class="hash-link-icon" aria-hidden="true" height="16" version="1.1" viewbox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"/></svg></a>Summary</h2> <ul> <li>Deprecate <code>context.useCase#executor</code> <ul> <li>Use <code>context.useCase#execute</code> instead of it</li> <li><a href="https://github.com/almin/migration-tools">almin/migration-tools</a> help to migrate it</li> </ul></li> <li>Work almin in React Native without installing <code>events</code> module <ul> <li>Drop to use <code>events</code> of Node.js Cor...</li></ul></li></ul>]]></summary>
        <author>
            <name>azu</name>
            <uri>https://github.com/azu</uri>
        </author>
    </entry>
    <entry>
        <title type="html"><![CDATA[Almin v0.17 – Support `context.useCase#execute` typing and new React Context]]></title>
        <id>https://almin.github.io/blog/2018/06/09/almin-0.17.html</id>
        <link href="https://almin.github.io/blog/2018/06/09/almin-0.17.html"/>
        <updated>2018-06-09T06:00:00.000Z</updated>
        <summary type="html"><![CDATA[<p><a href="https://github.com/almin/almin/releases/tag/almin%400.17.0">almin@0.17.0</a> is released 🎉</p> <h2><a class="anchor" aria-hidden="true" id="-breaking-change"></a><a href="#-breaking-change" aria-hidden="true" class="hash-link"><svg class="hash-link-icon" aria-hidden="true" height="16" version="1.1" viewbox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"/></svg></a>🔥 Breaking Change</h2> <h3><a class="anchor" aria-hidden="true" id="make-payload-abstract-class-completely"></a><a href="#make-payload-abstract-class-completely" aria-hidden="true" class="hash-link"><svg class="hash-link-icon" aria-hidden="true" height="16" version="1.1" viewbox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"/></svg></a>Make <code>Payload</code> abstract class completely</h3> <p>You can not call <code>super({ type: &quot;type&quot; })</code> in subclas of <code>Payload</code> anymore. <code>Payload</code> does not accept arguments.</p> <p>New <code>Payload</code> is an <code>abstract class</code>.</p> <pre><code class="hljs css language-ts"><span class="hljs-keyword">export</span> <span class="hljs-keyword">abstract...</span></code></pre>]]></summary>
        <author>
            <name>azu</name>
            <uri>https://github.com/azu</uri>
        </author>
    </entry>
    <entry>
        <title type="html"><![CDATA[New Website]]></title>
        <id>https://almin.github.io/blog/2017/12/10/new-website.html</id>
        <link href="https://almin.github.io/blog/2017/12/10/new-website.html"/>
        <updated>2017-12-10T06:00:00.000Z</updated>
        <summary type="html"><![CDATA[<p>Almin's website move from <a href="https://github.com/GitbookIO/gitbook">GitBook</a> to <a href="https://docusaurus.io/" title="Docusaurus · Easy to Maintain Open Source Documentation Websites">Docusaurus</a>.</p> <p><a href="https://docusaurus.io/">Docusaurus</a> optimize to maintain Open Source Documentation Websites.</p> ]]></summary>
        <author>
            <name>azu</name>
            <uri>https://github.com/azu</uri>
        </author>
    </entry>
</feed>