raven-for-redux
Advanced tools
Comparing version
@@ -32,4 +32,7 @@ "use strict"; | ||
var state = store.getState(); | ||
data.extra.lastAction = actionTransformer(lastAction); | ||
data.extra.state = stateTransformer(state); | ||
var reduxExtra = { | ||
lastAction: actionTransformer(lastAction), | ||
state: stateTransformer(state) | ||
}; | ||
data.extra = Object.assign(reduxExtra, data.extra); | ||
if (getUserContext) { | ||
@@ -36,0 +39,0 @@ data.user = getUserContext(state); |
{ | ||
"name": "raven-for-redux", | ||
"version": "1.2.0", | ||
"version": "1.3.0", | ||
"description": "Middleware for propagating Redux state/actions to Sentry via Raven.", | ||
@@ -5,0 +5,0 @@ "main": "built/index.js", |
@@ -11,3 +11,3 @@ []() []() | ||
Inspired by [redux-raven-middleware] but with a slightly different approach. | ||
Inspired by [redux-raven-middleware] but with a slightly [different approach](#improvements). | ||
@@ -45,2 +45,12 @@ ## Installation | ||
### TypeScript | ||
`raven-for-redux` has TypeScript bindings available through [DefinitelyTyped](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/b7ca35ab023ba1758de9e07004adde71e911c28e/types/raven-for-redux/index.d.ts). Please note the import style below, as it differs from the JavaScript example and is required for these typings. | ||
```TypeScript | ||
import * as Raven from "raven-js"; | ||
import * as createRavenMiddleware from "raven-for-redux"; | ||
import { applyMiddleware, createStore } from "redux"; | ||
//... (same as JavaScript example, but now with proper typings) | ||
``` | ||
## Improvements | ||
@@ -166,2 +176,6 @@ | ||
### 1.3.0 | ||
* The Raven "extras" that we add are merged with existing extras rather than replacing them. ([#59]) | ||
### 1.2.0 | ||
@@ -203,1 +217,2 @@ | ||
[#49]: https://github.com/captbaritone/raven-for-redux/pull/49 | ||
[#59]: https://github.com/captbaritone/raven-for-redux/pull/59 |
12136
7.37%53
6%215
7.5%