Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-06-02 | Merge branch 'openapi/admin/oauth-apps' into 'develop' | lain | |
Add OpenAPI spec for AdminAPI.OAuthAppContoller See merge request pleroma/pleroma!2582 | |||
2020-06-02 | Merge branch 'openapi/admin/invites' into 'develop' | lain | |
Add OpenAPI spec for AdminAPI.InviteController See merge request pleroma/pleroma!2585 | |||
2020-06-02 | Notification: Add function to backfill notification types | lain | |
2020-06-02 | Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into ↵ | lain | |
remake-remodel-dms | |||
2020-06-02 | Activity: Remove notifications-related functions. | lain | |
2020-06-02 | NotificationController: Don't return chat_mentions by default. | lain | |
2020-06-02 | Merge branch 'fix/invisible-repeats' into 'develop' | lain | |
Do not include activities of invisible users unless explicitly requested Closes #1833 See merge request pleroma/pleroma!2620 | |||
2020-06-02 | Notifications: Make notifications save their type. | lain | |
2020-06-02 | Do not include activities of invisible users unless explicitly requested | rinpatch | |
Closes #1833 | |||
2020-06-02 | Merge branch 'feature/status-by-id-account-view' into 'develop' | lain | |
another view for account in admin-fe status_show Closes #1783 See merge request pleroma/pleroma!2543 | |||
2020-06-02 | Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into ↵ | lain | |
remake-remodel-dms | |||
2020-06-02 | replies filtering for blocked domains | Alexander Strizhakov | |
2020-06-01 | Merge branch 'user-updates' into 'develop' | rinpatch | |
AccountController: Federate user account changes. Closes pleroma-support#33 and #1801 See merge request pleroma/pleroma!2617 | |||
2020-06-01 | exclude replies on blocked domains | Alexander Strizhakov | |
2020-06-01 | CommonAPI: Newlines -> br for chat messages. | lain | |
2020-06-01 | Merge remote-tracking branch 'origin/develop' into global-status-expiration | Egor Kislitsyn | |
2020-06-01 | Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into ↵ | lain | |
remake-remodel-dms | |||
2020-06-01 | TimelineController: Only return `Create` in public timelines. | lain | |
2020-06-01 | AccountController: Federate user account changes. | lain | |
Hotfixy commit, will be moved to the pipeline. | |||
2020-05-30 | Merge branch 'chore/bump-hackney' into 'develop' | Haelwenn | |
mix.lock: update hackney to 1.16.0 Closes #1612 See merge request pleroma/pleroma!2614 | |||
2020-05-30 | Fix config setting to not affect other tests | Roman Chvanikov | |
2020-05-30 | hackney adapter helper: support tlsv1.3 and remove custom opts | rinpatch | |
- partitial_chain is no longer exported, but it seems to be the default anyway. - The bug that caused sni to not be sent automatically seems to be fixed - https://github.com/benoitc/hackney/issues/612 | |||
2020-05-30 | Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into ↵ | lain | |
remake-remodel-dms | |||
2020-05-30 | CommonAPI: Linkify chat messages. | lain | |
2020-05-30 | SafeText: Let through basic html. | lain | |
2020-05-30 | Merge branch 'conversation-pagination' into 'develop' | lain | |
Conversation pagination See merge request pleroma/pleroma!2601 | |||
2020-05-30 | Conversation pagination | Steven Fuchs | |
2020-05-30 | [#1794] Fixed search query splitting regex to deal with Unicode. Adjusted a ↵ | Ivan Tashkinov | |
test. | |||
2020-05-30 | Merge remote-tracking branch 'remotes/origin/develop' into ↵ | Ivan Tashkinov | |
fix/1794-hashtag-search-results | |||
2020-05-29 | fix unused var warning | Roman Chvanikov | |
2020-05-29 | [#1794] Improvements to hashtags extraction from search query. | Ivan Tashkinov | |
2020-05-30 | Add test for stream boosts of mastodon user | kPherox | |
2020-05-29 | AP C2S: allow limit & order on outbox & read_inbox | Haelwenn (lanodan) Monnier | |
2020-05-29 | Bugfix: Reuse Controller.Helper pagination for APC2S | Haelwenn (lanodan) Monnier | |
2020-05-29 | SideEffects: Stream out chat messages. | lain | |
2020-05-29 | Streamer: Add a chat message stream. | lain | |
2020-05-29 | Merge branch 'fix-relay-repeat-notification' into 'develop' | lain | |
Fix relay repeat notification See merge request pleroma/pleroma!2590 | |||
2020-05-29 | Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into ↵ | lain | |
remake-remodel-dms | |||
2020-05-29 | Merge branch 'fix/mediaproxy-bypass-emoji' into 'develop' | rinpatch | |
Fix profile emojis bypassing mediaproxy and harden CSP Closes #1810 See merge request pleroma/pleroma!2596 | |||
2020-05-28 | Add OpenApi spec to AdminAPI.ConfigController | Egor Kislitsyn | |
2020-05-28 | Move config actions to AdminAPI.ConfigController | Egor Kislitsyn | |
2020-05-28 | Formatting | Mark Felder | |
2020-05-28 | Merge branch 'fix/1557-gets-local-pack' into 'develop' | lain | |
get-packs for local generated pack Closes #1557 See merge request pleroma/pleroma!2604 | |||
2020-05-28 | Merge branch 'feature/1792-update-actor-type' into 'develop' | lain | |
Validate actor type See merge request pleroma/pleroma!2593 | |||
2020-05-28 | get-packs for local generated pack | Alexander Strizhakov | |
2020-05-28 | Refactor notification settings | Mark Felder | |
2020-05-27 | HTTP Security plug: rewrite &csp_string/0 | rinpatch | |
- Directives are now separated with ";" instead of " ;", according to https://www.w3.org/TR/CSP2/#policy-parsing the space is optional - Use an IO list, which at the end gets converted to a binary as opposed to ++ing a bunch of arrays with binaries together and joining them to a string. I doubt it gives any significant real world advantage, but the code is cleaner and now I can sleep at night. - The static part of csp is pre-joined to a single binary at compile time. Same reasoning as the last point. | |||
2020-05-27 | AccountView: Use mediaproxy URLs for emojis | rinpatch | |
Also use atom keys in emoji maps instead of binaries Closes #1810 | |||
2020-05-27 | MediaProxy test: use config macros instead of directly putting values | rinpatch | |
They were not properly cleaned later and caused trouble for another tests | |||
2020-05-27 | Exclude post actor from to of relay announce | kPherox | |