Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-09-07 | Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into ↵matrix-explorations | lain | |
matrix-explorations | |||
2020-09-07 | Merge branch 'temp-hackney-fix' into 'develop' | rinpatch | |
temp hackney fix See merge request pleroma/pleroma!2951 | |||
2020-09-07 | Merge branch 'bugfix/favicon-too-long' into 'develop' | rinpatch | |
instance: Drop favicon URLs longer than 255 characters Closes #2116 See merge request pleroma/pleroma!2949 | |||
2020-09-07 | Merge branch 'fix/rich-media-fake-statuses' into 'develop' | lain | |
Rich Media: Do not cache URLs for preview statuses Closes #1987 See merge request pleroma/pleroma!2956 | |||
2020-09-07 | instance: Log catch favicon errors as warnings | Haelwenn (lanodan) Monnier | |
2020-09-05 | RichMedia: do not log webpages missing metadata as errors | rinpatch | |
Also fixes the return value of Parser.parse on errors, previously was just `:ok` due to the logger call in the end | |||
2020-09-05 | ConnectionPool middleware: handle connection opening errors | rinpatch | |
2020-09-05 | ConnectionPool: fix the previous hotfix | rinpatch | |
I rushed the hotfix and forgot how `pop_in` actually works, I want to die. We need some integration tests for the HTTP client | |||
2020-09-05 | ConnectionPool middleware: fix a crash due to unimplemented behaviour | rinpatch | |
Structs don't implement Access behaviour, so this crashed. Tests didn't catch it and I didn't test that part of the codepath. Very sorry | |||
2020-09-05 | Rich Media: Do not cache URLs for preview statuses | rinpatch | |
Closes #1987 | |||
2020-09-05 | Prevent AccountView and instance.get_or_update_favicon fails | Haelwenn (lanodan) Monnier | |
2020-09-04 | ConnectionPool middleware: Fix connection leak on ReverseProxy redirects | rinpatch | |
Requires a patched Tesla due to upstream not saving opts between redirects, patch submitted at https://github.com/teamon/tesla/pull/414 | |||
2020-09-04 | Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into ↵ | lain | |
matrix-explorations | |||
2020-09-04 | fix for ReverseProxy | Alexander Strizhakov | |
2020-09-04 | temp hackney fix | Alexander Strizhakov | |
2020-09-03 | HTTP: radically simplify pool checkin/checkout | rinpatch | |
Use a custom tesla middleware instead of adapter helper function + custom redirect middleware. This will also fix "Client died before releasing the connection" messages when the request pool is overloaded. Since the checkout is now done after passing ConcurrentLimiter. This is technically less efficient, since the connection needs to be checked in/out every time the middleware is left or entered respectively. But I don't think the nanoseconds we might lose on redirects to the same host are worth the complexity. | |||
2020-09-03 | Merge branch 'bugfix/incoming-poll-emoji' into 'develop' | lain | |
Fix emoji in Question, force generated context/context_id insertion Closes #1870 See merge request pleroma/pleroma!2915 | |||
2020-09-03 | Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into ↵ | lain | |
seanking/pleroma-fix_install_fe_bug | |||
2020-09-02 | Merge branch 'fix/2095-deactivated-account-reset' into 'develop' | feld | |
Disallow password resets for deactivated accounts Closes #2095 See merge request pleroma/pleroma!2935 | |||
2020-09-02 | Merge branch 'fix/1991-tzdata-update' into 'develop' | lain | |
user agent if Endpoint is not started yet Closes #1991 See merge request pleroma/pleroma!2945 | |||
2020-09-02 | Merge branch 'bugfix/mastoapi-lists' into 'develop' | lain | |
Fix removing an account from a list Closes #2103 See merge request pleroma/pleroma!2940 | |||
2020-09-02 | ListController: DRY up stuff. | lain | |
2020-09-02 | Disallow password resets for deactivated accounts. | Mark Felder | |
Ensure all responses to password reset events are identical. | |||
2020-09-02 | StatusView: Start fetching rich media cards as soon as possible | rinpatch | |
2020-09-02 | user agent if Endpoint is not started yet | Alexander Strizhakov | |
2020-09-02 | Rich media: Add failure tracking | rinpatch | |
2020-09-02 | html.ex: optimize external url extraction | rinpatch | |
By using a :not() selector and only extracting attributes from the first match. | |||
2020-09-02 | Merge branch 'fix/2047-rich-media-parser' into 'develop' | rinpatch | |
RichMedia parser fix Closes #2047 See merge request pleroma/pleroma!2941 | |||
2020-09-02 | Merge branch 'http-fixes' into 'develop' | rinpatch | |
Improvements and fixes for http requests See merge request pleroma/pleroma!2904 | |||
2020-09-02 | timeout option moved to gun adapter helper | Alexander Strizhakov | |
2020-09-02 | default pool for tz_data client | Alexander Strizhakov | |
2020-09-02 | correct pool and uniform headers format | Alexander Strizhakov | |
2020-09-02 | don't overwrite passed pool option in http clients | Alexander Strizhakov | |
2020-09-02 | improvements and fixes for http requests | Alexander Strizhakov | |
- fix for gun worker termination in some circumstances - pool for http clients (ex_aws, tzdata) - default pool timeouts for gun - gun retries on gun_down messages - s3 upload timeout if streaming enabled | |||
2020-09-02 | search: fix 'following' query parameter | Karol Kosek | |
The parameter included the accounts that are following you (followers) instead of those you are actually following. Co-Authored-By: Haelwenn (lanodan) Monnier <contact@hacktivis.me> | |||
2020-09-01 | Fix frontend install mix task bug | Sean King | |
2020-09-01 | don't fail on url fetch | Alexander Strizhakov | |
2020-09-01 | Fix removing an account from a list | Haelwenn (lanodan) Monnier | |
Mastodon (Frontend) changed a different method for deletes, keeping old format as mastodon documentation is too loose | |||
2020-09-01 | User table: ensure bio is always a string | rinpatch | |
Gets rid of '|| ""' in multiple places and fixes #2067 | |||
2020-09-01 | fetcher: Remove fix_object call for Question activities | Haelwenn (lanodan) Monnier | |
2020-09-01 | common_fixes: Force inserting context and context_id | Haelwenn (lanodan) Monnier | |
2020-09-01 | Add new Emoji Ecto.Type and fix emoji in Question | Haelwenn (lanodan) Monnier | |
2020-09-01 | transmogrifier: Remove mastodon emoji-format from emoji field | Haelwenn (lanodan) Monnier | |
2020-09-01 | application.ex: disable warnings_as_errors at runtime | rinpatch | |
see changed files for rationale | |||
2020-08-31 | Merge branch 'chat-relation-constraints' into 'develop' | Haelwenn | |
Chats: Add cascading delete on both referenced users. See merge request pleroma/pleroma!2934 | |||
2020-08-31 | Chats: Add cascading delete on both referenced users. | lain | |
Also remove the now-superfluous join in the chat controller, which was only used to filter out these cases. | |||
2020-08-31 | Notification: Small refactor. | lain | |
2020-08-28 | marks notifications as read after mute | Maksim Pechnikov | |
2020-08-28 | Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into ↵ | lain | |
pleroma-2.1-rc0 | |||
2020-08-27 | Merge branch '2078-list-fixes' into 'develop' | Haelwenn | |
Resolve "List timeline returns incorrectly assigned Account for replies and repeats" Closes #2070 and #2078 See merge request pleroma/pleroma!2923 |