forio Toggle navigation

v1.45 Release Notes

Release Date: 12/20/2016

New Features

Flow.js 0.11.0 Released

The Flow.js JavaScript library has been updated to version 0.11.0.

This update includes several new features:

  • Both the data-f-foreach and the data-f-repeat attributes now support "aliasing": You can add an alias when you initially introduce your model variable in one of these attributes, then reference the alias in templates. This can simplify your template code, and also allows you to nest HTML elements that have repeated sub-elements.

    For example:

      <ul data-f-foreach="r in Regions">
          <li>Region <%= r %>: 
              <ul data-f-foreach="s in Sales">
                  <li>Sales <%= s %></li>
              </ul>
          </li>
      </ul>

    See complete details and additional examples on the data-f-foreach page and the data-f-repeat page. You can also learn more about working with templates in Flow.js.

  • Both the variables channel and the operations channel now include a readOnly configuration option, so that you can allow using the channel for subscribing but disallow publishing. This is useful if you want to display information about the variables or operations without updating the run.

  • Internal improvements, including removing the bower dependency and upgrading the jQuery support to jQuery 3 (matching Epicenter.js 2.0 and later).

Complete release notes are available on GitHub.

Notable Bug Fixes

  • The X-AutoRestore header in the Run API was briefly not being respected. This has been corrected. This was fixed in a patch release on 12/7/2016.

  • Automatic email communication to team members regarding account status is now being sent at appropriate intervals. Contact us if you have questions or would like to be removed from these updates.

  • Other minor fixes for performance and stability.