Kvoti / redux-rest

Automatically create Redux action constants, action creators, and reducers for your REST API
MIT License
180 stars 11 forks source link

Please update to Redux 1.0 API #1

Closed gaearon closed 9 years ago

gaearon commented 9 years ago

The code seems to be using Redux 0.12 but we are releasing 1.0 very soon with a slightly different API. Please update to 1.0 RC so you can transition smoothly.

mallison commented 9 years ago

Thanks. Updating now. Oh I see I need to write/use a middleware now to handle async. Will investigate.

mallison commented 9 years ago

Nice, didn't have to change my code other than to bundle a tiny middleware (copied from redux docs) to handle action functions that launch async requests.

Updated README to reflect redux 1.0.0-rc API.

Added a test to make sure things actually work with redux.