@jaypie/mcp 0.8.31 → 0.8.32
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.
|
@@ -9,7 +9,7 @@ import { gt } from 'semver';
|
|
|
9
9
|
/**
|
|
10
10
|
* Docs Suite - Documentation services (skill, version, release_notes)
|
|
11
11
|
*/
|
|
12
|
-
const BUILD_VERSION_STRING = "@jaypie/mcp@0.8.
|
|
12
|
+
const BUILD_VERSION_STRING = "@jaypie/mcp@0.8.32#bca51f2d"
|
|
13
13
|
;
|
|
14
14
|
const __filename$1 = fileURLToPath(import.meta.url);
|
|
15
15
|
const __dirname$1 = path.dirname(__filename$1);
|
package/package.json
CHANGED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
---
|
|
2
|
+
version: 1.2.44
|
|
3
|
+
date: 2026-04-14
|
|
4
|
+
summary: Drop @jaypie/fabric runtime dependency; IndexDefinition is now owned locally
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Changes
|
|
8
|
+
|
|
9
|
+
- `@jaypie/constructs` no longer depends on `@jaypie/fabric` at runtime
|
|
10
|
+
- `IndexDefinition` is now declared inside `@jaypie/constructs` (same shape as fabric's)
|
|
11
|
+
- GSI attribute-name derivation (`getGsiAttributeNames`) is inlined into `JaypieDynamoDb`
|
|
12
|
+
- Consumers of `@jaypie/constructs` no longer transitively pick up pre-1.0 `@jaypie/fabric`
|
|
13
|
+
|
|
14
|
+
## Why
|
|
15
|
+
|
|
16
|
+
Stable packages should not take runtime deps on experimental pre-1.0 packages. Constructs only used 3 symbols from fabric (all trivial), so inlining removes the coupling without losing functionality. Apps that want fabric's runtime model/index utilities still import it directly.
|