Socket
Socket
Sign inDemoInstall

pubnub

Package Overview
Dependencies
Maintainers
4
Versions
224
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pubnub - npm Package Compare versions

Comparing version 4.0.10 to 4.0.11

2

bower.json
{
"name": "pubnub",
"version": "4.0.10",
"version": "4.0.11",
"main": "dist/web/pubnub.min.js",

@@ -5,0 +5,0 @@ "license": "https://github.com/pubnub/javascript/blob/master/LICENSE",

## [v4.0.11](https://github.com/pubnub/javascript/tree/v4.0.11)
[Full Changelog](https://github.com/pubnub/javascript/compare/v4.0.10...v4.0.11)
- ⭐dependency upgrades
## [v4.0.10](https://github.com/pubnub/javascript/tree/v4.0.10)

@@ -3,0 +13,0 @@

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

var _hmacSha = require('./hmac-sha256.js');
var _hmacSha = require('./hmac-sha256');

@@ -16,0 +16,0 @@ var _hmacSha2 = _interopRequireDefault(_hmacSha);

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

var _config = require('./config.js');
var _config = require('./config');

@@ -20,0 +20,0 @@ var _config2 = _interopRequireDefault(_config);

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

var _pubnubCommon = require('../core/pubnub-common.js');
var _pubnubCommon = require('../core/pubnub-common');

@@ -12,0 +12,0 @@ var _pubnubCommon2 = _interopRequireDefault(_pubnubCommon);

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

var _pubnubCommon = require('../core/pubnub-common.js');
var _pubnubCommon = require('../core/pubnub-common');

@@ -10,0 +10,0 @@ var _pubnubCommon2 = _interopRequireDefault(_pubnubCommon);

{
"name": "pubnub",
"preferGlobal": false,
"version": "4.0.10",
"version": "4.0.11",
"author": "PubNub <support@pubnub.com>",

@@ -30,4 +30,4 @@ "description": "Publish & Subscribe Real-time Messaging with PubNub",

"dependencies": {
"superagent": "^2.2.0",
"uuid": "^2.0.2"
"superagent": "^2.3.0",
"uuid": "^2.0.3"
},

@@ -37,3 +37,3 @@ "noAnalyze": false,

"babel-core": "^6.14.0",
"babel-eslint": "6.1.2",
"babel-eslint": "7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",

@@ -45,7 +45,7 @@ "babel-plugin-transform-class-properties": "^6.11.5",

"chai": "^3.5.0",
"eslint-config-airbnb": "11.1.0",
"eslint-plugin-flowtype": "2.17.1",
"eslint-plugin-import": "^1.15.0",
"eslint-config-airbnb": "12.0.0",
"eslint-plugin-flowtype": "2.19.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-mocha": "4.5.1",
"eslint-plugin-react": "6.2.1",
"eslint-plugin-react": "6.3.0",
"flow-bin": "^0.32.0",

@@ -71,6 +71,6 @@ "gulp": "^3.9.1",

"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.1.1",
"karma-mocha": "^1.2.0",
"karma-phantomjs-launcher": "1.0.2",
"karma-spec-reporter": "0.0.26",
"mocha": "3.0.2",
"mocha": "3.1.0",
"nock": "^8.0.0",

@@ -80,3 +80,3 @@ "phantomjs-prebuilt": "2.1.12",

"run-sequence": "^1.2.2",
"sinon": "^1.17.5",
"sinon": "^1.17.6",
"stats-webpack-plugin": "^0.4.2",

@@ -86,3 +86,3 @@ "uglify-js": "^2.7.3",

"webpack": "^1.13.2",
"webpack-dev-server": "1.15.1",
"webpack-dev-server": "1.16.1",
"webpack-stream": "^3.2.0"

@@ -89,0 +89,0 @@ },

@@ -20,3 +20,3 @@ # PubNub JavaScript SDK (V4)

## CDN Links
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.0.10.min.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.0.10.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.0.11.min.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.0.11.js
/* @flow */
import Config from '../config';
import CryptoJS from './hmac-sha256.js';
import CryptoJS from './hmac-sha256';

@@ -6,0 +6,0 @@ type CryptoConstruct = {

@@ -7,3 +7,3 @@ /* @flow */

import Crypto from './cryptography/index';
import Config from './config.js';
import Config from './config';
import categoryConstants from '../constants/categories';

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

/* @flow */
import PubNubCore from '../core/pubnub-common.js';
import PubNubCore from '../core/pubnub-common';
import { InternalSetupStruct } from '../core/flow_interfaces';

@@ -5,0 +5,0 @@

/* @flow */
/* global localStorage, navigator, window */
import PubNubCore from '../core/pubnub-common.js';
import PubNubCore from '../core/pubnub-common';
import { InternalSetupStruct } from '../core/flow_interfaces';

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

@@ -7,3 +7,3 @@ /* global describe, beforeEach, it, before, afterEach, after */

import uuidGenerator from 'uuid';
import PubNub from '../../../lib/core/pubnub-common.js';
import PubNub from '../../../lib/core/pubnub-common';

@@ -10,0 +10,0 @@ describe('components/config', () => {

@@ -7,3 +7,3 @@ /* global describe, beforeEach, it, before, afterEach, after */

import utils from '../../utils';
import PubNub from '../../../lib/node/index.js';
import PubNub from '../../../lib/node/index';
import packageJSON from '../../../package.json';

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

@@ -10,3 +10,3 @@ /* global describe, beforeEach, it, before, afterEach, after */

import utils from '../../utils';
import PubNub from '../../../lib/node/index.js';
import PubNub from '../../../lib/node/index';

@@ -13,0 +13,0 @@ describe('#components/reconnection_manger', () => {

@@ -9,3 +9,3 @@ /* global describe, beforeEach, it, before, afterEach, after */

import utils from '../../utils';
import PubNub from '../../../lib/node/index.js';
import PubNub from '../../../lib/node/index';

@@ -12,0 +12,0 @@ describe('#components/subscription_manager', () => {

@@ -9,3 +9,3 @@ /* global describe, beforeEach, it, before, afterEach, after */

import utils from '../../utils';
import PubNub from '../../../lib/node/index.js';
import PubNub from '../../../lib/node/index';

@@ -12,0 +12,0 @@ describe('access endpoints', () => {

@@ -7,3 +7,3 @@ /* global describe, beforeEach, it, before, afterEach, after */

import utils from '../../utils';
import PubNub from '../../../lib/node/index.js';
import PubNub from '../../../lib/node/index';

@@ -10,0 +10,0 @@ describe('channel group endpoints', () => {

@@ -7,3 +7,3 @@ /* global describe, beforeEach, it, before, afterEach, after */

import utils from '../../utils';
import PubNub from '../../../lib/node/index.js';
import PubNub from '../../../lib/node/index';

@@ -10,0 +10,0 @@ describe('history endpoints', () => {

@@ -6,3 +6,3 @@ /* global describe, beforeEach, it, before, afterEach, after */

import utils from '../../utils';
import PubNub from '../../../lib/node/index.js';
import PubNub from '../../../lib/node/index';

@@ -9,0 +9,0 @@ describe('presence endpoints', () => {

@@ -7,3 +7,3 @@ /* global describe, beforeEach, it, before, afterEach, after */

import utils from '../../utils';
import PubNub from '../../../lib/node/index.js';
import PubNub from '../../../lib/node/index';

@@ -10,0 +10,0 @@ describe('publish endpoints', () => {

@@ -7,3 +7,3 @@ /* global describe, beforeEach, it, before, afterEach, after */

import utils from '../../utils';
import PubNub from '../../../lib/node/index.js';
import PubNub from '../../../lib/node/index';

@@ -10,0 +10,0 @@ describe('push endpoints', () => {

@@ -7,3 +7,3 @@ /* global describe, beforeEach, it, before, afterEach, after */

import utils from '../../utils';
import PubNub from '../../../lib/node/index.js';
import PubNub from '../../../lib/node/index';

@@ -10,0 +10,0 @@ describe('subscribe endpoints', () => {

@@ -7,3 +7,3 @@ /* global describe, beforeEach, it, before, afterEach, after */

import utils from '../../utils';
import PubNub from '../../../lib/node/index.js';
import PubNub from '../../../lib/node/index';

@@ -10,0 +10,0 @@ describe('time endpoints', () => {

@@ -7,3 +7,3 @@ /* global describe, beforeEach, it, before, afterEach, after */

import utils from '../../utils';
import PubNub from '../../../lib/node/index.js';
import PubNub from '../../../lib/node/index';

@@ -10,0 +10,0 @@ describe('heartbeat', () => {

@@ -7,3 +7,3 @@ /* global describe, beforeEach, it, before, afterEach, after */

import utils from '../../utils';
import PubNub from '../../../lib/node/index.js';
import PubNub from '../../../lib/node/index';

@@ -10,0 +10,0 @@ describe('setting state operation', () => {

@@ -7,3 +7,3 @@ /* global describe, beforeEach, it, before, afterEach, after */

import utils from '../../utils';
import PubNub from '../../../lib/node/index.js';
import PubNub from '../../../lib/node/index';

@@ -10,0 +10,0 @@ describe('unsubscribe', () => {

@@ -6,3 +6,3 @@ /* global describe, beforeEach, it, before, afterEach, after */

import uuidGenerator from 'uuid';
import PubNub from '../../lib/node/index.js';
import PubNub from '../../lib/node/index';

@@ -9,0 +9,0 @@ describe('#core / mounting point', () => {

Sorry, the diff of this file is not supported yet

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 not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc