@memextend/cursor 0.3.2 → 0.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -39,6 +39,7 @@ var SQLiteStorage = class {
39
39
  this.db = new import_better_sqlite3.default(dbPath);
40
40
  this.db.pragma("journal_mode = WAL");
41
41
  this.db.pragma("busy_timeout = 5000");
42
+ this.db.pragma("trusted_schema = ON");
42
43
  this.initialize();
43
44
  }
44
45
  initialize() {
@@ -38,6 +38,7 @@ var SQLiteStorage = class {
38
38
  this.db = new import_better_sqlite3.default(dbPath);
39
39
  this.db.pragma("journal_mode = WAL");
40
40
  this.db.pragma("busy_timeout = 5000");
41
+ this.db.pragma("trusted_schema = ON");
41
42
  this.initialize();
42
43
  }
43
44
  initialize() {
@@ -13731,6 +13731,7 @@ var SQLiteStorage = class {
13731
13731
  this.db = new import_better_sqlite3.default(dbPath);
13732
13732
  this.db.pragma("journal_mode = WAL");
13733
13733
  this.db.pragma("busy_timeout = 5000");
13734
+ this.db.pragma("trusted_schema = ON");
13734
13735
  this.initialize();
13735
13736
  }
13736
13737
  initialize() {
@@ -14590,7 +14591,7 @@ function getCurrentWorkspace() {
14590
14591
  var server = new Server(
14591
14592
  {
14592
14593
  name: "memextend",
14593
- version: "0.3.2"
14594
+ version: "0.3.3"
14594
14595
  },
14595
14596
  {
14596
14597
  capabilities: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memextend/cursor",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "Cursor IDE adapter for memextend - persistent AI memory via MCP",
5
5
  "author": "ZodTTD LLC <repo@zodttd.com>",
6
6
  "license": "MIT",
@@ -26,7 +26,7 @@
26
26
  "postinstall": "node scripts/postinstall.js || true"
27
27
  },
28
28
  "dependencies": {
29
- "@memextend/core": "^0.3.2",
29
+ "@memextend/core": "^0.3.3",
30
30
  "@modelcontextprotocol/sdk": "^1.0.0"
31
31
  },
32
32
  "devDependencies": {