@momentumcms/server-analog 0.0.1 → 0.1.2
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.
- package/CHANGELOG.md +12 -0
- package/index.cjs +1 -1
- package/index.js +5263 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 0.1.2 (2026-02-16)
|
|
2
|
+
|
|
3
|
+
### 🩹 Fixes
|
|
4
|
+
|
|
5
|
+
- **release:** centralize manifestRootsToUpdate to update both source and dist ([2b8f832](https://github.com/DonaldMurillo/momentum-cms/commit/2b8f832))
|
|
6
|
+
- **create-app:** fix Angular SSR, Analog builds, and CJS/ESM compatibility ([28d4d0a](https://github.com/DonaldMurillo/momentum-cms/commit/28d4d0a))
|
|
7
|
+
|
|
8
|
+
### ❤️ Thank You
|
|
9
|
+
|
|
10
|
+
- Claude Opus 4.6
|
|
11
|
+
- Donald Murillo @DonaldMurillo
|
|
12
|
+
|
|
1
13
|
## 0.1.1 (2026-02-16)
|
|
2
14
|
|
|
3
15
|
### 🩹 Fixes
|
package/index.cjs
CHANGED
|
@@ -2814,7 +2814,7 @@ function checkDepth(node, currentDepth, maxDepth, context) {
|
|
|
2814
2814
|
if (node.kind === "Field") {
|
|
2815
2815
|
if (currentDepth > maxDepth) {
|
|
2816
2816
|
context.reportError(
|
|
2817
|
-
new
|
|
2817
|
+
new import_graphql3.GraphQLError(
|
|
2818
2818
|
`Query depth of ${currentDepth} exceeds maximum allowed depth of ${maxDepth}`,
|
|
2819
2819
|
{ nodes: [node] }
|
|
2820
2820
|
)
|