Socket
Socket
Sign inDemoInstall

kinvey-html5-sdk

Package Overview
Dependencies
Maintainers
2
Versions
138
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kinvey-html5-sdk - npm Package Compare versions

Comparing version 3.3.2 to 3.3.3

9

CHANGELOG.md
# Changelog
## [v3.3.3](https://github.com/Kinvey/html5-sdk/tree/v3.3.3) (2016-12-16)
[Full Changelog](https://github.com/Kinvey/html5-sdk/compare/v3.3.2...v3.3.3)<br/>
**Merged pull requests:**
- Added support for aggregations against the local cache. [#6](https://github.com/Kinvey/html5-sdk/pull/6)
**Updated packages:**
- Updated `kinvey-node-sdk` to `v3.3.3`.
## [v3.3.2](https://github.com/Kinvey/html5-sdk/tree/v3.3.2) (2016-12-03)

@@ -3,0 +12,0 @@

10

dist/middleware/src/cache.js

@@ -59,3 +59,7 @@ 'use strict';

} else if (method === 'POST' || method === 'PUT') {
promise = storage.save(collection, body);
if (entityId === '_group') {
promise = storage.find(collection);
} else {
promise = storage.save(collection, body);
}
} else if (method === 'DELETE') {

@@ -77,2 +81,6 @@ if (collection && entityId) {

if (method === 'POST' && entityId === '_group') {
response.statusCode = 200;
}
if (!data || (0, _isEmpty2.default)(data)) {

@@ -79,0 +87,0 @@ response.statusCode = 204;

8

package.json
{
"name": "kinvey-html5-sdk",
"version": "3.3.2",
"version": "3.3.3",
"description": "Kinvey JavaScript SDK for HTML5.",

@@ -20,3 +20,3 @@ "homepage": "http://www.kinvey.com",

"scripts": {
"build": "npm uninstall kinvey-node-sdk && npm install && npm run clean && npm run transpile && npm run bundle && npm run minify",
"build": "npm run clean && npm run transpile && npm run bundle && npm run minify",
"bundle": "webpack",

@@ -34,3 +34,3 @@ "clean": "del coverage dist s3",

"lint:test": "eslint test/unit/**",
"preversion": "del node_modules && npm install && npm test",
"preversion": "npm test",
"postversion": "git push && git push --tags",

@@ -46,3 +46,3 @@ "s3": "npm run build && shjs ./scripts/s3.js",

"es6-promise": "^4.0.3",
"kinvey-node-sdk": "3.3.2",
"kinvey-node-sdk": "3.3.3",
"lodash": "^4.16.2"

@@ -49,0 +49,0 @@ },

@@ -1,2 +0,2 @@

# Kinvey HTML5 SDK [![Build Status](https://travis-ci.org/Kinvey/html5-sdk.svg?branch=master)](https://travis-ci.org/Kinvey/html5-sdk) [![Code Climate](https://codeclimate.com/github/Kinvey/html5-sdk/badges/gpa.svg)](https://codeclimate.com/github/Kinvey/html5-sdk) [![codecov](https://codecov.io/gh/Kinvey/html5-sdk/branch/master/graph/badge.svg)](https://codecov.io/gh/Kinvey/html5-sdk)
# Kinvey HTML5 SDK [![Build Status](https://travis-ci.org/Kinvey/html5-sdk.svg?branch=master)](https://travis-ci.org/Kinvey/html5-sdk) [![Code Climate](https://codeclimate.com/github/Kinvey/html5-sdk/badges/gpa.svg)](https://codeclimate.com/github/Kinvey/html5-sdk)

@@ -3,0 +3,0 @@ [Kinvey](http://www.kinvey.com) (pronounced Kin-vey, like convey) makes it ridiculously easy for developers to setup, use and operate a cloud backend for their mobile apps. They don't have to worry about connecting to various cloud services, setting up servers for their backend, or maintaining and scaling them.

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