You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*`Connector` now throws if `select` returns something other than a plain object (https://github.com/gaearon/redux/pull/85)
96
-
* The custom dispatcher API is tweaked so `setState` now returns the state that was actually set. This makes custom dispatchers more composable. (https://github.com/gaearon/redux/pull/77)
95
+
*`Connector` now throws if `select` returns something other than a plain object (https://github.com/rackt/redux/pull/85)
96
+
* The custom dispatcher API is tweaked so `setState` now returns the state that was actually set. This makes custom dispatchers more composable. (https://github.com/rackt/redux/pull/77)
97
97
98
98
Happy reducing!
99
99
100
100
## [0.10.0] - 2015/06/13
101
101
### Middleware
102
102
103
-
Redux 1.0 is within striking distance! Can you believe how quickly Redux has matured? @gaearon made the first commit only [14 days ago](https://github.com/gaearon/redux/commit/8bc14659780c044baac1432845fe1e4ca5123a8d).
103
+
Redux 1.0 is within striking distance! Can you believe how quickly Redux has matured? @rackt made the first commit only [14 days ago](https://github.com/rackt/redux/commit/8bc14659780c044baac1432845fe1e4ca5123a8d).
104
104
105
105
The 0.10 release is a follow-up to 0.9, with a focus on what we're calling (at least for now) **middleware**.
106
106
107
-
You can read all about middleware [here](https://github.com/gaearon/redux/blob/master/docs/middleware.md). We plan to release some official middleware soon, but of course we'd also love to see middleware created by the community.
107
+
You can read all about middleware [here](https://github.com/rackt/redux/blob/master/docs/middleware.md). We plan to release some official middleware soon, but of course we'd also love to see middleware created by the community.
108
108
109
109
### Breaking changes
110
110
111
-
Just a small one: Redux includes a feature that enables you to return a function from an action creator to perform asynchronous dispatches. The function receives a callback and `getState()` as parameters. This has behavior has been re-implemented as middleware and moved into a separate module called [`thunkMiddleware()`](https://github.com/gaearon/redux/blob/master/src/middleware/thunk.js). It is included automatically when using the `createRedux(stores)` shortcut, but not when using `createDispatcher()`.
111
+
Just a small one: Redux includes a feature that enables you to return a function from an action creator to perform asynchronous dispatches. The function receives a callback and `getState()` as parameters. This has behavior has been re-implemented as middleware and moved into a separate module called [`thunkMiddleware()`](https://github.com/rackt/redux/blob/master/src/middleware/thunk.js). It is included automatically when using the `createRedux(stores)` shortcut, but not when using `createDispatcher()`.
112
112
113
113
### Tests
114
114
@@ -239,7 +239,7 @@ New:
239
239
* Fine-grained subscriptions via the new `<Connector select={fn}>` prop
240
240
* Less surprising, more consistent API
241
241
242
-
Read the discussion: https://github.com/gaearon/redux/pull/46
242
+
Read the discussion: https://github.com/rackt/redux/pull/46
243
243
244
244
## [0.7.0] - 2015/06/06
245
245
* Change second parameter in callback-style action creator from `state` to `read: (Store) => state` (#44)
@@ -293,7 +293,7 @@ It also now accepts a second `transformProps` argument to be just as expressive
293
293
* Add a few early invariants
294
294
295
295
## [0.5.0] - 2015/06/03
296
-
* Store function names are no longer significant, but you have to pass an object with all your Stores to the `root` (or `Root`). Fixes https://github.com/gaearon/redux/issues/16
296
+
* Store function names are no longer significant, but you have to pass an object with all your Stores to the `root` (or `Root`). Fixes https://github.com/rackt/redux/issues/16
297
297
298
298
```js
299
299
import { root } from'redux';
@@ -314,10 +314,10 @@ export default class TodoApp {
314
314
```
315
315
316
316
## [0.4.0] - 2015/06/03
317
-
* Bring decorators back, now on top of the lower-level container components (https://github.com/gaearon/redux/pull/15, thanks Florent)
317
+
* Bring decorators back, now on top of the lower-level container components (https://github.com/rackt/redux/pull/15, thanks Florent)
318
318
* Require `stores` passed to `Container` to be an array
319
-
* Fix build on Windows (https://github.com/gaearon/redux/pull/11, thanks Mike)
Copy file name to clipboardExpand all lines: docs/Troubleshooting.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -188,5 +188,5 @@ You can then pass `dispatch` down to other components manually, if you want to.
188
188
189
189
## Something else doesn’t work
190
190
191
-
Ask around on **#redux**[Reactiflux](http://reactiflux.com/) Slack channel, or [create an issue](https://github.com/gaearon/redux/issues).
192
-
If you figure it out, [edit this document](https://github.com/gaearon/redux/edit/master/docs/Troubleshooting.md) as a courtesy to the next person having the same problem.
191
+
Ask around on **#redux**[Reactiflux](http://reactiflux.com/) Slack channel, or [create an issue](https://github.com/rackt/redux/issues).
192
+
If you figure it out, [edit this document](https://github.com/rackt/redux/edit/master/docs/Troubleshooting.md) as a courtesy to the next person having the same problem.
Copy file name to clipboardExpand all lines: docs/api/Store.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -83,7 +83,7 @@ store.dispatch(addTodo('Read about the middleware'));
83
83
84
84
Adds a change listener. It will be called any time an action is dispatched, and some part of the state tree may potentially have changed. You may then call [`getState()`](#getState) to read the current state tree inside the callback.
85
85
86
-
It is a low-level API. Most likely, instead of using it directly, you’ll use React (or other) bindings. If you feel that the callback needs to be invoked with the current state, you might want to [convert the store to an Observable or write a custom `observeStore` utility instead](https://github.com/gaearon/redux/issues/303#issuecomment-125184409).
86
+
It is a low-level API. Most likely, instead of using it directly, you’ll use React (or other) bindings. If you feel that the callback needs to be invoked with the current state, you might want to [convert the store to an Observable or write a custom `observeStore` utility instead](https://github.com/rackt/redux/issues/303#issuecomment-125184409).
87
87
88
88
To unsubscribe the change listener, invoke the function returned by `subscribe`.
89
89
@@ -122,7 +122,7 @@ handleChange();
122
122
123
123
>##### Deprecated
124
124
125
-
>This API has been [deprecated](https://github.com/gaearon/redux/issues/350).
125
+
>This API has been [deprecated](https://github.com/rackt/redux/issues/350).
126
126
>It will be removed when we find a better solution for this problem.
127
127
128
128
Returns the reducer currently used by the store to calculate the state.
@@ -139,7 +139,7 @@ It is an advanced API. You might only need this if you implement a hot reloading
139
139
140
140
>##### Deprecated
141
141
142
-
>This API has been [deprecated](https://github.com/gaearon/redux/issues/350).
142
+
>This API has been [deprecated](https://github.com/rackt/redux/issues/350).
143
143
>It will be removed when we find a better solution for this problem.
144
144
145
145
Replaces the reducer currently used by the store to calculate the state.
Copy file name to clipboardExpand all lines: docs/basics/Reducers.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -329,7 +329,7 @@ function reducer(state, action) {
329
329
}
330
330
```
331
331
332
-
All [`combineReducers()`](../api/combineReducers.md) does is generate a function that calls your reducers **with the slices of state selected according to their keys**, and combining their results into a single object again. [It’s not magic.](https://github.com/gaearon/redux/issues/428#issuecomment-129223274)
332
+
All [`combineReducers()`](../api/combineReducers.md) does is generate a function that calls your reducers **with the slices of state selected according to their keys**, and combining their results into a single object again. [It’s not magic.](https://github.com/rackt/redux/issues/428#issuecomment-129223274)
333
333
334
334
>##### Note for ES6 Savvy Users
335
335
@@ -342,7 +342,7 @@ All [`combineReducers()`](../api/combineReducers.md) does is generate a function
342
342
>consttodoApp=combineReducers(reducers);
343
343
>```
344
344
>
345
-
>Because `import*` is still new syntax, we don’t use it anymore in the documentation to avoid [confusion](https://github.com/gaearon/redux/issues/428#issuecomment-129223274), but you may encounter it in some community examples.
345
+
>Because `import*` is still new syntax, we don’t use it anymore in the documentation to avoid [confusion](https://github.com/rackt/redux/issues/428#issuecomment-129223274), but you may encounter it in some community examples.
0 commit comments