New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

raven-for-redux

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

raven-for-redux - npm Package Compare versions

Comparing version

to
1.3.0

7

built/index.js

@@ -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 @@ [![Travis](https://img.shields.io/travis/captbaritone/raven-for-redux.svg)]() [![Codecov](https://img.shields.io/codecov/c/github/captbaritone/raven-for-redux.svg)]()

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