Skip to content
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

Merged
merged 129 commits into from
Aug 14, 2015
Merged

Breaking API changes for 1.0 #195

merged 129 commits into from
Aug 14, 2015

Commits on Jun 30, 2015

  1. Breaking API changes for 1.0

    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.
    gaearon committed Jun 30, 2015
    1 Configuration menu
    Copy the full SHA
    e426039 View commit details
    Browse the repository at this point in the history
  2. Remove unnecessary changes

    gaearon committed Jun 30, 2015
    Configuration menu
    Copy the full SHA
    34d90b9 View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2015

  1. Configuration menu
    Copy the full SHA
    8c8e429 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #201 from iamdustan/breaking-changes-s-atom-store

    Breaking changes: s/atom/store
    gaearon committed Jul 1, 2015
    Configuration menu
    Copy the full SHA
    72aa974 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    667d8f5 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #200 from iamdustan/breaking-changes-test-id-incre…

    …menter
    
    Modify test case ID generation for reducer changing
    gaearon committed Jul 1, 2015
    Configuration menu
    Copy the full SHA
    069d641 View commit details
    Browse the repository at this point in the history

Commits on Jul 4, 2015

  1. Configuration menu
    Copy the full SHA
    6a2730d View commit details
    Browse the repository at this point in the history
  2. 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.
    acdlite committed Jul 4, 2015
    Configuration menu
    Copy the full SHA
    9a1a0cd View commit details
    Browse the repository at this point in the history
  3. Fix linting

    acdlite committed Jul 4, 2015
    Configuration menu
    Copy the full SHA
    b72f909 View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2015

  1. Throw error on undefined value from reducer function

    taylorhakes committed Jul 8, 2015
    Configuration menu
    Copy the full SHA
    b8e7e1e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c6312df View commit details
    Browse the repository at this point in the history
  3. Merge remote-tracking branch 'taylorhakes/compose-reducer-undefined' …

    …into breaking-changes-1.0
    gaearon committed Jul 8, 2015
    Configuration menu
    Copy the full SHA
    97d90d0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    de685de View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1791e2a View commit details
    Browse the repository at this point in the history
  6. 2 Configuration menu
    Copy the full SHA
    039c30f View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    7245b58 View commit details
    Browse the repository at this point in the history
  8. Fix counter example

    gaearon committed Jul 8, 2015
    Configuration menu
    Copy the full SHA
    e621c79 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2015

  1. Fix lint

    gaearon committed Jul 9, 2015
    Configuration menu
    Copy the full SHA
    152c886 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    406ca62 View commit details
    Browse the repository at this point in the history
  3. Added test for shallowEqualScalar in connect decorator

    taylorhakes committed Jul 9, 2015
    Configuration menu
    Copy the full SHA
    038cd25 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #236 from taylorhakes/shallow-equal-scalar-test

    Added test for shallowEqualScalar in connect decorator
    gaearon committed Jul 9, 2015
    Configuration menu
    Copy the full SHA
    5d5dbcc View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2015

  1. Add Flow type annotations

    acdlite committed Jul 10, 2015
    Configuration menu
    Copy the full SHA
    4c68696 View commit details
    Browse the repository at this point in the history
  2. Fix linting

    acdlite committed Jul 10, 2015
    Configuration menu
    Copy the full SHA
    e854617 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0daeec9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    51f798c View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2015

  1. Configuration menu
    Copy the full SHA
    c46494b View commit details
    Browse the repository at this point in the history
  2. Bump the versions

    gaearon committed Jul 11, 2015
    Configuration menu
    Copy the full SHA
    ab347bf View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2015

  1. Configuration menu
    Copy the full SHA
    a38e4ad View commit details
    Browse the repository at this point in the history
  2. Merge pull request #250 from jquense/fix-middleware-dispatch

    Dispatch sends action through entire middleware chain
    gaearon committed Jul 12, 2015
    Configuration menu
    Copy the full SHA
    c80a77a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    dc44972 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #249 from gaearon/remove-react

    Remove React-specific code in favor of gaearon/redux-react
    gaearon committed Jul 12, 2015
    Configuration menu
    Copy the full SHA
    66ec814 View commit details
    Browse the repository at this point in the history
  5. Merge with master

    gaearon committed Jul 12, 2015
    Configuration menu
    Copy the full SHA
    f7e92d9 View commit details
    Browse the repository at this point in the history
  6. Remove nesting from tests

    gaearon committed Jul 12, 2015
    Configuration menu
    Copy the full SHA
    18aceee View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    0b5207f View commit details
    Browse the repository at this point in the history
  8. Merge pull request #256 from gaearon/remove-thunk-middleware

    Remove thunk middleware from the core
    gaearon committed Jul 12, 2015
    Configuration menu
    Copy the full SHA
    60b2119 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    650f002 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #257 from gaearon/combine-reducers-explicitly

    Remove combineReducers shortcut in favor of an explicit call
    gaearon committed Jul 12, 2015
    Configuration menu
    Copy the full SHA
    6fe0625 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    5eaa7b6 View commit details
    Browse the repository at this point in the history

Commits on Jul 13, 2015

  1. Tweak dependencies

    gaearon committed Jul 13, 2015
    Configuration menu
    Copy the full SHA
    749b4ab View commit details
    Browse the repository at this point in the history
  2. Extract thunk

    gaearon committed Jul 13, 2015
    Configuration menu
    Copy the full SHA
    e3ec501 View commit details
    Browse the repository at this point in the history
  3. Move test files

    gaearon committed Jul 13, 2015
    Configuration menu
    Copy the full SHA
    afd4260 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9045a0c View commit details
    Browse the repository at this point in the history
  5. Merge pull request #259 from gaearon/forbid-handling-private-actions

    Handling private actions is an anti-pattern. Enforce it. (Fixes #186)
    gaearon committed Jul 13, 2015
    Configuration menu
    Copy the full SHA
    99a9cee View commit details
    Browse the repository at this point in the history
  6. 1.0.0-rc

    gaearon committed Jul 13, 2015
    Configuration menu
    Copy the full SHA
    e39afbe View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    2aa83ff View commit details
    Browse the repository at this point in the history

Commits on Jul 14, 2015

  1. Configuration menu
    Copy the full SHA
    baede74 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b4766b3 View commit details
    Browse the repository at this point in the history
  3. Use npm for tasks

    emmenko committed Jul 14, 2015
    Configuration menu
    Copy the full SHA
    3481fdb View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2015

  1. Merge pull request #262 from tappleby/bugfix-apply-middleware-single-…

    …compose
    
    Compose applyMiddleware dispatch once.
    gaearon committed Jul 15, 2015
    Configuration menu
    Copy the full SHA
    2b4d416 View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2015

  1. Configuration menu
    Copy the full SHA
    0623cf4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    eaa20fa View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ac8a184 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #254 from gaearon/flow-types-take-3

    Flow types, take 3 (actually 4)
    gaearon committed Jul 19, 2015
    Configuration menu
    Copy the full SHA
    98ab1de View commit details
    Browse the repository at this point in the history

Commits on Jul 21, 2015

  1. Configuration menu
    Copy the full SHA
    e355ccd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a4b8aff View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2015

  1. 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
    jhewlett committed Jul 22, 2015
    Configuration menu
    Copy the full SHA
    7ad209a View commit details
    Browse the repository at this point in the history
  2. Fix lint errors

    jhewlett committed Jul 22, 2015
    Configuration menu
    Copy the full SHA
    adbfbdd View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    55776ad View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3d252c3 View commit details
    Browse the repository at this point in the history
  5. Fix merge conflict

    gaearon committed Jul 22, 2015
    Configuration menu
    Copy the full SHA
    91acd42 View commit details
    Browse the repository at this point in the history
  6. Tweak build scripts

    gaearon committed Jul 22, 2015
    Configuration menu
    Copy the full SHA
    ed3edea View commit details
    Browse the repository at this point in the history
  7. Merge pull request #267 from gaearon/npm-tasks

    npm tasks
    gaearon committed Jul 22, 2015
    Configuration menu
    Copy the full SHA
    b51338f View commit details
    Browse the repository at this point in the history
  8. Remove Flow types for now

    gaearon committed Jul 22, 2015
    Configuration menu
    Copy the full SHA
    9321dea View commit details
    Browse the repository at this point in the history
  9. Merge pull request #299 from gaearon/remove-flow

    Remove Flow types for now
    gaearon committed Jul 22, 2015
    Configuration menu
    Copy the full SHA
    305f142 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    100ce3c View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    af474ba View commit details
    Browse the repository at this point in the history
  12. Merge pull request #295 from jhewlett/breaking-changes-1.0

    Allow es6 symbols to be used as action types
    gaearon committed Jul 22, 2015
    Configuration menu
    Copy the full SHA
    8bb94c7 View commit details
    Browse the repository at this point in the history
  13. Style fixup

    gaearon committed Jul 22, 2015
    Configuration menu
    Copy the full SHA
    27752e6 View commit details
    Browse the repository at this point in the history
  14. Add JSDoc annotations

    gaearon committed Jul 22, 2015
    Configuration menu
    Copy the full SHA
    259c6bf View commit details
    Browse the repository at this point in the history
  15. Merge pull request #300 from gaearon/jsdoc

    Add JSDoc annotations to the public API
    gaearon committed Jul 22, 2015
    Configuration menu
    Copy the full SHA
    7418203 View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2015

  1. Configuration menu
    Copy the full SHA
    941a2e1 View commit details
    Browse the repository at this point in the history
  2. 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)
    michalkvasnicak committed Jul 23, 2015
    Configuration menu
    Copy the full SHA
    be4b589 View commit details
    Browse the repository at this point in the history
  3. add contextify to simulate another realm (context) and test case wher…

    …e plain object from another realm is checked
    michalkvasnicak committed Jul 23, 2015
    Configuration menu
    Copy the full SHA
    0c87ead View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5734779 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #306 from michalkvasnicak/is-plain-object-fix

    fix isPlainObject
    gaearon committed Jul 23, 2015
    Configuration menu
    Copy the full SHA
    0fc5802 View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2015

  1. Allow bindActionCreators to be used with function as actionCreator

    With 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');
    michaelcontento committed Jul 29, 2015
    Configuration menu
    Copy the full SHA
    d92f08e View commit details
    Browse the repository at this point in the history
  2. Merge pull request #352 from michaelcontento/function-support-for-bin…

    …dActionCreators
    
    Allow `bindActionCreators` to be used with function as actionCreator
    gaearon committed Jul 29, 2015
    Configuration menu
    Copy the full SHA
    3cfdd73 View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2015

  1. Configuration menu
    Copy the full SHA
    fca60c8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9a1ad4f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3dfbb1f View commit details
    Browse the repository at this point in the history
  4. Merge pull request #373 from rwillrich/remove-es7-from-examples

    Remove ES7 from examples
    gaearon committed Jul 30, 2015
    Configuration menu
    Copy the full SHA
    5e87896 View commit details
    Browse the repository at this point in the history
  5. Throw error when trying to dispatch from action

    Dan Schuman committed Jul 30, 2015
    Configuration menu
    Copy the full SHA
    848bb8e View commit details
    Browse the repository at this point in the history
  6. Merge pull request #372 from quicksnap/no_dispatch_in_actions

    Forbid dispatch from inside a reducer
    gaearon committed Jul 30, 2015
    Configuration menu
    Copy the full SHA
    de301ce View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2015

  1. Add script to help travis build all examples

    Dan Schuman committed Jul 31, 2015
    Configuration menu
    Copy the full SHA
    1879d00 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #375 from quicksnap/example_build_tools

    Add script to help travis build all examples
    gaearon committed Jul 31, 2015
    Configuration menu
    Copy the full SHA
    4358fc4 View commit details
    Browse the repository at this point in the history
  3. Fix Windows build

    gaearon committed Jul 31, 2015
    Configuration menu
    Copy the full SHA
    46276c0 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #379 from gaearon/fix-windows-build

    Fix Windows build
    gaearon committed Jul 31, 2015
    Configuration menu
    Copy the full SHA
    94d0944 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b619853 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    a467c41 View commit details
    Browse the repository at this point in the history
  7. tests for the examples

    sambs committed Jul 31, 2015
    Configuration menu
    Copy the full SHA
    fbf06c5 View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2015

  1. Configuration menu
    Copy the full SHA
    8cbd405 View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2015

  1. Merge pull request #380 from sambs/example-tests-rebased

    tests for the examples
    gaearon committed Aug 4, 2015
    Configuration menu
    Copy the full SHA
    2a08009 View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2015

  1. Configuration menu
    Copy the full SHA
    c1b8acd View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2015

  1. Configuration menu
    Copy the full SHA
    4efcfcb View commit details
    Browse the repository at this point in the history
  2. add jsnext:main in package.json for next gen bundling

    clintwood (Office) committed Aug 6, 2015
    Configuration menu
    Copy the full SHA
    ae1c2e2 View commit details
    Browse the repository at this point in the history
  3. Add invariant errors for bindActionCreator.

    Jack Callister committed Aug 6, 2015
    Configuration menu
    Copy the full SHA
    22ca4be View commit details
    Browse the repository at this point in the history
  4. Merge pull request #411 from jarsbe/bind-warning

    Bind warning
    gaearon committed Aug 6, 2015
    Configuration menu
    Copy the full SHA
    f614bf6 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #412 from clintwood/jsnext

    add jsnext:main in package.json for next gen bundling
    gaearon committed Aug 6, 2015
    Configuration menu
    Copy the full SHA
    9985ac8 View commit details
    Browse the repository at this point in the history
  6. Modify package.json description

    Dan Schuman committed Aug 6, 2015
    Configuration menu
    Copy the full SHA
    2798abb View commit details
    Browse the repository at this point in the history
  7. Merge pull request #415 from quicksnap/breaking-changes-1.0

    Modify package.json description
    gaearon committed Aug 6, 2015
    Configuration menu
    Copy the full SHA
    199a5bc View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2015

  1. Update react-redux

    gaearon committed Aug 7, 2015
    Configuration menu
    Copy the full SHA
    573a84b View commit details
    Browse the repository at this point in the history
  2. Update react-redux

    gaearon committed Aug 7, 2015
    Configuration menu
    Copy the full SHA
    09b3b1d View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2015

  1. Configuration menu
    Copy the full SHA
    6e8127c View commit details
    Browse the repository at this point in the history
  2. Merge pull request #439 from kevinold/fix-spawnSync

    adjust scoping for opts to avoid error with spawnSync
    gaearon committed Aug 9, 2015
    Configuration menu
    Copy the full SHA
    dc922d6 View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2015

  1. Configuration menu
    Copy the full SHA
    79f90bc View commit details
    Browse the repository at this point in the history
  2. Add test:watch to examples

    gaearon committed Aug 10, 2015
    Configuration menu
    Copy the full SHA
    06134f7 View commit details
    Browse the repository at this point in the history
  3. update counter example

    Brian Hartz committed Aug 10, 2015
    Configuration menu
    Copy the full SHA
    9db0c57 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    27fa07c View commit details
    Browse the repository at this point in the history
  5. Merge pull request #453 from hartzis/update-counter-example

    Update counter example to recent react-redux
    gaearon committed Aug 10, 2015
    Configuration menu
    Copy the full SHA
    f0132a0 View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2015

  1. 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.
    arian committed Aug 11, 2015
    Configuration menu
    Copy the full SHA
    2ddfd71 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #462 from arian/fix-461-unsubscribing-listeners

    Fixes #461 - Copy listeners array, so subscribes can't affect the loop.
    gaearon committed Aug 11, 2015
    Configuration menu
    Copy the full SHA
    d594232 View commit details
    Browse the repository at this point in the history
  3. 7 Configuration menu
    Copy the full SHA
    b94f9a8 View commit details
    Browse the repository at this point in the history
  4. Rename packages

    gaearon committed Aug 11, 2015
    Configuration menu
    Copy the full SHA
    df01a1f View commit details
    Browse the repository at this point in the history
  5. Merge pull request #460 from gaearon/add-async-example

    Add “real world” example
    gaearon committed Aug 11, 2015
    Configuration menu
    Copy the full SHA
    41e609d View commit details
    Browse the repository at this point in the history
  6. Update index.js

    gaearon committed Aug 11, 2015
    Configuration menu
    Copy the full SHA
    6446dfd View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2015

  1. remove spread from api middleware

    Daniel Martinez committed Aug 12, 2015
    Configuration menu
    Copy the full SHA
    dd2de74 View commit details
    Browse the repository at this point in the history
  2. prefer Object.assign

    Daniel Martinez committed Aug 12, 2015
    Configuration menu
    Copy the full SHA
    2ea278e View commit details
    Browse the repository at this point in the history
  3. remove usage of static and extend from React.Component

    Daniel Martinez committed Aug 12, 2015
    Configuration menu
    Copy the full SHA
    8b5298c View commit details
    Browse the repository at this point in the history
  4. Merge pull request #466 from danmartinez101/use-es6-in-real-world-exa…

    …mple
    
    Update real world example to remove ES7
    gaearon committed Aug 12, 2015
    Configuration menu
    Copy the full SHA
    889a7be View commit details
    Browse the repository at this point in the history
  5. Fix syntax error in Object.assign in real world example

    Niklas Boström committed Aug 12, 2015
    Configuration menu
    Copy the full SHA
    4fba03f View commit details
    Browse the repository at this point in the history
  6. Merge pull request #467 from nbostrom/fix-object-assign-in-example

    Fix syntax error in Object.assign in real world example
    gaearon committed Aug 12, 2015
    Configuration menu
    Copy the full SHA
    30122f6 View commit details
    Browse the repository at this point in the history
  7. Real World Example - Fix typo in API middleware error string

    This changes 'on' to 'one' in the string 'Specify on of the exported Schemas.'
    HPate-Riptide committed Aug 12, 2015
    Configuration menu
    Copy the full SHA
    bf349bb View commit details
    Browse the repository at this point in the history
  8. Merge pull request #471 from HPate-Riptide/patch-1

    Real World Example - Fix typo in API middleware error string
    gaearon committed Aug 12, 2015
    Configuration menu
    Copy the full SHA
    8b1c075 View commit details
    Browse the repository at this point in the history
  9. Add redux-logger

    gaearon committed Aug 12, 2015
    Configuration menu
    Copy the full SHA
    b9bb28f View commit details
    Browse the repository at this point in the history
  10. Fixes pagination

    gaearon committed Aug 12, 2015
    Configuration menu
    Copy the full SHA
    ed33ec1 View commit details
    Browse the repository at this point in the history
  11. Tweak example conventions

    gaearon committed Aug 12, 2015
    Configuration menu
    Copy the full SHA
    4de6324 View commit details
    Browse the repository at this point in the history
  12. Merge pull request #473 from gaearon/tweak-example-conventions

    Tweak example conventions
    gaearon committed Aug 12, 2015
    Configuration menu
    Copy the full SHA
    f179ba8 View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2015

  1. Add simple async example

    gaearon committed Aug 13, 2015
    Configuration menu
    Copy the full SHA
    01c3cf0 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #474 from gaearon/add-async-example-2

    Add a simple async example
    gaearon committed Aug 13, 2015
    Configuration menu
    Copy the full SHA
    fd7f884 View commit details
    Browse the repository at this point in the history