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

datastore-core

Package Overview
Dependencies
Maintainers
3
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

datastore-core - npm Package Compare versions

Comparing version 4.0.0 to 5.0.0

14

CHANGELOG.md

@@ -0,1 +1,15 @@

# [5.0.0](https://github.com/ipfs/js-datastore-core/compare/v4.0.0...v5.0.0) (2021-07-06)
### chore
* update deps ([e154404](https://github.com/ipfs/js-datastore-core/commit/e154404317838f147fbb9ab11417a8d671aba9a4))
### BREAKING CHANGES
* implements new interface-datastore types, will cause duplicates in the dep tree
# [4.0.0](https://github.com/ipfs/js-datastore-core/compare/v3.0.0...v4.0.0) (2021-04-15)

@@ -2,0 +16,0 @@

14

dist/src/keytransform.d.ts

@@ -30,10 +30,10 @@ export = KeyTransformDatastore;

}
type Datastore = import('interface-datastore').Datastore;
import { Adapter } from "interface-datastore";
type Datastore = import("interface-datastore/dist/src/types").Datastore;
type KeyTransform = import("./types").KeyTransform;
type Options = import("interface-datastore/dist/src/types").Options;
type Batch = import("interface-datastore/dist/src/types").Batch;
type Query = import("interface-datastore/dist/src/types").Query;
type KeyQuery = import("interface-datastore/dist/src/types").KeyQuery;
type Key = import("interface-datastore/dist/src/key");
type KeyTransform = import('./types').KeyTransform;
type Options = import('interface-datastore').Options;
type Batch = import('interface-datastore').Batch;
type Query = import('interface-datastore').Query;
type KeyQuery = import('interface-datastore').KeyQuery;
type Key = import('interface-datastore').Key;
//# sourceMappingURL=keytransform.d.ts.map

@@ -44,11 +44,11 @@ export = MountDatastore;

}
type Datastore = import('interface-datastore').Datastore;
import { Adapter } from "interface-datastore";
import { Key } from "interface-datastore";
type Datastore = import("interface-datastore/dist/src/types").Datastore;
type Options = import("interface-datastore/dist/src/types").Options;
type Batch = import("interface-datastore/dist/src/types").Batch;
type Query = import("interface-datastore/dist/src/types").Query;
type KeyQuery = import("interface-datastore/dist/src/types").KeyQuery;
type KeyTransform = import("./types").KeyTransform;
type AwaitIterable<TEntry> = Iterable<TEntry> | AsyncIterable<TEntry>;
type Options = import('interface-datastore').Options;
type Batch = import('interface-datastore').Batch;
type Query = import('interface-datastore').Query;
type KeyQuery = import('interface-datastore').KeyQuery;
type KeyTransform = import('./types').KeyTransform;
type AwaitIterable<TEntry> = import('./types').AwaitIterable<TEntry>;
//# sourceMappingURL=mount.d.ts.map

@@ -33,8 +33,8 @@ export = NamespaceDatastore;

import Key = Key_1.Key;
type Datastore = import("interface-datastore/dist/src/types").Datastore;
type Query = import("interface-datastore/dist/src/types").Query;
type KeyQuery = import("interface-datastore/dist/src/types").KeyQuery;
type Options = import("interface-datastore/dist/src/types").Options;
type Batch = import("interface-datastore/dist/src/types").Batch;
type KeyTransform = import("./types").KeyTransform;
type Datastore = import('interface-datastore').Datastore;
type Query = import('interface-datastore').Query;
type KeyQuery = import('interface-datastore').KeyQuery;
type Options = import('interface-datastore').Options;
type Batch = import('interface-datastore').Batch;
type KeyTransform = import('./types').KeyTransform;
//# sourceMappingURL=namespace.d.ts.map

@@ -1,3 +0,3 @@

export type Datastore = import("interface-datastore/dist/src/types").Datastore;
export type Shard = import("./types").Shard;
export type Datastore = import('interface-datastore').Datastore;
export type Shard = import('./types').Shard;
import readme = require("./shard-readme");

@@ -4,0 +4,0 @@ /**

@@ -65,14 +65,14 @@ export = ShardingDatastore;

import { Key } from "interface-datastore";
type Datastore = import("interface-datastore/dist/src/types").Datastore;
type Shard = import("./types").Shard;
type Options = import("interface-datastore/dist/src/types").Options;
type Batch = import("interface-datastore/dist/src/types").Batch;
type Query = import("interface-datastore/dist/src/types").Query;
type QueryFilter = (item: import("interface-datastore/dist/src/types").Pair) => boolean;
type QueryOrder = (a: import("interface-datastore/dist/src/types").Pair, b: import("interface-datastore/dist/src/types").Pair) => 0 | 1 | -1;
type KeyQuery = import("interface-datastore/dist/src/types").KeyQuery;
type KeyQueryFilter = (item: Key) => boolean;
type KeyQueryOrder = (a: Key, b: Key) => 0 | 1 | -1;
type Pair = import("interface-datastore/dist/src/types").Pair;
type Await<TValue> = TValue | Promise<TValue>;
type Datastore = import('interface-datastore').Datastore;
type Shard = import('./types').Shard;
type Options = import('interface-datastore').Options;
type Batch = import('interface-datastore').Batch;
type Query = import('interface-datastore').Query;
type QueryFilter = import('interface-datastore').QueryFilter;
type QueryOrder = import('interface-datastore').QueryOrder;
type KeyQuery = import('interface-datastore').KeyQuery;
type KeyQueryFilter = import('interface-datastore').KeyQueryFilter;
type KeyQueryOrder = import('interface-datastore').KeyQueryOrder;
type Pair = import('interface-datastore').Pair;
type Await<TValue> = import('./types').Await<TValue>;
//# sourceMappingURL=sharding.d.ts.map

@@ -28,8 +28,8 @@ export = TieredDatastore;

import { Adapter } from "interface-datastore";
type Datastore = import("interface-datastore/dist/src/types").Datastore;
type Options = import("interface-datastore/dist/src/types").Options;
type Batch = import("interface-datastore/dist/src/types").Batch;
type Query = import("interface-datastore/dist/src/types").Query;
type KeyQuery = import("interface-datastore/dist/src/types").KeyQuery;
type Key = import("interface-datastore/dist/src/key");
type Datastore = import('interface-datastore').Datastore;
type Options = import('interface-datastore').Options;
type Batch = import('interface-datastore').Batch;
type Query = import('interface-datastore').Query;
type KeyQuery = import('interface-datastore').KeyQuery;
type Key = import('interface-datastore').Key;
//# sourceMappingURL=tiered.d.ts.map
{
"name": "datastore-core",
"version": "4.0.0",
"version": "5.0.0",
"description": "Wrapper implementation for interface-datastore",

@@ -44,2 +44,3 @@ "leadMaintainer": "Alex Potsides <alex.potsides@protocol.ai>",

"aegir": "^33.1.0",
"interface-datastore-tests": "^1.0.0",
"it-all": "^1.0.4"

@@ -49,3 +50,3 @@ },

"debug": "^4.1.1",
"interface-datastore": "^4.0.0",
"interface-datastore": "^5.1.1",
"it-filter": "^1.0.2",

@@ -52,0 +53,0 @@ "it-map": "^1.0.5",

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

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