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

dexie

Package Overview
Dependencies
Maintainers
2
Versions
166
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dexie - npm Package Compare versions

Comparing version 3.2.0 to 3.2.1-beta.1

2

CONTRIBUTING.md

@@ -9,3 +9,3 @@ HOW TO CONTRIBUTE

* fixing bugs via pull-requests
* developing addons or other [derived work](http://dexie.org/docs/DerivedWork)
* developing addons or other [derived work](https://dexie.org/docs/DerivedWork)
* promoting Dexie.js

@@ -12,0 +12,0 @@ * sharing ideas

@@ -7,5 +7,5 @@ /*

*
* Version 3.2.0, Thu Nov 18 2021
* Version 3.2.1-beta.1, Fri Nov 19 2021
*
* http://dexie.org
* https://dexie.org
*

@@ -555,5 +555,5 @@ * Apache License Version 2.0, January 2004, http://www.apache.org/licenses/

readonly isPrimaryKey?: boolean;
/** True if this index represents the primary key and is not inbound (http://dexie.org/docs/inbound) */
/** True if this index represents the primary key and is not inbound (https://dexie.org/docs/inbound) */
readonly outbound?: boolean;
/** True if and only if keyPath is an array (http://dexie.org/docs/Compound-Index) */
/** True if and only if keyPath is an array (https://dexie.org/docs/Compound-Index) */
readonly compound?: boolean;

@@ -795,3 +795,3 @@ /** keyPath, null for primary key, string for single-property indexes, Array<string> for compound indexes */

*
* http://dexie.org/docs/DexieErrors/DexieError
* https://dexie.org/docs/DexieErrors/DexieError
*

@@ -810,3 +810,3 @@ */

*
* Each error should be documented at http://dexie.org/docs/DexieErrors/Dexie.<errname>
* Each error should be documented at https://dexie.org/docs/DexieErrors/Dexie.<errname>
*

@@ -831,55 +831,55 @@ * The generic type DexieExceptionClasses is a map of full error name to

export type DexieErrors = {
// http://dexie.org/docs/DexieErrors/Dexie.OpenFailedError
// https://dexie.org/docs/DexieErrors/Dexie.OpenFailedError
OpenFailed: "OpenFailedError";
// http://dexie.org/docs/DexieErrors/Dexie.VersionChangeError
// https://dexie.org/docs/DexieErrors/Dexie.VersionChangeError
VersionChange: "VersionChangeError";
// http://dexie.org/docs/DexieErrors/Dexie.SchemaError
// https://dexie.org/docs/DexieErrors/Dexie.SchemaError
Schema: "SchemaError";
// http://dexie.org/docs/DexieErrors/Dexie.UpgradeError
// https://dexie.org/docs/DexieErrors/Dexie.UpgradeError
Upgrade: "UpgradeError";
// http://dexie.org/docs/DexieErrors/Dexie.InvalidTableError
// https://dexie.org/docs/DexieErrors/Dexie.InvalidTableError
InvalidTable: "InvalidTableError";
// http://dexie.org/docs/DexieErrors/Dexie.MissingAPIError
// https://dexie.org/docs/DexieErrors/Dexie.MissingAPIError
MissingAPI: "MissingAPIError";
// http://dexie.org/docs/DexieErrors/Dexie.NoSuchDatabaseError
// https://dexie.org/docs/DexieErrors/Dexie.NoSuchDatabaseError
NoSuchDatabase: "NoSuchDatabaseError";
// http://dexie.org/docs/DexieErrors/Dexie.InvalidArgumentError
// https://dexie.org/docs/DexieErrors/Dexie.InvalidArgumentError
InvalidArgument: "InvalidArgumentError";
// http://dexie.org/docs/DexieErrors/Dexie.SubTransactionError
// https://dexie.org/docs/DexieErrors/Dexie.SubTransactionError
SubTransaction: "SubTransactionError";
// http://dexie.org/docs/DexieErrors/Dexie.UnsupportedError
// https://dexie.org/docs/DexieErrors/Dexie.UnsupportedError
Unsupported: "UnsupportedError";
// http://dexie.org/docs/DexieErrors/Dexie.InternalError
// https://dexie.org/docs/DexieErrors/Dexie.InternalError
Internal: "InternalError";
// http://dexie.org/docs/DexieErrors/Dexie.DatabaseClosedError
// https://dexie.org/docs/DexieErrors/Dexie.DatabaseClosedError
DatabaseClosed: "DatabaseClosedError";
// http://dexie.org/docs/DexieErrors/Dexie.PrematureCommitError
// https://dexie.org/docs/DexieErrors/Dexie.PrematureCommitError
PrematureCommit: "PrematureCommitError";
// http://dexie.org/docs/DexieErrors/Dexie.ForeignAwaitError
// https://dexie.org/docs/DexieErrors/Dexie.ForeignAwaitError
ForeignAwait: "ForeignAwaitError";
// http://dexie.org/docs/DexieErrors/Dexie.UnknownError
// https://dexie.org/docs/DexieErrors/Dexie.UnknownError
Unknown: "UnknownError";
// http://dexie.org/docs/DexieErrors/Dexie.ConstraintError
// https://dexie.org/docs/DexieErrors/Dexie.ConstraintError
Constraint: "ConstraintError";
// http://dexie.org/docs/DexieErrors/Dexie.DataError
// https://dexie.org/docs/DexieErrors/Dexie.DataError
Data: "DataError";
// http://dexie.org/docs/DexieErrors/Dexie.TransactionInactiveError
// https://dexie.org/docs/DexieErrors/Dexie.TransactionInactiveError
TransactionInactive: "TransactionInactiveError";
// http://dexie.org/docs/DexieErrors/Dexie.ReadOnlyError
// https://dexie.org/docs/DexieErrors/Dexie.ReadOnlyError
ReadOnly: "ReadOnlyError";
// http://dexie.org/docs/DexieErrors/Dexie.VersionError
// https://dexie.org/docs/DexieErrors/Dexie.VersionError
Version: "VersionError";
// http://dexie.org/docs/DexieErrors/Dexie.NotFoundError
// https://dexie.org/docs/DexieErrors/Dexie.NotFoundError
NotFound: "NotFoundError";
// http://dexie.org/docs/DexieErrors/Dexie.InvalidStateError
// https://dexie.org/docs/DexieErrors/Dexie.InvalidStateError
InvalidState: "InvalidStateError";
// http://dexie.org/docs/DexieErrors/Dexie.InvalidAccessError
// https://dexie.org/docs/DexieErrors/Dexie.InvalidAccessError
InvalidAccess: "InvalidAccessError";
// http://dexie.org/docs/DexieErrors/Dexie.AbortError
// https://dexie.org/docs/DexieErrors/Dexie.AbortError
Abort: "AbortError";
// http://dexie.org/docs/DexieErrors/Dexie.TimeoutError
// https://dexie.org/docs/DexieErrors/Dexie.TimeoutError
Timeout: "TimeoutError";
// http://dexie.org/docs/DexieErrors/Dexie.QuotaExceededError
// https://dexie.org/docs/DexieErrors/Dexie.QuotaExceededError
QuotaExceeded: "QuotaExceededError";
// http://dexie.org/docs/DexieErrors/Dexie.DataCloneError
// https://dexie.org/docs/DexieErrors/Dexie.DataCloneError
DataClone: "DataCloneError";

@@ -889,3 +889,3 @@ };

*
* http://dexie.org/docs/DexieErrors/Dexie.ModifyError
* https://dexie.org/docs/DexieErrors/Dexie.ModifyError
*/

@@ -899,3 +899,3 @@ export interface ModifyError extends DexieError {

*
* http://dexie.org/docs/DexieErrors/Dexie.BulkError
* https://dexie.org/docs/DexieErrors/Dexie.BulkError
*/

@@ -902,0 +902,0 @@ export interface BulkError extends DexieError {

{
"name": "dexie",
"version": "3.2.0",
"version": "3.2.1-beta.1",
"description": "A Minimalistic Wrapper for IndexedDB",

@@ -5,0 +5,0 @@ "main": "dist/dexie.js",

Dexie.js
========
[![NPM Version][npm-image]][npm-url] [![Build Status](https://travis-ci.com/dfahlander/Dexie.js.svg?branch=master)](https://travis-ci.com/dfahlander/Dexie.js)[![Tested with Browserstack](http://dexie.org/assets/images/tested-with-browserstack2.png)](https://www.browserstack.com)
[![NPM Version][npm-image]][npm-url] [![Build Status](https://travis-ci.com/dfahlander/Dexie.js.svg?branch=master)](https://travis-ci.com/dfahlander/Dexie.js)[![Tested with Browserstack](https://dexie.org/assets/images/tested-with-browserstack2.png)](https://www.browserstack.com)
Dexie.js is a wrapper library for indexedDB - the standard database in the browser. http://dexie.org
Dexie.js is a wrapper library for indexedDB - the standard database in the browser. https://dexie.org

@@ -49,11 +49,11 @@ #### Why?

[Tutorial](http://dexie.org/docs/Tutorial)
[Tutorial](https://dexie.org/docs/Tutorial)
[API Reference](http://dexie.org/docs/API-Reference)
[API Reference](https://dexie.org/docs/API-Reference)
[Samples](http://dexie.org/docs/Samples)
[Samples](https://dexie.org/docs/Samples)
### Performance
Dexie has kick-ass performance. Its [bulk methods](http://dexie.org/docs/Table/Table.bulkPut()) take advantage of a lesser-known feature in IndexedDB that makes it possible to store stuff without listening to every onsuccess event. This speeds up the performance to a maximum.
Dexie has kick-ass performance. Its [bulk methods](https://dexie.org/docs/Table/Table.bulkPut()) take advantage of a lesser-known feature in IndexedDB that makes it possible to store stuff without listening to every onsuccess event. This speeds up the performance to a maximum.

@@ -112,3 +112,3 @@ #### Supported operations

```
This is a mix of methods from [WhereClause](http://dexie.org/docs/WhereClause/WhereClause), [Table](http://dexie.org/docs/Table/Table) and [Collection](http://dexie.org/docs/Collection/Collection). Dive into the [API reference](http://dexie.org/docs/API-Reference) to see the details.
This is a mix of methods from [WhereClause](https://dexie.org/docs/WhereClause/WhereClause), [Table](https://dexie.org/docs/Table/Table) and [Collection](https://dexie.org/docs/Collection/Collection). Dive into the [API reference](https://dexie.org/docs/API-Reference) to see the details.

@@ -194,3 +194,3 @@ #### Hello World (ES2016 / ES7)

-------
http://dexie.org/docs/Samples
https://dexie.org/docs/Samples

@@ -201,7 +201,7 @@ https://github.com/dfahlander/Dexie.js/tree/master/samples

-----
[http://dexie.org/docs/Questions-and-Answers](http://dexie.org/docs/Questions-and-Answers)
[https://dexie.org/docs/Questions-and-Answers](https://dexie.org/docs/Questions-and-Answers)
Website
-------
[http://dexie.org](http://dexie.org)
[https://dexie.org](https://dexie.org)

@@ -208,0 +208,0 @@ Install over npm

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

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