resourcerer v0.10.0 Release Notes
Release Date: 2020-12-07 // about 4 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 ofUNSAFE_componentWillReceiveProps
, to bring it in line with the direction React is heading in๐ the deprecated resource config option
fields
has been removed.