@momentumcms/server-analog 0.5.6 → 0.5.8

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 CHANGED
@@ -1,3 +1,11 @@
1
+ ## 0.5.8 (2026-03-10)
2
+
3
+ This was a version bump only for server-analog to align it with other projects, there were no code changes.
4
+
5
+ ## 0.5.7 (2026-03-10)
6
+
7
+ This was a version bump only for server-analog to align it with other projects, there were no code changes.
8
+
1
9
  ## 0.5.6 (2026-03-10)
2
10
 
3
11
  This was a version bump only for server-analog to align it with other projects, there were no code changes.
package/index.cjs CHANGED
@@ -2783,6 +2783,9 @@ var CollectionOperationsImpl = class _CollectionOperationsImpl {
2783
2783
  return true;
2784
2784
  }
2785
2785
  async checkAccess(operation, id, data) {
2786
+ if (this.context.overrideAccess) {
2787
+ return;
2788
+ }
2786
2789
  const accessFn = this.collectionConfig.access?.[operation];
2787
2790
  if (!accessFn) {
2788
2791
  return;
package/index.js CHANGED
@@ -2750,6 +2750,9 @@ var CollectionOperationsImpl = class _CollectionOperationsImpl {
2750
2750
  return true;
2751
2751
  }
2752
2752
  async checkAccess(operation, id, data) {
2753
+ if (this.context.overrideAccess) {
2754
+ return;
2755
+ }
2753
2756
  const accessFn = this.collectionConfig.access?.[operation];
2754
2757
  if (!accessFn) {
2755
2758
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@momentumcms/server-analog",
3
- "version": "0.5.6",
3
+ "version": "0.5.8",
4
4
  "description": "Nitro/h3 adapter for Momentum CMS with Analog.js support",
5
5
  "license": "MIT",
6
6
  "author": "Momentum CMS Contributors",