@momentumcms/server-core 0.1.0 → 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.
Files changed (4) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/index.cjs +1 -1
  3. package/index.js +5185 -0
  4. package/package.json +39 -39
package/CHANGELOG.md CHANGED
@@ -1,3 +1,26 @@
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
+
13
+ ## 0.1.1 (2026-02-16)
14
+
15
+ ### 🩹 Fixes
16
+
17
+ - **create-app:** fix E2E test and template bugs for full pipeline validation ([4d7e3a9](https://github.com/DonaldMurillo/momentum-cms/commit/4d7e3a9))
18
+
19
+ ### ❤️ Thank You
20
+
21
+ - Claude Opus 4.6
22
+ - Donald Murillo @DonaldMurillo
23
+
1
24
  ## 0.1.0 (2026-02-16)
2
25
 
3
26
  ### 🚀 Features
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 (require("graphql")).GraphQLError(
3576
+ new import_graphql3.GraphQLError(
3577
3577
  `Query depth of ${currentDepth} exceeds maximum allowed depth of ${maxDepth}`,
3578
3578
  { nodes: [node] }
3579
3579
  )