-
Notifications
You must be signed in to change notification settings - Fork 1
MM-69269 - Spaces permissions and RBAC: read gates, capabilities, auto-join #10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
catalintomai
wants to merge
31
commits into
master
Choose a base branch
from
MM-69269-permissions-rbac
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
979eb49
Pin server/public to the Spaces RBAC core branch
catalintomai 10e5598
Add space capability model and ViewAccess field
catalintomai 67ec83e
Add space scheme store and ViewAccess migration
catalintomai 0d414fe
Enforce subtree ownership on cross-space page moves
catalintomai fd72f5c
Add permission stubs and fixtures for space gates
catalintomai 73db0f2
Add space permission resolution, auto-join and membership capabilities
catalintomai 0a6cc00
Update app tests for space permission gates
catalintomai b153f83
Gate space and page routes on space permissions
catalintomai fa20869
Add containerized end-to-end suite and core image build
catalintomai cc00562
Merge remote-tracking branch 'origin/master' into MM-69269-permission…
catalintomai 8ac2c0b
sddress coderabbitai comments
catalintomai 661afdf
simplification, comments updates
catalintomai ab317b9
some renaming
catalintomai 1123f23
further simplifications
catalintomai 1e55684
Tighten permission-layer comments and unify authorization helper naming
catalintomai 7def140
Merge master: page drafts, presence, and content handling
catalintomai 29bd660
Gate draft and presence routes on space page capabilities
catalintomai f746cd2
ename method
catalintomai 8b6bffe
renaming helpers
catalintomai 9839c2e
more renaming
catalintomai 34ad1e9
using pluginapi instead of core table handling from plugin
catalintomai 4ba808c
further changes
catalintomai b346d65
add support for delete permission
catalintomai b1f43de
address CC comments
catalintomai 961ba2d
address coderabbitai comments
catalintomai e6278fb
further restructuring(1)
catalintomai 659eb7c
further restructuring(2)
catalintomai fd743e2
Merge branch 'master' into MM-69269-permissions-rbac
catalintomai 217ad5c
further restructuring(3)
catalintomai 14034a3
further restructuring(4)
catalintomai 00e9645
further restructuring(5)
catalintomai File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win
The go.mod pseudo-version pattern misses the tagless shape, so the cross-check can silently self-disable.
The pattern requires a base release plus a pre-release counter:
v[0-9]+\.[0-9]+\.[0-9]+-[0-9]+\.[0-9]+-[0-9a-f]+. It matches the current pin (v0.4.4-0.20260804125319-416829fe8ff3). It does not match the other standard Go pseudo-version shape,v0.0.0-20260804125319-416829fe8ff3, which has no-<n>.counter group.go mod tidyproduces that shape whenever the pinned commit is not descended from a tag.In that case
gomod_commitis empty, the step prints "pinned to a released version" and exits 0. The drift the comment above describes then goes unreported, which is the outcome this step exists to prevent.Match the revision by position instead of by base-version shape, and fail rather than exit 0 when
server/publicis present but the revision cannot be parsed.🛠️ Proposed fix
🤖 Prompt for AI Agents