All Versions
29
Latest Version
Avg Release Cycle
17 days
Latest Release
1434 days ago

Changelog History
Page 2

  • v0.7.1 Changes

    May 27, 2020

    ๐Ÿ›  Fixes long-standing collection listening issue by listening on update and reset events for collections

  • v0.7.0 Changes

    May 01, 2020
    • โž• Adds support for Schmackbone 1.5, which uses Promise interfaces for its requests

    before:

    onClickSaveButton() {this.setState({isSaving: true});// any other mounted component in the application listening to this model or its collection// will get re-rendered with the updated name as soon as this is calledthis.props.userTodoModel.save({name: 'Giving This Todo A New Name}, { success: () =\> notify('Todo save succeeded!'),error: () =\> notify('Todo save failed :/'),complete: () =\> this.setState({isSaving: false})});
    

    after:

    onClickSaveButton() {this.setState({isSaving: true});// any other mounted component in the application listening to this model or its collection// will get re-rendered with the updated name as soon as this is calledthis.props.userTodoModel.save({name: 'Giving This Todo A New Name}).then(() =\> notify('Todo save succeeded!')).catch(() =\> notify('Todo save failed :/')).then(() =\> this.setState({isSaving: false}));}
    
  • v0.6.6 Changes

    April 27, 2020
    • ๐Ÿ“ฆ returns Model and Collection constructors directly from resourcerer package
    • provides a prefilter config hook as an alias for Schmackbone.ajaxPrefilter
  • v0.6.2 Changes

    April 25, 2020
    • ๐Ÿš‘ hasInitiallyLoaded will be initially set to true if all critical models are passed in (bypassing fetch)
  • v0.6.1

    March 26, 2020
  • v0.6.0

    March 26, 2020
  • v0.5.3 Changes

    February 27, 2020
    • โšก๏ธ batch useResources model and loading state updates for successful requests
  • v0.5.2

    February 27, 2020
  • v0.5.1

    February 16, 2020
  • v0.5.0 Changes

    February 14, 2020

    ๐Ÿ‘€ See the docs for more info