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

avoscloud-sdk

Package Overview
Dependencies
Maintainers
2
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

avoscloud-sdk - npm Package Compare versions

Comparing version 0.6.7 to 0.6.8

2

bower.json
{
"name": "leancloud-jssdk.js",
"version": "0.6.7",
"version": "0.6.8",
"homepage": "https://github.com/leancloud/javascript-sdk",

@@ -5,0 +5,0 @@ "authors": [

@@ -0,1 +1,6 @@

#0.6.8 日期:2016 年 2 月 1 日
* 修复了云引擎中文件上传到 AWS 的问题。
* 修复了 `AV.User#fetch` 不支持 fetch options 的问题。
* 修复了使用 Pointer 时可能出现类型错误的问题。
#0.6.7 日期:2015 年 12 月 3 日

@@ -2,0 +7,0 @@ * 撤销了 0.6.6 中会与 node 的 domain 模块冲突的优化。

@@ -9,3 +9,3 @@ var path = require('path');

var mocha = require('gulp-mocha');
var jsdoc = require("gulp-jsdoc");
//var jsdoc = require("gulp-jsdoc");
var order = require("gulp-order");

@@ -12,0 +12,0 @@ var rename = require('gulp-rename');

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

*/
fetch: function(options) {
fetch: function(fetchOptions, options) {
var newOptions = options ? _.clone(options) : {};

@@ -471,3 +471,3 @@ newOptions.success = function(model) {

};
return AV.Object.prototype.fetch.call(this, newOptions);
return AV.Object.prototype.fetch.call(this, fetchOptions, newOptions);
},

@@ -474,0 +474,0 @@

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

var pointer = AV.Object._create(className);
if(value.createdAt){
if(Object.keys(value).length > 3) {
delete value.__type;

@@ -563,0 +563,0 @@ delete value.className;

'use strict';
module.exports = "js0.6.7";
module.exports = "js0.6.8";
{
"name": "avoscloud-sdk",
"version": "0.6.7",
"version": "0.6.8",
"main": "./lib/av.js",

@@ -23,3 +23,3 @@ "description": "AVOSCloud JavaScript SDK.",

"debug": "^2.1.1",
"expect.js ": "0.2.0",
"expect.js": "0.2.0",
"gulp": "^3.8.10",

@@ -26,0 +26,0 @@ "gulp-clean": "^0.3.1",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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