Skip to content

Commit 91311dc

Browse files
committed
Move to rackt
1 parent c1e62b6 commit 91311dc

File tree

8 files changed

+70
-70
lines changed

8 files changed

+70
-70
lines changed

CHANGELOG.md

Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
All notable changes to this project will be documented in this file.
44
This project adheres to [Semantic Versioning](http://semver.org/).
55

6-
## [1.0.0-rc](https://github.com/gaearon/redux/compare/v1.0.0-alpha...v1.0.0-rc) - 2015/07/13
6+
## [1.0.0-rc](https://github.com/rackt/redux/compare/v1.0.0-alpha...v1.0.0-rc) - 2015/07/13
77

88
### Big Changes
99

10-
* React-specific code has been moved to [react-redux](https://github.com/gaearon/react-redux) and will be versioned separately
10+
* React-specific code has been moved to [react-redux](https://github.com/rackt/react-redux) and will be versioned separately
1111
* `createStore` no longer implicitly combines reducers
1212
* All middleware is now “smart” middleware
1313
* `createStore` no longer accepts middleware
@@ -20,15 +20,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
2020
* (React) Components now update correctly in response to the actions fired in `componentDidMount`
2121
* Dispatch from the middleware sends the dispatch through the whole middleware chain
2222

23-
**Read the [detailed upgrade notes on the release page.](https://github.com/gaearon/redux/releases/tag/v1.0.0-rc)**
23+
**Read the [detailed upgrade notes on the release page.](https://github.com/rackt/redux/releases/tag/v1.0.0-rc)**
2424

25-
## [1.0.0-alpha](https://github.com/gaearon/redux/compare/v0.12.0...v1.0.0-alpha) - 2015/06/30
25+
## [1.0.0-alpha](https://github.com/rackt/redux/compare/v0.12.0...v1.0.0-alpha) - 2015/06/30
2626

2727
### Naming
2828

29-
* “Stateless Stores” are now called reducers. (https://github.com/gaearon/redux/issues/137#issuecomment-114178411)
30-
* The “Redux instance” is now called “The Store”. (https://github.com/gaearon/redux/issues/137#issuecomment-113252359)
31-
* The dispatcher is removed completely. (https://github.com/gaearon/redux/pull/166#issue-90113962)
29+
* “Stateless Stores” are now called reducers. (https://github.com/rackt/redux/issues/137#issuecomment-114178411)
30+
* The “Redux instance” is now called “The Store”. (https://github.com/rackt/redux/issues/137#issuecomment-113252359)
31+
* The dispatcher is removed completely. (https://github.com/rackt/redux/pull/166#issue-90113962)
3232

3333
### API changes
3434

@@ -52,7 +52,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
5252
* Some tests are rewritten for clarity, focus and edge cases.
5353
* Redux in examples is now aliased to the source code for easier work on master.
5454

55-
**Read the [detailed upgrade notes on the release page.](https://github.com/gaearon/redux/releases/tag/v1.0.0-alpha)**
55+
**Read the [detailed upgrade notes on the release page.](https://github.com/rackt/redux/releases/tag/v1.0.0-alpha)**
5656

5757
## [0.12.0] - 2015/06/19
5858
No breaking changes this time.
@@ -92,23 +92,23 @@ import { provide, Connector } from 'redux/react-native';
9292

9393
Changes introduced in 0.10.1:
9494

95-
* `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)
9797

9898
Happy reducing!
9999

100100
## [0.10.0] - 2015/06/13
101101
### Middleware
102102

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).
104104

105105
The 0.10 release is a follow-up to 0.9, with a focus on what we're calling (at least for now) **middleware**.
106106

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.
108108

109109
### Breaking changes
110110

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()`.
112112

113113
### Tests
114114

@@ -239,7 +239,7 @@ New:
239239
* Fine-grained subscriptions via the new `<Connector select={fn}>` prop
240240
* Less surprising, more consistent API
241241

242-
Read the discussion: https://github.com/gaearon/redux/pull/46
242+
Read the discussion: https://github.com/rackt/redux/pull/46
243243

244244
## [0.7.0] - 2015/06/06
245245
* 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
293293
* Add a few early invariants
294294
295295
## [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
297297
298298
```js
299299
import { root } from 'redux';
@@ -314,10 +314,10 @@ export default class TodoApp {
314314
```
315315
316316
## [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)
318318
* Require `stores` passed to `Container` to be an array
319-
* Fix build on Windows (https://github.com/gaearon/redux/pull/11, thanks Mike)
320-
* Reduce context footprint (https://github.com/gaearon/redux/pull/12, thanks Florent again!)
319+
* Fix build on Windows (https://github.com/rackt/redux/pull/11, thanks Mike)
320+
* Reduce context footprint (https://github.com/rackt/redux/pull/12, thanks Florent again!)
321321
322322
## [0.3.1] - 2015/06/03
323323
* Remove old files from build
@@ -326,8 +326,8 @@ export default class TodoApp {
326326
Complete rewrite.
327327
328328
* **No more strings,** now using module bindings for injecting stores and actions
329-
* Only use decorator for top-level component, keep dumb components pure and testable (https://github.com/gaearon/redux/issues/5)
330-
* Remove transaction logic (will be re-implemented on top of https://github.com/gaearon/redux/issues/6)
329+
* Only use decorator for top-level component, keep dumb components pure and testable (https://github.com/rackt/redux/issues/5)
330+
* Remove transaction logic (will be re-implemented on top of https://github.com/rackt/redux/issues/6)
331331
332332
```js
333333
// The smart component may inject actions
@@ -364,27 +364,27 @@ Minor caveat: Store function names are now significant.
364364
365365
## 0.2.0 - 2015/06/02
366366
* Initial public release.
367-
See examples in [README](https://github.com/gaearon/redux/blob/master/README.md) and the
368-
[examples](https://github.com/gaearon/redux/tree/master/examples) folder.
367+
See examples in [README](https://github.com/rackt/redux/blob/master/README.md) and the
368+
[examples](https://github.com/rackt/redux/tree/master/examples) folder.
369369
Alpha quality :-)
370370
371-
[unreleased]: https://github.com/gaearon/redux/compare/v0.12.0...HEAD
372-
[0.12.0]: https://github.com/gaearon/redux/compare/v0.11.1...v0.12.0
373-
[0.11.1]: https://github.com/gaearon/redux/compare/v0.11.0...v0.11.1
374-
[0.11.0]: https://github.com/gaearon/redux/compare/v0.10.1...v0.11.0
375-
[0.10.1]: https://github.com/gaearon/redux/compare/v0.10.0...v0.10.1
376-
[0.10.0]: https://github.com/gaearon/redux/compare/v0.9.0...v0.10.0
377-
[0.9.0]: https://github.com/gaearon/redux/compare/v0.8.1...v0.9.0
378-
[0.8.1]: https://github.com/gaearon/redux/compare/v0.8.0...v0.8.1
379-
[0.8.0]: https://github.com/gaearon/redux/compare/v0.7.0...v0.8.0
380-
[0.7.0]: https://github.com/gaearon/redux/compare/v0.6.2...v0.7.0
381-
[0.6.2]: https://github.com/gaearon/redux/compare/v0.6.1...v0.6.2
382-
[0.6.1]: https://github.com/gaearon/redux/compare/v0.6.0...v0.6.1
383-
[0.6.0]: https://github.com/gaearon/redux/compare/v0.5.1...v0.6.0
384-
[0.5.1]: https://github.com/gaearon/redux/compare/v0.5.0...v0.5.1
385-
[0.5.0]: https://github.com/gaearon/redux/compare/v0.4.0...v0.5.0
386-
[0.4.0]: https://github.com/gaearon/redux/compare/v0.3.1...v0.4.0
387-
[0.3.1]: https://github.com/gaearon/redux/compare/v0.3.0...v0.3.1
388-
[0.3.0]: https://github.com/gaearon/redux/compare/v0.2.2...v0.3.0
389-
[0.2.2]: https://github.com/gaearon/redux/compare/v0.2.1...v0.2.2
390-
[0.2.1]: https://github.com/gaearon/redux/compare/v0.2.0...v0.2.1
371+
[unreleased]: https://github.com/rackt/redux/compare/v0.12.0...HEAD
372+
[0.12.0]: https://github.com/rackt/redux/compare/v0.11.1...v0.12.0
373+
[0.11.1]: https://github.com/rackt/redux/compare/v0.11.0...v0.11.1
374+
[0.11.0]: https://github.com/rackt/redux/compare/v0.10.1...v0.11.0
375+
[0.10.1]: https://github.com/rackt/redux/compare/v0.10.0...v0.10.1
376+
[0.10.0]: https://github.com/rackt/redux/compare/v0.9.0...v0.10.0
377+
[0.9.0]: https://github.com/rackt/redux/compare/v0.8.1...v0.9.0
378+
[0.8.1]: https://github.com/rackt/redux/compare/v0.8.0...v0.8.1
379+
[0.8.0]: https://github.com/rackt/redux/compare/v0.7.0...v0.8.0
380+
[0.7.0]: https://github.com/rackt/redux/compare/v0.6.2...v0.7.0
381+
[0.6.2]: https://github.com/rackt/redux/compare/v0.6.1...v0.6.2
382+
[0.6.1]: https://github.com/rackt/redux/compare/v0.6.0...v0.6.1
383+
[0.6.0]: https://github.com/rackt/redux/compare/v0.5.1...v0.6.0
384+
[0.5.1]: https://github.com/rackt/redux/compare/v0.5.0...v0.5.1
385+
[0.5.0]: https://github.com/rackt/redux/compare/v0.4.0...v0.5.0
386+
[0.4.0]: https://github.com/rackt/redux/compare/v0.3.1...v0.4.0
387+
[0.3.1]: https://github.com/rackt/redux/compare/v0.3.0...v0.3.1
388+
[0.3.0]: https://github.com/rackt/redux/compare/v0.2.2...v0.3.0
389+
[0.2.2]: https://github.com/rackt/redux/compare/v0.2.1...v0.2.2
390+
[0.2.1]: https://github.com/rackt/redux/compare/v0.2.0...v0.2.1

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# [Redux](http://gaearon.github.io/redux)
1+
# [Redux](http://rackt.github.io/redux)
22

33
Redux is a predictable state container for JavaScript apps.
44

@@ -7,7 +7,7 @@ It helps you write applications that behave consistently, run in different envir
77
You can use Redux together with [React](https://facebook.github.io/react/), or with any other view library.
88
It is tiny (2kB) and has no dependencies.
99

10-
[![build status](https://img.shields.io/travis/gaearon/redux/master.svg?style=flat-square)](https://travis-ci.org/gaearon/redux)
10+
[![build status](https://img.shields.io/travis/rackt/redux/master.svg?style=flat-square)](https://travis-ci.org/rackt/redux)
1111
[![npm version](https://img.shields.io/npm/v/redux.svg?style=flat-square)](https://www.npmjs.com/package/redux)
1212
[![npm downloads](https://img.shields.io/npm/dm/redux.svg?style=flat-square)](https://www.npmjs.com/package/redux)
1313
[![redux channel on slack](https://img.shields.io/badge/[email protected]?style=flat-square)](http://www.reactiflux.com)
@@ -108,13 +108,13 @@ This architecture might seem like an overkill for a counter app, but the beauty
108108

109109
### Documentation
110110

111-
* [Introduction](http://gaearon.github.io/redux/docs/introduction/index.html)
112-
* [Basics](http://gaearon.github.io/redux/docs/basics/index.html)
113-
* [Advanced](http://gaearon.github.io/redux/docs/advanced/index.html)
114-
* [Recipes](http://gaearon.github.io/redux/docs/recipes/index.html)
115-
* [Troubleshooting](http://gaearon.github.io/redux/docs/Troubleshooting.html)
116-
* [Glossary](http://gaearon.github.io/redux/docs/Glossary.html)
117-
* [API Reference](http://gaearon.github.io/redux/docs/api/index.html)
111+
* [Introduction](http://rackt.github.io/redux/docs/introduction/index.html)
112+
* [Basics](http://rackt.github.io/redux/docs/basics/index.html)
113+
* [Advanced](http://rackt.github.io/redux/docs/advanced/index.html)
114+
* [Recipes](http://rackt.github.io/redux/docs/recipes/index.html)
115+
* [Troubleshooting](http://rackt.github.io/redux/docs/Troubleshooting.html)
116+
* [Glossary](http://rackt.github.io/redux/docs/Glossary.html)
117+
* [API Reference](http://rackt.github.io/redux/docs/api/index.html)
118118

119119
### Discussion
120120

docs/Troubleshooting.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,5 +188,5 @@ You can then pass `dispatch` down to other components manually, if you want to.
188188

189189
## Something else doesn’t work
190190

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.

docs/api/Store.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ store.dispatch(addTodo('Read about the middleware'));
8383

8484
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.
8585

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).
8787

8888
To unsubscribe the change listener, invoke the function returned by `subscribe`.
8989

@@ -122,7 +122,7 @@ handleChange();
122122

123123
>##### Deprecated
124124
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).
126126
>It will be removed when we find a better solution for this problem.
127127
128128
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
139139

140140
>##### Deprecated
141141
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).
143143
>It will be removed when we find a better solution for this problem.
144144
145145
Replaces the reducer currently used by the store to calculate the state.

docs/basics/Reducers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ function reducer(state, action) {
329329
}
330330
```
331331

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)
333333

334334
>##### Note for ES6 Savvy Users
335335
@@ -342,7 +342,7 @@ All [`combineReducers()`](../api/combineReducers.md) does is generate a function
342342
>const todoApp = combineReducers(reducers);
343343
>```
344344
>
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.
346346
347347
## Source Code
348348

docs/introduction/Examples.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Examples
22

3-
Redux is distributed with a few examples in its [source code](https://github.com/gaearon/redux/tree/master/examples).
3+
Redux is distributed with a few examples in its [source code](https://github.com/rackt/redux/tree/master/examples).
44
**To run any of them, clone the repo and run `npm install` both in the root and the example folder.**
55

66
>##### Note on Copying
@@ -24,7 +24,7 @@ Redux is distributed with a few examples in its [source code](https://github.com
2424
2525
## Counter
2626

27-
Run the [Counter](https://github.com/gaearon/redux/tree/master/examples/counter) example:
27+
Run the [Counter](https://github.com/rackt/redux/tree/master/examples/counter) example:
2828

2929
```
3030
git clone https://github.com/gaearon/redux.git
@@ -46,7 +46,7 @@ It covers:
4646

4747
## TodoMVC
4848

49-
Run the [TodoMVC](https://github.com/gaearon/redux/tree/master/examples/todomvc) example:
49+
Run the [TodoMVC](https://github.com/rackt/redux/tree/master/examples/todomvc) example:
5050

5151
```
5252
git clone https://github.com/gaearon/redux.git
@@ -69,7 +69,7 @@ It covers:
6969

7070
## Async
7171

72-
Run the [Async](https://github.com/gaearon/redux/tree/master/examples/async) example:
72+
Run the [Async](https://github.com/rackt/redux/tree/master/examples/async) example:
7373

7474
```
7575
git clone https://github.com/gaearon/redux.git
@@ -92,7 +92,7 @@ It covers:
9292

9393
## Real World
9494

95-
Run the [Real World](https://github.com/gaearon/redux/tree/master/examples/real-world) example:
95+
Run the [Real World](https://github.com/rackt/redux/tree/master/examples/real-world) example:
9696

9797
```
9898
git clone https://github.com/gaearon/redux.git

0 commit comments

Comments
 (0)