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

mobx-rest-jquery-adapter

Package Overview
Dependencies
Maintainers
2
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mobx-rest-jquery-adapter - npm Package Compare versions

Comparing version 1.0.7 to 1.1.0

.npmignore

6

CHANGELOG.md
# Changelog
## Version 1.1.0
Breaking changes:
- From this version on, when calling `abort()` it will resolve the promise instead of rejecting it.
## Version 1.0.4

@@ -4,0 +10,0 @@

4

lib/index.js

@@ -81,3 +81,5 @@ 'use strict';

var promise = new Promise(function (resolve, reject) {
xhr.done(resolve).fail(function (jqXHR, _textStatus) {
xhr.done(resolve).fail(function (jqXHR, textStatus) {
if (textStatus === 'abort') return resolve({});
var json = parseJson(jqXHR.responseText);

@@ -84,0 +86,0 @@ var ret = json ? json.errors : {};

{
"name": "mobx-rest-jquery-adapter",
"version": "1.0.7",
"version": "1.1.0",
"description": "jQuery adapter for mobx-rest",

@@ -5,0 +5,0 @@ "repository": {

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