feat: Use Alchemy::UserMethods module - #295
Open
tvdeyen wants to merge 5 commits into
Open
Conversation
tvdeyen
force-pushed
the
extract-user-methods-module
branch
from
August 28, 2026 08:22
972aae7 to
377859e
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #295 +/- ##
==========================================
- Coverage 98.62% 98.58% -0.04%
==========================================
Files 11 11
Lines 291 283 -8
==========================================
- Hits 287 279 -8
Misses 4 4 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
tvdeyen
marked this pull request as ready for review
August 28, 2026 11:36
Alchemy 8.4 ships a shared module for `alchemy_roles` related methods. Using them over our custom methods. Deprecates a lot of unprefixed method names, since Alchemy provides conflict free ones.
The current prepare task just continues even if the database cannot be migrated
We stil tested with postgres 11 which is ancient
mysql does not support the default column value for permitted roles. Mariadb is the open source version maintained by the original mysql maintainer while mysql is owened by oracle. Most users will use maria anyway and alchemy_cms is also only tested with mariadb
tvdeyen
force-pushed
the
extract-user-methods-module
branch
from
August 28, 2026 11:36
377859e to
a626265
Compare
Member
Author
|
waits for AlchemyCMS/alchemy_cms#4174 |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Alchemy 8.4 ships a shared module for
alchemy_rolesrelated methods. Using them over our custom methods. Deprecates a lot of unprefixed method names, since Alchemy provides conflict free ones.