@momentumcms/server-core 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 +5185 -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
|
@@ -3573,7 +3573,7 @@ function checkDepth(node, currentDepth, maxDepth, context) {
|
|
|
3573
3573
|
if (node.kind === "Field") {
|
|
3574
3574
|
if (currentDepth > maxDepth) {
|
|
3575
3575
|
context.reportError(
|
|
3576
|
-
new
|
|
3576
|
+
new import_graphql3.GraphQLError(
|
|
3577
3577
|
`Query depth of ${currentDepth} exceeds maximum allowed depth of ${maxDepth}`,
|
|
3578
3578
|
{ nodes: [node] }
|
|
3579
3579
|
)
|