Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fluxible

Package Overview
Dependencies
Maintainers
5
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fluxible - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

utils/callAction.js

12

CHANGELOG.md
# 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 @@

8

LICENSE.md
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;
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