Socket
Socket
Sign inDemoInstall

redux-orm

Package Overview
Dependencies
7
Maintainers
1
Versions
70
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.8.2 to 0.8.3

6

lib/Model.js

@@ -7,2 +7,6 @@ 'use strict';

var _extends2 = require('babel-runtime/helpers/extends');
var _extends3 = _interopRequireDefault(_extends2);
var _toConsumableArray2 = require('babel-runtime/helpers/toConsumableArray');

@@ -366,3 +370,3 @@

var BackendClass = this.getBackendClass();
var opts = this._getBackendOpts();
var opts = (0, _extends3.default)({}, this._getBackendOpts());

@@ -369,0 +373,0 @@ if (this.session && this.session.withMutations) {

4

package.json
{
"name": "redux-orm",
"version": "0.8.2",
"version": "0.8.3",
"description": "Simple ORM to manage and query your state trees",

@@ -35,3 +35,3 @@ "main": "lib/index.js",

"gulp-gh-pages": "^0.5.4",
"jsdoc": "^3.4.0",
"jsdoc": "^3.4.1",
"mocha": "^2.2.5",

@@ -38,0 +38,0 @@ "sinon": "^1.17.2",

@@ -417,2 +417,6 @@ redux-orm

### 0.8.3
Fixed bug that mutated the backend options in `Model` if you supplied custom ones, see [Issue 37](https://github.com/tommikaikkonen/redux-orm/issues/37). Thanks to [@diffcunha](https://github.com/diffcunha) for the [fix](https://github.com/tommikaikkonen/redux-orm/pull/38)!
### 0.8.2

@@ -419,0 +423,0 @@

@@ -121,3 +121,3 @@ import forOwn from 'lodash/forOwn';

const BackendClass = this.getBackendClass();
const opts = this._getBackendOpts();
const opts = { ...this._getBackendOpts() };

@@ -124,0 +124,0 @@ if (this.session && this.session.withMutations) {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc