Table Aggregation error in Jmix 1.3.1

Jmix 1.3.1:
I am receiving the following error when using aggregation in a table container:

IllegalStateException: Table container is not AggregationContainer: class com.vaadin.v7.data.util.IndexedContainer

My code is as follows:

                <table id="itemsTable" dataContainer="itemsDc" width="100%" height="100%"
                       aggregationStyle="BOTTOM" reorderingAllowed="false" emptyStateMessage="No items exist"
                       aggregatable="true">
                    <actions>
                        <action id="remove" type="remove"/>
                    </actions>
                    <columns>
                        <column id="customerNo" collapsed="true"/>
                        <column id="customer"/>
                        <column id="orderNo"/>
                        <column id="invoiceNo"/>
                        <column id="invoiceSeqNo" collapsed="true"/>

                        <column id="invoiceValue" align="RIGHT">
                            <aggregation type="SUM"/>
                        </column>
                        <column id="invoiceDate"/>

                        <column id="inputField" align="CENTER"/>
                        <column id="comments" collapsed="true"/>
                        <column id="createdBy" collapsed="true"/>
                        <column id="createdDate" collapsed="true"/>
                    </columns>
                    <simplePagination/>
                    <buttonsPanel>
                        <button action="itemsTable.remove"/>
                    </buttonsPanel>
                </table>

My code was working before I upgraded to Jmix 1.3.1
Is there a bug ?

Hi,

This is a known issue and will be fixed in the very next bug fix release.

Gleb