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

kea

Package Overview
Dependencies
Maintainers
1
Versions
233
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kea - npm Package Compare versions

Comparing version 0.20.1 to 0.20.2

5

CHANGELOG.md

@@ -10,4 +10,7 @@ # Change Log

## 0.20.1 - 2017-08-02
### Added
- Added `props` as the second argument to input selectors when creating kea selectors
## 0.20.0 - 2017-07-31
### Changed

@@ -14,0 +17,0 @@ - Connected sagas are now automatically started, no need to pass them separately in { sagas: [] }

2

lib/logic/kea.js

@@ -508,3 +508,3 @@ 'use strict';

Object.keys(connectedSelectors).forEach(function (propKey) {
nextProps[propKey] = connectedSelectors[propKey](nextState);
nextProps[propKey] = connectedSelectors[propKey](nextState, nextOwnProps);
});

@@ -511,0 +511,0 @@ }

{
"name": "kea",
"version": "0.20.1",
"version": "0.20.2",
"description": "Smart front-end architecture",

@@ -5,0 +5,0 @@ "author": "Marius Andra",

@@ -316,3 +316,3 @@ import { createPropTransforms, propTypesFromMapping } from '../logic/props'

Object.keys(connectedSelectors).forEach(propKey => {
nextProps[propKey] = connectedSelectors[propKey](nextState)
nextProps[propKey] = connectedSelectors[propKey](nextState, nextOwnProps)
})

@@ -319,0 +319,0 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc