Skip to content
This repository was archived by the owner on Jul 27, 2018. It is now read-only.

Commit 956d1b3

Browse files
committed
3.0.1
1 parent 50869c5 commit 956d1b3

File tree

2 files changed

+126
-1
lines changed

2 files changed

+126
-1
lines changed

CHANGELOG.md

Lines changed: 125 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
1+
<a name="3.0.1"></a>
2+
## [3.0.1](https://github.com/ngrx/devtools/compare/v3.0.0...v3.0.1) (2016-09-01)
3+
4+
5+
### Bug Fixes
6+
7+
* **deps:** Upgrade to latest Angular 2 and rxjs ([50869c5](https://github.com/ngrx/devtools/commit/50869c5))
8+
9+
10+
11+
<a name="3.0.0"></a>
12+
# [3.0.0](https://github.com/ngrx/devtools/compare/v2.0.0-beta.1...v3.0.0) (2016-08-26)
13+
14+
15+
### Bug Fixes
16+
17+
* **extension:** Allow universal rendering ([#23](https://github.com/ngrx/devtools/issues/23)) ([dcd640c](https://github.com/ngrx/devtools/commit/dcd640c))
18+
19+
20+
### Chores
21+
22+
* Upgrade to Angular 2 RC.5 ([#26](https://github.com/ngrx/devtools/issues/26)) ([28f53d1](https://github.com/ngrx/devtools/commit/28f53d1))
23+
24+
25+
### BREAKING CHANGES
26+
27+
* With the introduction of NgModules, the process for instrumenting your store has changed
28+
29+
BEFORE:
30+
31+
```ts
32+
import { instrumentStore } from '@ngrx/store-devtools';
33+
34+
bootstrap(App, [
35+
instrumentStore(config)
36+
]);
37+
```
38+
39+
AFTER:
40+
41+
```ts
42+
import { StoreDevtoolsModule } from '@ngrx/store-devtools';
43+
44+
@NgModule({
45+
imports: [
46+
StoreDevtoolsModule.instrumentStore(config)
47+
]
48+
})
49+
export class AppModule { }
50+
```
51+
52+
53+
54+
<a name="2.0.0-beta.1"></a>
55+
# [2.0.0-beta.1](https://github.com/ngrx/devtools/compare/v1.4.0...v2.0.0-beta.1) (2016-07-01)
56+
57+
58+
59+
<a name="1.4.0"></a>
60+
# [1.4.0](https://github.com/ngrx/devtools/compare/v1.3.3...v1.4.0) (2016-05-03)
61+
62+
63+
64+
<a name="1.3.3"></a>
65+
## [1.3.3](https://github.com/ngrx/devtools/compare/v1.3.2...v1.3.3) (2016-03-17)
66+
67+
68+
69+
<a name="1.3.2"></a>
70+
## [1.3.2](https://github.com/ngrx/devtools/compare/v1.3.1...v1.3.2) (2016-03-17)
71+
72+
73+
### Bug Fixes
74+
75+
* **DevtoolsConfig:** Use the PositionsType from the dock monitor to constrain the available positions ([f1a1563](https://github.com/ngrx/devtools/commit/f1a1563))
76+
* **LogMonitor:** do not suppress init action ([78f46c0](https://github.com/ngrx/devtools/commit/78f46c0))
77+
78+
79+
### Features
80+
81+
* **devtools:** Added config function to set default position, visibility and size ([73cfefc](https://github.com/ngrx/devtools/commit/73cfefc))
82+
* **monitors:** Added customizable dock monitor commands via inputs ([5610e27](https://github.com/ngrx/devtools/commit/5610e27))
83+
84+
85+
86+
<a name="1.3.1"></a>
87+
## [1.3.1](https://github.com/ngrx/devtools/compare/v1.3.0...v1.3.1) (2016-03-12)
88+
89+
90+
### Bug Fixes
91+
92+
* **Commander:** Fixed event handling in the Commander component ([ba355fb](https://github.com/ngrx/devtools/commit/ba355fb))
93+
* **LogMonitorButton:** Fixed metadata generation bug with event handler ([b5f69a7](https://github.com/ngrx/devtools/commit/b5f69a7))
94+
* **StoreDevtoolsTest:** Changed all calls to use devtool methods instead of raw action creators ([f99657d](https://github.com/ngrx/devtools/commit/f99657d))
95+
96+
97+
### Features
98+
99+
* **Devtools:** Added unified Devtools component that wraps the DockMonitor and LogMonitor ([58497f5](https://github.com/ngrx/devtools/commit/58497f5))
100+
* **DockMonitor:** Added dock monitor to wrap devtools. ([d10fb7a](https://github.com/ngrx/devtools/commit/d10fb7a))
101+
* **instrumentStore:** Added shortcut to combineReducers if an object is passed in. Default to dock reducer ([344c7b5](https://github.com/ngrx/devtools/commit/344c7b5))
102+
103+
104+
105+
<a name="1.3.0"></a>
106+
# [1.3.0](https://github.com/ngrx/devtools/compare/0f2c4ff...v1.3.0) (2016-03-09)
107+
108+
109+
### Bug Fixes
110+
111+
* **Devtools:** Filtered out all undefined states ([0f2c4ff](https://github.com/ngrx/devtools/commit/0f2c4ff))
112+
* **linter:** Corrected linting errors with store instrumentation ([1d99bbc](https://github.com/ngrx/devtools/commit/1d99bbc))
113+
* **package.json:** Restore name to [@ngrx](https://github.com/ngrx)/devtools ([859491c](https://github.com/ngrx/devtools/commit/859491c))
114+
* **StoreDevtools:** Fixed specs to correctly use liftedState instead of state ([769a046](https://github.com/ngrx/devtools/commit/769a046))
115+
* **tsconfig:** Corrected paths for log monitor ([4d1e5d6](https://github.com/ngrx/devtools/commit/4d1e5d6))
116+
* **tsconfig:** Include the correct scripts for the store devtools ([0419aba](https://github.com/ngrx/devtools/commit/0419aba))
117+
118+
119+
### Features
120+
121+
* **LogMonitor:** Added initial implementation of a LogMonitor component ([ac6f24d](https://github.com/ngrx/devtools/commit/ac6f24d))
122+
* **StoreDevtools:** Solidifed devtools API to be a complete service ([5f293f2](https://github.com/ngrx/devtools/commit/5f293f2))
123+
124+
125+

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngrx/store-devtools",
3-
"version": "3.0.0",
3+
"version": "3.0.1",
44
"description": "Developer tools for @ngrx/store",
55
"main": "./index.js",
66
"scripts": {

0 commit comments

Comments
 (0)