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

libsql

Package Overview
Dependencies
Maintainers
1
Versions
80
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

libsql - npm Package Compare versions

Comparing version 0.4.2-pre.1 to 0.4.2-pre.3

10

index.js

@@ -31,2 +31,3 @@ "use strict";

databaseSyncSync,
databaseSyncUntilSync,
databaseExecSync,

@@ -36,2 +37,3 @@ databasePrepareSync,

databaseLoadExtension,
databaseMaxWriteReplicationIndex,
statementRaw,

@@ -105,2 +107,6 @@ statementIsReader,

syncUntil(replicationIndex) {
return databaseSyncUntilSync.call(this.db, replicationIndex);
}
/**

@@ -227,2 +233,6 @@ * Prepares a SQL statement for execution.

maxWriteReplicationIndex() {
return databaseMaxWriteReplicationIndex.call(this.db)
}
/**

@@ -229,0 +239,0 @@ * Executes a SQL statement.

16

package.json
{
"name": "libsql",
"version": "0.4.2-pre.1",
"version": "0.4.2-pre.3",
"description": "A better-sqlite3 compatible API for libSQL that supports Bun, Deno, and Node",

@@ -76,10 +76,10 @@ "os": [

"optionalDependencies": {
"@libsql/darwin-arm64": "0.4.2-pre.1",
"@libsql/darwin-x64": "0.4.2-pre.1",
"@libsql/linux-arm64-gnu": "0.4.2-pre.1",
"@libsql/linux-arm64-musl": "0.4.2-pre.1",
"@libsql/linux-x64-gnu": "0.4.2-pre.1",
"@libsql/linux-x64-musl": "0.4.2-pre.1",
"@libsql/win32-x64-msvc": "0.4.2-pre.1"
"@libsql/darwin-arm64": "0.4.2-pre.3",
"@libsql/darwin-x64": "0.4.2-pre.3",
"@libsql/linux-arm64-gnu": "0.4.2-pre.3",
"@libsql/linux-arm64-musl": "0.4.2-pre.3",
"@libsql/linux-x64-gnu": "0.4.2-pre.3",
"@libsql/linux-x64-musl": "0.4.2-pre.3",
"@libsql/win32-x64-msvc": "0.4.2-pre.3"
}
}

@@ -45,4 +45,6 @@ "use strict";

databaseSyncAsync,
databaseSyncUntilAsync,
databaseExecAsync,
databasePrepareAsync,
databaseMaxWriteReplicationIndex,
databaseDefaultSafeIntegers,

@@ -107,2 +109,6 @@ statementRaw,

syncUntil(replicationIndex) {
return databaseSyncUntilAsync.call(this.db, replicationIndex);
}
/**

@@ -229,2 +235,6 @@ * Prepares a SQL statement for execution.

maxWriteReplicationIndex() {
return databaseMaxWriteReplicationIndex.call(this.db)
}
/**

@@ -231,0 +241,0 @@ * Executes a SQL statement.

@@ -19,2 +19,3 @@ export = Database;

sync(): any;
syncUntil(replicationIndex: any): any;
/**

@@ -39,2 +40,3 @@ * Prepares a SQL statement for execution.

loadExtension(...args: any[]): void;
maxWriteReplicationIndex(): any;
/**

@@ -41,0 +43,0 @@ * Executes a SQL statement.

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