-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Breaking API changes for 1.0 #195
Commits on Jun 30, 2015
-
Naming: * “Stateless Stores” are now called reducers. (#137 (comment)) * The “Redux instance” is now called “The Store”. (#137 (comment)) * The dispatcher is removed completely. (#166 (comment)) API changes: * <s>`composeStores`</s> is now `composeReducers`. * <s>`createDispatcher`</s> is gone. * <s>`createRedux`</s> is now `createStore`. * `<Provider>` now accepts `store` prop instead of <s>`redux`</s>. * The new `createStore` signature is `createStore(reducer: Function | Object, initialState: any, middlewares: Array | ({ getState, dispatch }) => Array)`. * If the first argument to `createStore` is an object, `composeReducers` is automatically applied to it. * The “smart” middleware signature changed. It now accepts an object instead of a single `getState` function. The `dispatch` function lets you “recurse” the middleware chain and is useful for async: #113 (comment). Correctness changes: * The `dispatch` provided by the default thunk middleware now walks the whole middleware chain. * It is enforced now that raw Actions at the end of the middleware chain have to be plain objects. * Nested dispatches are now handled gracefully. (#110) Internal changes: * The object in React context is renamed from <s>`redux`</s> to `store`. * Some tests are rewritten for clarity, focus and edge cases. * Redux in examples is now aliased to the source code for easier work on master.
1Configuration menu - View commit details
-
Copy full SHA for e426039 - Browse repository at this point
Copy the full SHA e426039View commit details -
Configuration menu - View commit details
-
Copy full SHA for 34d90b9 - Browse repository at this point
Copy the full SHA 34d90b9View commit details
Commits on Jul 1, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 8c8e429 - Browse repository at this point
Copy the full SHA 8c8e429View commit details -
Merge pull request #201 from iamdustan/breaking-changes-s-atom-store
Breaking changes: s/atom/store
Configuration menu - View commit details
-
Copy full SHA for 72aa974 - Browse repository at this point
Copy the full SHA 72aa974View commit details -
Configuration menu - View commit details
-
Copy full SHA for 667d8f5 - Browse repository at this point
Copy the full SHA 667d8f5View commit details -
Merge pull request #200 from iamdustan/breaking-changes-test-id-incre…
…menter Modify test case ID generation for reducer changing
Configuration menu - View commit details
-
Copy full SHA for 069d641 - Browse repository at this point
Copy the full SHA 069d641View commit details
Commits on Jul 4, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 6a2730d - Browse repository at this point
Copy the full SHA 6a2730dView commit details -
Fix composeMiddleware and move back into separate module
Discovered a subtle and confounding bug with composeMiddleware where it only works if dispatch is the last argument. It did not combine multiple middlewares into a single middlewares as advertised; it only combined multiple middlewares with dispatch to create a new dispatch. This didn't come up earlier because the codebase never happened to use it in the former way. This commit fixes the issue and adds a test for it.
Configuration menu - View commit details
-
Copy full SHA for 9a1a0cd - Browse repository at this point
Copy the full SHA 9a1a0cdView commit details -
Configuration menu - View commit details
-
Copy full SHA for b72f909 - Browse repository at this point
Copy the full SHA b72f909View commit details
Commits on Jul 8, 2015
-
Throw error on undefined value from reducer function
taylorhakes committedJul 8, 2015 Configuration menu - View commit details
-
Copy full SHA for b8e7e1e - Browse repository at this point
Copy the full SHA b8e7e1eView commit details -
Configuration menu - View commit details
-
Copy full SHA for c6312df - Browse repository at this point
Copy the full SHA c6312dfView commit details -
Merge remote-tracking branch 'taylorhakes/compose-reducer-undefined' …
…into breaking-changes-1.0
Configuration menu - View commit details
-
Copy full SHA for 97d90d0 - Browse repository at this point
Copy the full SHA 97d90d0View commit details -
Configuration menu - View commit details
-
Copy full SHA for de685de - Browse repository at this point
Copy the full SHA de685deView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1791e2a - Browse repository at this point
Copy the full SHA 1791e2aView commit details -
2
Configuration menu - View commit details
-
Copy full SHA for 039c30f - Browse repository at this point
Copy the full SHA 039c30fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7245b58 - Browse repository at this point
Copy the full SHA 7245b58View commit details -
Configuration menu - View commit details
-
Copy full SHA for e621c79 - Browse repository at this point
Copy the full SHA e621c79View commit details
Commits on Jul 9, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 152c886 - Browse repository at this point
Copy the full SHA 152c886View commit details -
Configuration menu - View commit details
-
Copy full SHA for 406ca62 - Browse repository at this point
Copy the full SHA 406ca62View commit details -
Added test for shallowEqualScalar in connect decorator
taylorhakes committedJul 9, 2015 Configuration menu - View commit details
-
Copy full SHA for 038cd25 - Browse repository at this point
Copy the full SHA 038cd25View commit details -
Merge pull request #236 from taylorhakes/shallow-equal-scalar-test
Added test for shallowEqualScalar in connect decorator
Configuration menu - View commit details
-
Copy full SHA for 5d5dbcc - Browse repository at this point
Copy the full SHA 5d5dbccView commit details
Commits on Jul 10, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 4c68696 - Browse repository at this point
Copy the full SHA 4c68696View commit details -
Configuration menu - View commit details
-
Copy full SHA for e854617 - Browse repository at this point
Copy the full SHA e854617View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0daeec9 - Browse repository at this point
Copy the full SHA 0daeec9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 51f798c - Browse repository at this point
Copy the full SHA 51f798cView commit details
Commits on Jul 11, 2015
-
Configuration menu - View commit details
-
Copy full SHA for c46494b - Browse repository at this point
Copy the full SHA c46494bView commit details -
Configuration menu - View commit details
-
Copy full SHA for ab347bf - Browse repository at this point
Copy the full SHA ab347bfView commit details
Commits on Jul 12, 2015
-
Configuration menu - View commit details
-
Copy full SHA for a38e4ad - Browse repository at this point
Copy the full SHA a38e4adView commit details -
Merge pull request #250 from jquense/fix-middleware-dispatch
Dispatch sends action through entire middleware chain
Configuration menu - View commit details
-
Copy full SHA for c80a77a - Browse repository at this point
Copy the full SHA c80a77aView commit details -
Configuration menu - View commit details
-
Copy full SHA for dc44972 - Browse repository at this point
Copy the full SHA dc44972View commit details -
Merge pull request #249 from gaearon/remove-react
Remove React-specific code in favor of gaearon/redux-react
Configuration menu - View commit details
-
Copy full SHA for 66ec814 - Browse repository at this point
Copy the full SHA 66ec814View commit details -
Configuration menu - View commit details
-
Copy full SHA for f7e92d9 - Browse repository at this point
Copy the full SHA f7e92d9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 18aceee - Browse repository at this point
Copy the full SHA 18aceeeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0b5207f - Browse repository at this point
Copy the full SHA 0b5207fView commit details -
Merge pull request #256 from gaearon/remove-thunk-middleware
Remove thunk middleware from the core
Configuration menu - View commit details
-
Copy full SHA for 60b2119 - Browse repository at this point
Copy the full SHA 60b2119View commit details -
Configuration menu - View commit details
-
Copy full SHA for 650f002 - Browse repository at this point
Copy the full SHA 650f002View commit details -
Merge pull request #257 from gaearon/combine-reducers-explicitly
Remove combineReducers shortcut in favor of an explicit call
Configuration menu - View commit details
-
Copy full SHA for 6fe0625 - Browse repository at this point
Copy the full SHA 6fe0625View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5eaa7b6 - Browse repository at this point
Copy the full SHA 5eaa7b6View commit details
Commits on Jul 13, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 749b4ab - Browse repository at this point
Copy the full SHA 749b4abView commit details -
Configuration menu - View commit details
-
Copy full SHA for e3ec501 - Browse repository at this point
Copy the full SHA e3ec501View commit details -
Configuration menu - View commit details
-
Copy full SHA for afd4260 - Browse repository at this point
Copy the full SHA afd4260View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9045a0c - Browse repository at this point
Copy the full SHA 9045a0cView commit details -
Merge pull request #259 from gaearon/forbid-handling-private-actions
Handling private actions is an anti-pattern. Enforce it. (Fixes #186)
Configuration menu - View commit details
-
Copy full SHA for 99a9cee - Browse repository at this point
Copy the full SHA 99a9ceeView commit details -
Configuration menu - View commit details
-
Copy full SHA for e39afbe - Browse repository at this point
Copy the full SHA e39afbeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2aa83ff - Browse repository at this point
Copy the full SHA 2aa83ffView commit details
Commits on Jul 14, 2015
-
Configuration menu - View commit details
-
Copy full SHA for baede74 - Browse repository at this point
Copy the full SHA baede74View commit details -
Configuration menu - View commit details
-
Copy full SHA for b4766b3 - Browse repository at this point
Copy the full SHA b4766b3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3481fdb - Browse repository at this point
Copy the full SHA 3481fdbView commit details
Commits on Jul 15, 2015
-
Merge pull request #262 from tappleby/bugfix-apply-middleware-single-…
…compose Compose applyMiddleware dispatch once.
Configuration menu - View commit details
-
Copy full SHA for 2b4d416 - Browse repository at this point
Copy the full SHA 2b4d416View commit details
Commits on Jul 19, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 0623cf4 - Browse repository at this point
Copy the full SHA 0623cf4View commit details -
Configuration menu - View commit details
-
Copy full SHA for eaa20fa - Browse repository at this point
Copy the full SHA eaa20faView commit details -
Configuration menu - View commit details
-
Copy full SHA for ac8a184 - Browse repository at this point
Copy the full SHA ac8a184View commit details -
Merge pull request #254 from gaearon/flow-types-take-3
Flow types, take 3 (actually 4)
Configuration menu - View commit details
-
Copy full SHA for 98ab1de - Browse repository at this point
Copy the full SHA 98ab1deView commit details
Commits on Jul 21, 2015
-
Configuration menu - View commit details
-
Copy full SHA for e355ccd - Browse repository at this point
Copy the full SHA e355ccdView commit details -
Configuration menu - View commit details
-
Copy full SHA for a4b8aff - Browse repository at this point
Copy the full SHA a4b8affView commit details
Commits on Jul 22, 2015
-
Allow es6 symbols to be used as action types
- Symbols are a good way to ensure uniqueness of your action types - In Chrome and Firefox, a symbol inside of a template literal throws an error. Making the string conversion explicit gets rid of the error
Configuration menu - View commit details
-
Copy full SHA for 7ad209a - Browse repository at this point
Copy the full SHA 7ad209aView commit details -
Configuration menu - View commit details
-
Copy full SHA for adbfbdd - Browse repository at this point
Copy the full SHA adbfbddView commit details -
Configuration menu - View commit details
-
Copy full SHA for 55776ad - Browse repository at this point
Copy the full SHA 55776adView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3d252c3 - Browse repository at this point
Copy the full SHA 3d252c3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 91acd42 - Browse repository at this point
Copy the full SHA 91acd42View commit details -
Configuration menu - View commit details
-
Copy full SHA for ed3edea - Browse repository at this point
Copy the full SHA ed3edeaView commit details -
Configuration menu - View commit details
-
Copy full SHA for b51338f - Browse repository at this point
Copy the full SHA b51338fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9321dea - Browse repository at this point
Copy the full SHA 9321deaView commit details -
Merge pull request #299 from gaearon/remove-flow
Remove Flow types for now
Configuration menu - View commit details
-
Copy full SHA for 305f142 - Browse repository at this point
Copy the full SHA 305f142View commit details -
Configuration menu - View commit details
-
Copy full SHA for 100ce3c - Browse repository at this point
Copy the full SHA 100ce3cView commit details -
Configuration menu - View commit details
-
Copy full SHA for af474ba - Browse repository at this point
Copy the full SHA af474baView commit details -
Merge pull request #295 from jhewlett/breaking-changes-1.0
Allow es6 symbols to be used as action types
Configuration menu - View commit details
-
Copy full SHA for 8bb94c7 - Browse repository at this point
Copy the full SHA 8bb94c7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 27752e6 - Browse repository at this point
Copy the full SHA 27752e6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 259c6bf - Browse repository at this point
Copy the full SHA 259c6bfView commit details -
Merge pull request #300 from gaearon/jsdoc
Add JSDoc annotations to the public API
Configuration menu - View commit details
-
Copy full SHA for 7418203 - Browse repository at this point
Copy the full SHA 7418203View commit details
Commits on Jul 23, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 941a2e1 - Browse repository at this point
Copy the full SHA 941a2e1View commit details -
fix isPlainObject, is comparing object stringified object constructor…
…s instead of prototypes (did not work from iframes because Object in iframe is not the same as in parent)
Configuration menu - View commit details
-
Copy full SHA for be4b589 - Browse repository at this point
Copy the full SHA be4b589View commit details -
add contextify to simulate another realm (context) and test case wher…
…e plain object from another realm is checked
Configuration menu - View commit details
-
Copy full SHA for 0c87ead - Browse repository at this point
Copy the full SHA 0c87eadView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5734779 - Browse repository at this point
Copy the full SHA 5734779View commit details -
Merge pull request #306 from michalkvasnicak/is-plain-object-fix
fix isPlainObject
Configuration menu - View commit details
-
Copy full SHA for 0fc5802 - Browse repository at this point
Copy the full SHA 0fc5802View commit details
Commits on Jul 29, 2015
-
Allow
bindActionCreators
to be used with function as actionCreatorWith this change you can use `bindActionCreators` to either bind a object of actionCreator functions to dispatch or only a single actionCreator directly. import { bindActionCreators } from 'redux'; import { addTodo } from './actions/todoActions'; const boundAddTodo = bindActionCreators(addTodo, dispatch); boundAddTodo('Hello');
Configuration menu - View commit details
-
Copy full SHA for d92f08e - Browse repository at this point
Copy the full SHA d92f08eView commit details -
Merge pull request #352 from michaelcontento/function-support-for-bin…
…dActionCreators Allow `bindActionCreators` to be used with function as actionCreator
Configuration menu - View commit details
-
Copy full SHA for 3cfdd73 - Browse repository at this point
Copy the full SHA 3cfdd73View commit details
Commits on Jul 30, 2015
-
Configuration menu - View commit details
-
Copy full SHA for fca60c8 - Browse repository at this point
Copy the full SHA fca60c8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9a1ad4f - Browse repository at this point
Copy the full SHA 9a1ad4fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3dfbb1f - Browse repository at this point
Copy the full SHA 3dfbb1fView commit details -
Merge pull request #373 from rwillrich/remove-es7-from-examples
Remove ES7 from examples
Configuration menu - View commit details
-
Copy full SHA for 5e87896 - Browse repository at this point
Copy the full SHA 5e87896View commit details -
Throw error when trying to dispatch from action
Dan Schuman committedJul 30, 2015 Configuration menu - View commit details
-
Copy full SHA for 848bb8e - Browse repository at this point
Copy the full SHA 848bb8eView commit details -
Merge pull request #372 from quicksnap/no_dispatch_in_actions
Forbid dispatch from inside a reducer
Configuration menu - View commit details
-
Copy full SHA for de301ce - Browse repository at this point
Copy the full SHA de301ceView commit details
Commits on Jul 31, 2015
-
Add script to help travis build all examples
Dan Schuman committedJul 31, 2015 Configuration menu - View commit details
-
Copy full SHA for 1879d00 - Browse repository at this point
Copy the full SHA 1879d00View commit details -
Merge pull request #375 from quicksnap/example_build_tools
Add script to help travis build all examples
Configuration menu - View commit details
-
Copy full SHA for 4358fc4 - Browse repository at this point
Copy the full SHA 4358fc4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 46276c0 - Browse repository at this point
Copy the full SHA 46276c0View commit details -
Merge pull request #379 from gaearon/fix-windows-build
Fix Windows build
Configuration menu - View commit details
-
Copy full SHA for 94d0944 - Browse repository at this point
Copy the full SHA 94d0944View commit details -
Configuration menu - View commit details
-
Copy full SHA for b619853 - Browse repository at this point
Copy the full SHA b619853View commit details -
Configuration menu - View commit details
-
Copy full SHA for a467c41 - Browse repository at this point
Copy the full SHA a467c41View commit details -
Configuration menu - View commit details
-
Copy full SHA for fbf06c5 - Browse repository at this point
Copy the full SHA fbf06c5View commit details
Commits on Aug 3, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 8cbd405 - Browse repository at this point
Copy the full SHA 8cbd405View commit details
Commits on Aug 4, 2015
-
Merge pull request #380 from sambs/example-tests-rebased
tests for the examples
Configuration menu - View commit details
-
Copy full SHA for 2a08009 - Browse repository at this point
Copy the full SHA 2a08009View commit details
Commits on Aug 5, 2015
-
Configuration menu - View commit details
-
Copy full SHA for c1b8acd - Browse repository at this point
Copy the full SHA c1b8acdView commit details
Commits on Aug 6, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 4efcfcb - Browse repository at this point
Copy the full SHA 4efcfcbView commit details -
add jsnext:main in package.json for next gen bundling
clintwood (Office) committedAug 6, 2015 Configuration menu - View commit details
-
Copy full SHA for ae1c2e2 - Browse repository at this point
Copy the full SHA ae1c2e2View commit details -
Add invariant errors for bindActionCreator.
Jack Callister committedAug 6, 2015 Configuration menu - View commit details
-
Copy full SHA for 22ca4be - Browse repository at this point
Copy the full SHA 22ca4beView commit details -
Configuration menu - View commit details
-
Copy full SHA for f614bf6 - Browse repository at this point
Copy the full SHA f614bf6View commit details -
Merge pull request #412 from clintwood/jsnext
add jsnext:main in package.json for next gen bundling
Configuration menu - View commit details
-
Copy full SHA for 9985ac8 - Browse repository at this point
Copy the full SHA 9985ac8View commit details -
Modify package.json description
Dan Schuman committedAug 6, 2015 Configuration menu - View commit details
-
Copy full SHA for 2798abb - Browse repository at this point
Copy the full SHA 2798abbView commit details -
Merge pull request #415 from quicksnap/breaking-changes-1.0
Modify package.json description
Configuration menu - View commit details
-
Copy full SHA for 199a5bc - Browse repository at this point
Copy the full SHA 199a5bcView commit details
Commits on Aug 7, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 573a84b - Browse repository at this point
Copy the full SHA 573a84bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 09b3b1d - Browse repository at this point
Copy the full SHA 09b3b1dView commit details
Commits on Aug 9, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 6e8127c - Browse repository at this point
Copy the full SHA 6e8127cView commit details -
Merge pull request #439 from kevinold/fix-spawnSync
adjust scoping for opts to avoid error with spawnSync
Configuration menu - View commit details
-
Copy full SHA for dc922d6 - Browse repository at this point
Copy the full SHA dc922d6View commit details
Commits on Aug 10, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 79f90bc - Browse repository at this point
Copy the full SHA 79f90bcView commit details -
Configuration menu - View commit details
-
Copy full SHA for 06134f7 - Browse repository at this point
Copy the full SHA 06134f7View commit details -
Brian Hartz committed
Aug 10, 2015 Configuration menu - View commit details
-
Copy full SHA for 9db0c57 - Browse repository at this point
Copy the full SHA 9db0c57View commit details -
Configuration menu - View commit details
-
Copy full SHA for 27fa07c - Browse repository at this point
Copy the full SHA 27fa07cView commit details -
Merge pull request #453 from hartzis/update-counter-example
Update counter example to recent react-redux
Configuration menu - View commit details
-
Copy full SHA for f0132a0 - Browse repository at this point
Copy the full SHA f0132a0View commit details
Commits on Aug 11, 2015
-
Fixes #461 - Copy listeners array, so subscribes can't affect the loop.
Unsubscribing during a dispatch would change the listeners array. However that causes the next listener not to fire.
Configuration menu - View commit details
-
Copy full SHA for 2ddfd71 - Browse repository at this point
Copy the full SHA 2ddfd71View commit details -
Merge pull request #462 from arian/fix-461-unsubscribing-listeners
Fixes #461 - Copy listeners array, so subscribes can't affect the loop.
Configuration menu - View commit details
-
Copy full SHA for d594232 - Browse repository at this point
Copy the full SHA d594232View commit details -
7
Configuration menu - View commit details
-
Copy full SHA for b94f9a8 - Browse repository at this point
Copy the full SHA b94f9a8View commit details -
Configuration menu - View commit details
-
Copy full SHA for df01a1f - Browse repository at this point
Copy the full SHA df01a1fView commit details -
Merge pull request #460 from gaearon/add-async-example
Add “real world” example
Configuration menu - View commit details
-
Copy full SHA for 41e609d - Browse repository at this point
Copy the full SHA 41e609dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6446dfd - Browse repository at this point
Copy the full SHA 6446dfdView commit details
Commits on Aug 12, 2015
-
remove spread from api middleware
Daniel Martinez committedAug 12, 2015 Configuration menu - View commit details
-
Copy full SHA for dd2de74 - Browse repository at this point
Copy the full SHA dd2de74View commit details -
Daniel Martinez committed
Aug 12, 2015 Configuration menu - View commit details
-
Copy full SHA for 2ea278e - Browse repository at this point
Copy the full SHA 2ea278eView commit details -
remove usage of
static
and extend from React.ComponentDaniel Martinez committedAug 12, 2015 Configuration menu - View commit details
-
Copy full SHA for 8b5298c - Browse repository at this point
Copy the full SHA 8b5298cView commit details -
Merge pull request #466 from danmartinez101/use-es6-in-real-world-exa…
…mple Update real world example to remove ES7
Configuration menu - View commit details
-
Copy full SHA for 889a7be - Browse repository at this point
Copy the full SHA 889a7beView commit details -
Fix syntax error in Object.assign in real world example
Niklas Boström committedAug 12, 2015 Configuration menu - View commit details
-
Copy full SHA for 4fba03f - Browse repository at this point
Copy the full SHA 4fba03fView commit details -
Merge pull request #467 from nbostrom/fix-object-assign-in-example
Fix syntax error in Object.assign in real world example
Configuration menu - View commit details
-
Copy full SHA for 30122f6 - Browse repository at this point
Copy the full SHA 30122f6View commit details -
Real World Example - Fix typo in API middleware error string
This changes 'on' to 'one' in the string 'Specify on of the exported Schemas.'
Configuration menu - View commit details
-
Copy full SHA for bf349bb - Browse repository at this point
Copy the full SHA bf349bbView commit details -
Merge pull request #471 from HPate-Riptide/patch-1
Real World Example - Fix typo in API middleware error string
Configuration menu - View commit details
-
Copy full SHA for 8b1c075 - Browse repository at this point
Copy the full SHA 8b1c075View commit details -
Configuration menu - View commit details
-
Copy full SHA for b9bb28f - Browse repository at this point
Copy the full SHA b9bb28fView commit details -
Configuration menu - View commit details
-
Copy full SHA for ed33ec1 - Browse repository at this point
Copy the full SHA ed33ec1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4de6324 - Browse repository at this point
Copy the full SHA 4de6324View commit details -
Merge pull request #473 from gaearon/tweak-example-conventions
Tweak example conventions
Configuration menu - View commit details
-
Copy full SHA for f179ba8 - Browse repository at this point
Copy the full SHA f179ba8View commit details
Commits on Aug 13, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 01c3cf0 - Browse repository at this point
Copy the full SHA 01c3cf0View commit details -
Merge pull request #474 from gaearon/add-async-example-2
Add a simple async example
Configuration menu - View commit details
-
Copy full SHA for fd7f884 - Browse repository at this point
Copy the full SHA fd7f884View commit details