@stacksjs/config 0.70.201 → 0.70.203

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.
@@ -1,8 +1,8 @@
1
1
  export const capabilityRegistry = [
2
2
  { category: "database", name: "sqlite", status: "supported", implementation: "storage/framework/core/database/src/drivers/sqlite.ts", testEvidence: ["storage/framework/core/database/tests/integration.test.ts", "storage/framework/core/database/tests/sqlite-tx-serialization.test.ts"], topology: "embedded", prerequisites: ["Bun SQLite"], limitations: [] },
3
- { category: "database", name: "mysql", status: "partial", implementation: "storage/framework/core/database/src/drivers/mysql.ts", testEvidence: ["storage/framework/core/database/tests/integration.test.ts"], topology: "client-server", prerequisites: ["MySQL service"], limitations: ["The default CI suite does not yet publish a dedicated dialect report."] },
3
+ { category: "database", name: "mysql", status: "partial", implementation: "storage/framework/core/database/src/drivers/mysql.ts", testEvidence: ["storage/framework/core/database/tests/integration.test.ts"], topology: "client-server", prerequisites: ["MySQL service"], limitations: ["The default CI suite does not yet publish a dedicated dialect report.", "The migration files shipped under database/migrations are emitted for a single dialect (SQLite in the default template) and do not replay on MySQL. They must be regenerated against MySQL before migrating."] },
4
4
  { category: "database", name: "singlestore", status: "experimental", implementation: "storage/framework/core/database/src/drivers/mysql.ts", testEvidence: [], topology: "client-server", prerequisites: ["SingleStore service"], limitations: ["MySQL wire compatibility exists, but a dedicated conformance matrix is not published."] },
5
- { category: "database", name: "postgres", status: "partial", implementation: "storage/framework/core/database/src/drivers/postgres.ts", testEvidence: ["storage/framework/core/database/tests/postgres-pivot-timestamptz.test.ts"], topology: "client-server", prerequisites: ["PostgreSQL service"], limitations: ["The default CI suite does not provision PostgreSQL."] },
5
+ { category: "database", name: "postgres", status: "partial", implementation: "storage/framework/core/database/src/drivers/postgres.ts", testEvidence: ["storage/framework/core/database/tests/postgres-pivot-timestamptz.test.ts"], topology: "client-server", prerequisites: ["PostgreSQL service"], limitations: ["The default CI suite does not provision PostgreSQL.", "The migration files shipped under database/migrations are emitted for a single dialect (SQLite in the default template) and do not replay on PostgreSQL. They must be regenerated against PostgreSQL before migrating."] },
6
6
  { category: "database", name: "dynamodb", status: "unsupported", implementation: "storage/framework/core/database/src/drivers/dynamodb.ts", testEvidence: [], topology: "managed-service", prerequisites: ["DynamoDB"], limitations: ["DynamoDB helpers are not an ORM SQL driver and cannot be selected as database.default."] },
7
7
  { category: "queue", name: "sync", status: "supported", implementation: "storage/framework/core/queue/src/job.ts", testEvidence: ["storage/framework/core/queue/tests/jobs.test.ts"], topology: "inline", prerequisites: [], limitations: ["Not durable."] },
8
8
  { category: "queue", name: "database", status: "supported", implementation: "storage/framework/core/queue/src/job.ts", testEvidence: ["storage/framework/core/queue/tests/integration.test.ts", "storage/framework/core/queue/tests/failure-path-correctness.test.ts"], topology: "worker-and-embedded-sqlite", prerequisites: ["Bun SQLite for the retained CI contract"], limitations: ["Other SQL providers require their own provider evidence."] },
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@stacksjs/config",
3
3
  "type": "module",
4
4
  "sideEffects": false,
5
- "version": "0.70.201",
5
+ "version": "0.70.203",
6
6
  "description": "The Stacks config helper methods.",
7
7
  "author": "Chris Breuer",
8
8
  "contributors": [
@@ -53,8 +53,8 @@
53
53
  "ts-pantry": "^0.10.34"
54
54
  },
55
55
  "devDependencies": {
56
- "@stacksjs/alias": "0.70.201",
56
+ "@stacksjs/alias": "0.70.203",
57
57
  "better-dx": "^0.2.17",
58
- "@stacksjs/types": "0.70.201"
58
+ "@stacksjs/types": "0.70.203"
59
59
  }
60
60
  }