New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

pouchdb-core

Package Overview
Dependencies
Maintainers
9
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pouchdb-core - npm Package Compare versions

Comparing version 7.2.2 to 7.3.0

18

lib/index.es.js

@@ -863,3 +863,3 @@ import { Map } from 'pouchdb-collections';

/* istanbul ignore else */
if (doc._attachments.hasOwnProperty(key)) {
if (Object.prototype.hasOwnProperty.call(doc._attachments, key)) {
doc._attachments[key].stub = true;

@@ -1072,4 +1072,9 @@ }

callback) {
var depDB = new this.constructor(dependentDb, this.__opts);
var dbOptions = clone(this.__opts);
if (this.__opts.view_adapter) {
dbOptions.adapter = this.__opts.view_adapter;
}
var depDB = new this.constructor(dependentDb, dbOptions);
function diffFun(doc) {

@@ -1293,2 +1298,9 @@ doc.dependentDbs = doc.dependentDbs || {};

if (opts.view_adapter) {
if (!PouchDB.adapters[opts.view_adapter] ||
!PouchDB.adapters[opts.view_adapter].valid()) {
throw new Error('Invalid View Adapter: ' + opts.view_adapter);
}
}
AbstractPouchDB.call(self);

@@ -1435,3 +1447,3 @@ self.taskqueue = new TaskQueue();

// managed automatically by set-version.js
var version = "7.2.2";
var version = "7.3.0";

@@ -1438,0 +1450,0 @@ // TODO: remove from pouchdb-core (breaking)

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

/* istanbul ignore else */
if (doc._attachments.hasOwnProperty(key)) {
if (Object.prototype.hasOwnProperty.call(doc._attachments, key)) {
doc._attachments[key].stub = true;

@@ -1076,4 +1076,9 @@ }

callback) {
var depDB = new this.constructor(dependentDb, this.__opts);
var dbOptions = pouchdbUtils.clone(this.__opts);
if (this.__opts.view_adapter) {
dbOptions.adapter = this.__opts.view_adapter;
}
var depDB = new this.constructor(dependentDb, dbOptions);
function diffFun(doc) {

@@ -1297,2 +1302,9 @@ doc.dependentDbs = doc.dependentDbs || {};

if (opts.view_adapter) {
if (!PouchDB.adapters[opts.view_adapter] ||
!PouchDB.adapters[opts.view_adapter].valid()) {
throw new Error('Invalid View Adapter: ' + opts.view_adapter);
}
}
AbstractPouchDB.call(self);

@@ -1439,3 +1451,3 @@ self.taskqueue = new TaskQueue();

// managed automatically by set-version.js
var version = "7.2.2";
var version = "7.3.0";

@@ -1442,0 +1454,0 @@ // TODO: remove from pouchdb-core (breaking)

20

package.json
{
"name": "pouchdb-core",
"version": "7.2.2",
"version": "7.3.0",
"description": "The core of PouchDB as a standalone package.",

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

"license": "Apache-2.0",
"repository": "https://github.com/pouchdb/pouchdb",
"repository": {
"type": "git",
"url": "https://github.com/pouchdb/pouchdb.git",
"directory": "packages/node_modules/pouchdb-core"
},
"jsnext:main": "./lib/index.es.js",

@@ -15,8 +19,8 @@ "dependencies": {

"inherits": "2.0.4",
"pouchdb-changes-filter": "7.2.2",
"pouchdb-collections": "7.2.2",
"pouchdb-errors": "7.2.2",
"pouchdb-fetch": "7.2.2",
"pouchdb-merge": "7.2.2",
"pouchdb-utils": "7.2.2"
"pouchdb-changes-filter": "7.3.0",
"pouchdb-collections": "7.3.0",
"pouchdb-errors": "7.3.0",
"pouchdb-fetch": "7.3.0",
"pouchdb-merge": "7.3.0",
"pouchdb-utils": "7.3.0"
},

@@ -23,0 +27,0 @@ "module": "./lib/index.es.js",

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