resourcerer v0.10.0 Release Notes

Release Date: 2020-12-07 // over 3 years ago
  • โž• Adds support for modularized Schmackbone while also modularizing itself. Everything now exported from the top-level index.js file, including all helper modules. ie:

    // beforeimport ModelCache from 'resourcerer/model-cache';import \* as request from 'resourcerer/request';import {hasLoaded} from 'resourcerer/utils';// afterimport {hasLoaded, ModelCache, request} from 'resourcerer';
    

Previous changes from v0.9.0

  • ๐Ÿš€ This release makes a couple changes to withResources:

    โšก๏ธ it now utilizes componentDidUpdate to handle its resource fetching instead of UNSAFE_componentWillReceiveProps, to bring it in line with the direction React is heading in

    ๐Ÿšš the deprecated resource config option fields has been removed.