Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-05-31 | Merge remote-tracking branch 'pleroma/develop' into cycles-base-url | Alex Gleason | |
2021-05-31 | Deprecate Pleroma.Web.base_url/0 | Alex Gleason | |
Use Pleroma.Web.Endpoint.url/0 directly instead. Reduces compiler cycles. | |||
2021-03-25 | Let pins federate | Alexander Strizhakov | |
- save object ids on pin, instead of activity ids - pins federation - removed pinned_activities field from the users table - activityPub endpoint for user pins - pulling remote users pins | |||
2021-03-02 | Add OpenAPI spec for AdminAPI.UserController | Egor Kislitsyn | |
2021-02-18 | Permit :disclose_client in changesets | Mark Felder | |
2021-02-18 | Add field to user schema for controlling disclosure of client details | Mark Felder | |
2021-02-04 | Actually send the mail | Mark Felder | |
2021-02-04 | Add a registration email that only sends if no other emails (welcome, ↵ | Mark Felder | |
approval, confirmation) are enabled | |||
2021-02-04 | Also make this maybe_ for consistency | Mark Felder | |
2021-02-04 | These welcome emails are not guaranteed and can be private functions | Mark Felder | |
2021-02-02 | Merge branch 'email-stub-in-verify-credentials' into 'develop' | feld | |
Email-like field in /api/v1/accounts/verify_credentials (for PeerTube OAuth plugin and alike) See merge request pleroma/pleroma!3286 | |||
2021-01-28 | Make sure active_user_count/1 counts only local users | Egor Kislitsyn | |
2021-01-28 | Email-like field in /api/v1/accounts/verify_credentials response (for OAuth ↵ | Ivan Tashkinov | |
plugins like Peertube). Addresses https://git.pleroma.social/pleroma/pleroma-support/-/issues/56. | |||
2021-01-27 | Add active user count | Egor Kislitsyn | |
2021-01-25 | Merge branch 'develop' into refactor/deactivated_user_field | Mark Felder | |
2021-01-20 | Special handling for unconfirmed users based on instance config no longer ↵ | Mark Felder | |
needed. | |||
2021-01-18 | Merge branch 'develop' into refactor/deactivated_user_field | Mark Felder | |
2021-01-18 | Merge branch 'develop' into refactor/approval_pending_user_field | Mark Felder | |
2021-01-15 | Remove toggle_confirmation; require explicit state change | Mark Felder | |
Also cosmetic changes to make the code clearer | |||
2021-01-15 | Change user.confirmation_pending field to user.is_confirmed | Mark Felder | |
2021-01-15 | Readability | Mark Felder | |
2021-01-15 | Make setting user activation status explicit | Mark Felder | |
2021-01-15 | Remove User.restrict_deactivated/1 | Mark Felder | |
Everything else is in User.Query, no need for this odd kludge. | |||
2021-01-15 | Change user.deactivated field to user.is_active | Mark Felder | |
2021-01-15 | Further simplify changeset logic | Mark Felder | |
2021-01-15 | Change user.approval_pending field to user.is_approved | Mark Felder | |
2021-01-14 | Pbkdf2: Use it everywhere. | Lain Soykaf | |
2021-01-13 | Password: Replace Pbkdf2 with Password. | lain | |
2021-01-13 | Bump Copyright to 2021 | Haelwenn (lanodan) Monnier | |
grep -rl '# Copyright © .* Pleroma' * | xargs sed -i 's;Copyright © .* Pleroma .*;Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>;' | |||
2021-01-05 | User: Use ObjectID type to validate also-known-as field | lain | |
2020-12-31 | Aliases: refactor validate_also_known_as/1 | Alex Gleason | |
2020-12-30 | Merge remote-tracking branch 'upstream/develop' into aliases | Alex Gleason | |
2020-12-26 | Merge branch 'cachex-test' into 'develop' | lain | |
Test framework overhaul (speed, reliability) See merge request pleroma/pleroma!3209 | |||
2020-12-21 | Cachex: Unify arity of callback function | lain | |
2020-12-18 | Cachex: Make caching provider switchable at runtime. | lain | |
Defaults to Cachex. | |||
2020-12-17 | Merge remote-tracking branch 'upstream/develop' into registration-workflow | Alex Gleason | |
2020-12-09 | Merge branch 'auth-improvements' into 'develop' | lain | |
Cookie auth rework / Auth subsystem refactoring and tweaks Closes pleroma/secteam/pleroma#3 See merge request pleroma/pleroma!3112 | |||
2020-12-09 | Merge branch 'stream-follow-updates' into 'develop' | lain | |
Stream follow updates Closes #2299 See merge request pleroma/pleroma!3183 | |||
2020-12-06 | Merge remote-tracking branch 'remotes/origin/develop' into auth-improvements | Ivan Tashkinov | |
2020-12-02 | User: Remove left-over (wrong) fix. | lain | |
2020-12-02 | User: Don't allow local users in remote changesets | lain | |
2020-12-02 | Stream follow updates | Egor Kislitsyn | |
2020-11-28 | OAuth form user remembering feature. Local MastoFE login / logout fixes. | Ivan Tashkinov | |
2020-11-21 | Merge remote-tracking branch 'upstream/develop' into registration-workflow | Alex Gleason | |
2020-11-18 | Merge branch 'develop' into 'hide-muted-reactions' | minibikini | |
# Conflicts: # CHANGELOG.md | |||
2020-11-17 | Remove FedSockets | rinpatch | |
Current FedSocket implementation has a bunch of problems. It doesn't have proper error handling (in case of an error the server just doesn't respond until the connection is closed, while the client doesn't match any error messages and just assumes there has been an error after 15s) and the code is full of bad descisions (see: fetch registry which uses uuids for no reason and waits for a response by recursively querying a ets table until the value changes, or double JSON encoding). Sometime ago I almost completed rewriting fedsockets from scrach to adress these issues. However, while doing so, I realized that fedsockets are just too overkill for what they were trying to accomplish, which is reduce the overhead of federation by not signing every message. This could be done without reimplementing failure states and endpoint logic we already have with HTTP by, for example, using TLS cert auth, or switching to a more performant signature algorithm. I opened https://git.pleroma.social/pleroma/pleroma/-/issues/2262 for further discussion on alternatives to fedsockets. From discussions I had with other Pleroma developers it seems like they would approve the descision to remove them as well, therefore I am submitting this patch. | |||
2020-11-16 | Hide reactions from muted and blocked users | Egor Kislitsyn | |
2020-11-14 | Merge remote-tracking branch 'upstream/develop' into registration-workflow | Alex Gleason | |
2020-11-04 | Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into ↵ | lain | |
feature/expire-mutes | |||
2020-10-29 | Merge branch 'issue/2069' into 'develop' | Haelwenn | |
[#2069] unread_conversation_count See merge request pleroma/pleroma!2939 |