@momentumcms/server-analog 0.5.5 → 0.5.7
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 +8 -0
- package/index.cjs +3 -0
- package/index.js +3 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## 0.5.7 (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.6 (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.5 (2026-03-09)
|
|
2
10
|
|
|
3
11
|
### 🚀 Features
|
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;
|