@objectstack/service-package 6.9.0 → 7.0.0

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -94,7 +94,7 @@ CREATE INDEX IF NOT EXISTS idx_packages_latest
94
94
 
95
95
  ## Requirements
96
96
 
97
- - A driver plugin that registers an `IDataEngine` under the service name `'objectql'` with `execute()` support — typically [`@objectstack/driver-sql`](../../plugins/driver-sql) or [`@objectstack/driver-turso`](../../plugins/driver-turso). `@objectstack/driver-memory` can be used for tests but does not persist across restarts.
97
+ - A driver plugin that registers an `IDataEngine` under the service name `'objectql'` with `execute()` support — typically [`@objectstack/driver-sql`](../../plugins/driver-sql). `@objectstack/driver-memory` can be used for tests but does not persist across restarts. (ObjectStack Cloud additionally ships `@objectstack/driver-turso` for edge/multi-tenant.)
98
98
 
99
99
  ## When to use
100
100
 
@@ -111,7 +111,7 @@ CREATE INDEX IF NOT EXISTS idx_packages_latest
111
111
 
112
112
  - [`@objectstack/core`](../../core) — kernel hosting this plugin.
113
113
  - [`@objectstack/spec`](../../spec) — provides `ObjectStackManifest` and `IDataEngine` contracts.
114
- - [`@objectstack/driver-sql`](../../plugins/driver-sql), [`@objectstack/driver-turso`](../../plugins/driver-turso) supply the `'objectql'` service.
114
+ - [`@objectstack/driver-sql`](../../plugins/driver-sql) — supplies the `'objectql'` service. (ObjectStack Cloud also ships `@objectstack/driver-turso`.)
115
115
 
116
116
  ## Links
117
117
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@objectstack/service-package",
3
- "version": "6.9.0",
3
+ "version": "7.0.0",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Package management service for ObjectStack — publish, install, and manage packages",
6
6
  "type": "module",
@@ -14,8 +14,8 @@
14
14
  }
15
15
  },
16
16
  "dependencies": {
17
- "@objectstack/core": "6.9.0",
18
- "@objectstack/spec": "6.9.0"
17
+ "@objectstack/core": "7.0.0",
18
+ "@objectstack/spec": "7.0.0"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@types/node": "^25.9.1",