Comparing version 1.0.0 to 1.0.1
# Change Log | ||
## 1.0.1 | ||
### Features | ||
* [#295] Added support for Promises in MockActionContext | ||
## 1.0.0 | ||
@@ -11,2 +17,8 @@ | ||
## 0.5.5 | ||
### Bug Fixes | ||
* [#276] Lock down fluxible-addons-react dependency for React 0.13 | ||
## 0.5.4 | ||
@@ -13,0 +25,0 @@ |
Software License Agreement (BSD License) | ||
======================================== | ||
Copyright (c) 2014, Yahoo! Inc. All rights reserved. | ||
Copyright (c) 2015, Yahoo Inc. All rights reserved. | ||
---------------------------------------------------- | ||
@@ -16,5 +16,5 @@ | ||
and/or other materials provided with the distribution. | ||
* Neither the name of Yahoo! Inc. nor the names of YUI's contributors may be | ||
used to endorse or promote products derived from this software without | ||
specific prior written permission of Yahoo! Inc. | ||
* Neither the name of Yahoo Inc. nor the names of this package's contributors | ||
may be used to endorse or promote products derived from this software | ||
without specific prior written permission of Yahoo Inc. | ||
@@ -21,0 +21,0 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
{ | ||
"name": "fluxible", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "A pluggable container for isomorphic flux applications", | ||
@@ -11,5 +11,5 @@ "main": "index.js", | ||
"scripts": { | ||
"test": "mocha tests/unit/ --recursive --compilers js:babel/register --reporter spec", | ||
"cover": "istanbul cover --dir artifacts -- _mocha tests/unit/ --recursive --compilers js:babel/register --reporter spec", | ||
"lint": "eslint lib/ addons/" | ||
"test": "../../node_modules/.bin/mocha tests/unit/ --recursive --compilers js:babel/register --reporter spec", | ||
"cover": "../../node_modules/.bin/istanbul cover --dir artifacts -- ../../node_modules/.bin/_mocha tests/unit/ --recursive --compilers js:babel/register --reporter spec", | ||
"lint": "../../node_modules/.bin/eslint lib/ addons/" | ||
}, | ||
@@ -22,13 +22,2 @@ "dependencies": { | ||
}, | ||
"devDependencies": { | ||
"async": "^1.4.2", | ||
"babel": "^5.0.2", | ||
"chai": "^3.2.0", | ||
"coveralls": "^2.11.1", | ||
"eslint": "^1.2.1", | ||
"istanbul": "^0.3.2", | ||
"mocha": "^2.0.1", | ||
"mockery": "^1.4.0", | ||
"pre-commit": "^1.0.7" | ||
}, | ||
"author": "Michael Ridgway <mridgway@yahoo-inc.com>", | ||
@@ -38,3 +27,3 @@ "contributors": [], | ||
{ | ||
"type": "BSD", | ||
"type": "BSD-3-Clause", | ||
"url": "https://github.com/yahoo/fluxible/blob/master/LICENSE.md" | ||
@@ -41,0 +30,0 @@ } |
# Fluxible | ||
[![NPM version](https://badge.fury.io/js/fluxible.svg)](http://badge.fury.io/js/fluxible) | ||
<!-- | ||
[![Build Status](https://img.shields.io/travis/yahoo/fluxible.svg)](https://travis-ci.org/yahoo/fluxible) | ||
@@ -8,2 +9,3 @@ [![Coverage Status](https://img.shields.io/coveralls/yahoo/fluxible.svg)](https://coveralls.io/r/yahoo/fluxible?branch=master) | ||
[![devDependency Status](https://img.shields.io/david/dev/yahoo/fluxible.svg)](https://david-dm.org/yahoo/fluxible#info=devDependencies) | ||
--> | ||
@@ -16,3 +18,3 @@ Pluggable, singleton-free container for isomorphic [Flux](https://github.com/facebook/flux) applications. | ||
Join the #fluxible channel of the [Reactiflux](http://reactiflux.com) Slack community. | ||
Join the #fluxible channel of the [Reactiflux](http://reactiflux.com) Discord community. | ||
@@ -23,4 +25,4 @@ [![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/yahoo/fluxible) | ||
* [Quick Start](https://github.com/yahoo/fluxible/blob/master/docs/quick-start.md) | ||
* [API](https://github.com/yahoo/fluxible/blob/master/docs/api/README.md) | ||
* [Quick Start](https://github.com/yahoo/fluxible/blob/master/packages/fluxible/docs/quick-start.md) | ||
* [API](https://github.com/yahoo/fluxible/blob/master/packages/fluxible/docs/api/README.md) | ||
@@ -30,7 +32,7 @@ ## Features | ||
* Singleton-free for server rendering | ||
* [Store](https://github.com/yahoo/fluxible/blob/master/docs/api/Stores.md) dehydration for client bootstrapping | ||
* Stateless async [actions](https://github.com/yahoo/fluxible/blob/master/docs/api/Actions.md) | ||
* Higher order [components](https://github.com/yahoo/fluxible/blob/master/docs/api/Components.md) for easy integration | ||
* Enforcement of Flux flow - restricted access to the [Flux interface](https://github.com/yahoo/fluxible/blob/master/docs/api/FluxibleContext.md) from within components | ||
* [Pluggable](https://github.com/yahoo/fluxible/blob/master/docs/api/Plugins.md) - add your own interfaces to the Flux context | ||
* [Store](https://github.com/yahoo/fluxible/blob/master/packages/fluxible/docs/api/Stores.md) dehydration for client bootstrapping | ||
* Stateless async [actions](https://github.com/yahoo/fluxible/blob/master/packages/fluxible/docs/api/Actions.md) | ||
* Higher order [components](https://github.com/yahoo/fluxible/blob/master/packages/fluxible/docs/api/Components.md) for easy integration | ||
* Enforcement of Flux flow - restricted access to the [Flux interface](https://github.com/yahoo/fluxible/blob/master/packages/fluxible/docs/api/FluxibleContext.md) from within components | ||
* [Pluggable](https://github.com/yahoo/fluxible/blob/master/packages/fluxible/docs/api/Plugins.md) - add your own interfaces to the Flux context | ||
* Updated for React 0.13 | ||
@@ -110,3 +112,4 @@ | ||
for features like [`Promise`][Promise] and [`Object.assign`][objectAssign] | ||
in order to support all browsers. We recommend using [Babel][babel]. | ||
in order to support all browsers. We recommend using [Babel][babel] along with | ||
its [polyfill][polyfill]. | ||
@@ -121,2 +124,3 @@ ## License | ||
[babel]: https://babeljs.io/ | ||
[polyfill]: https://babeljs.io/docs/usage/polyfill/ | ||
[LICENSE file]: https://github.com/yahoo/fluxible/blob/master/LICENSE.md |
@@ -34,3 +34,3 @@ # Upgrade Guide | ||
```js | ||
import {connectToStores} from 'fluxible-addons-react’;` | ||
import {connectToStores} from 'fluxible-addons-react'; | ||
``` | ||
@@ -37,0 +37,0 @@ |
@@ -6,2 +6,3 @@ /** | ||
'use strict'; | ||
var callAction = require('./callAction'); | ||
@@ -31,5 +32,5 @@ function MockActionContext (dispatcherContext) { | ||
}); | ||
return action(this, payload, callback); | ||
return callAction(action, this, payload, callback); | ||
}; | ||
module.exports = MockActionContext; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
Uses eval
Supply chain riskPackage uses dynamic code execution (e.g., eval()), which is a dangerous practice. This can prevent the code from running in certain environments and increases the risk that the code may contain exploits or malicious behavior.
Found 1 instance in 1 package
Dynamic require
Supply chain riskDynamic require can indicate the package is performing dangerous or unsafe dynamic code execution.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 3 instances in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
Mixed license
License(Experimental) Package contains multiple licenses.
Found 1 instance in 1 package
0
0
1
121
2
1
43146
18
730