Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-02-25 | Copyright bump for 2022 | Sean King | |
2021-01-17 | start oban app in migrations and mix tasks | Alexander Strizhakov | |
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/>;' | |||
2020-12-14 | Fix for dropping posts/notifs in WS when mix task is executed | Alexander Strizhakov | |
- start oban in mix tasks with empty queues, plugins and crontab - fix for update_users_following_followers_counts - fix for removed logo.png - typo in resend confirmation emails mix task docs - fix for uploads mix task (start Majic.Pool) - fix for creating user mix task (start :fast_html app) | |||
2020-12-04 | shell_yes?/1 was not showing the correct message and always defaults to yes ↵ | Mark Felder | |
which is dangerous | |||
2020-11-25 | Prevent mix tasks from spewing any internal logging unless DEBUG is in the env | Mark Felder | |
e.g., DEBUG=1 mix pleroma.config migrate_from_db | |||
2020-11-20 | start limiters in mix tasks | Alexander Strizhakov | |
2020-11-17 | Need to start web_resp cache or mix task fails | Mark Felder | |
2020-09-07 | removing Stats worker from Oban cron jobs | Alexander Strizhakov | |
2020-08-19 | fixes for mix tasks | Alexander Strizhakov | |
- fix for `mix pleroma.database update_users_following_followers_counts` - raise error, if fetch was unsuccessful in emoji tasks - fix for `pleroma.digest test` task | |||
2020-07-24 | Ensure Oban is available during mix tasks. | Mark Felder | |
Fixes: mix pleroma.user rm username | |||
2020-07-24 | Fix mix tasks that make HTTP calls by starting the Gun connection pool | Mark Felder | |
2020-07-09 | cleap up | Alexander Strizhakov | |
2020-07-09 | load default config in mix tasks | Alexander Strizhakov | |
2020-07-08 | don't restart pleroma in mix tasks | Alexander Strizhakov | |
2020-07-08 | don't fully start pleroma in mix tasks | Alexander Strizhakov | |
2020-04-12 | Fix mix tasks failing on OTP releases | rinpatch | |
No idea why this was even added. Closes #1678 | |||
2020-03-30 | sync with develop | Alexander Strizhakov | |
2020-03-07 | Merge branch 'restart-fix-for-mix-tasks' into 'develop' | rinpatch | |
Wait in mix task while pleroma is rebooted See merge request pleroma/pleroma!2225 | |||
2020-03-03 | Update Copyrights | Mark Felder | |
2020-03-01 | wait in mix task while pleroma is rebooted | Alexander Strizhakov | |
2019-11-20 | Some tasks try to set log level in test environment, but we were stripping ↵ | Mark Felder | |
logs belog :warn. Ensure console backend logs in test environment are :warn, but mix tasks run in test env do not run with :debug because it's far too verbose. | |||
2019-11-19 | Allow mix tasks to always run with debug logging | Mark Felder | |
2019-09-18 | Bump copyright years of files changed in 2019 | Haelwenn (lanodan) Monnier | |
Done via the following command: git diff 1e6c102bfcfe0e4835a48f2483f2376f9bf86a20 --stat --name-only | cat - | xargs sed -i 's/2017-2018 Pleroma Authors/2017-2019 Pleroma Authors/' | |||
2019-06-22 | Ecto tasks: Resolve relative path using the application directory | rinpatch | |
instead of cwd and load the application before doing anything In OTP releases cwd != app directory and the configuration is read only if the application is loaded | |||
2019-06-20 | Rename Pleroma.Mix.Tasks.Common -> Mix.Pleroma and import it's functions | rinpatch | |
instead of aliasing This seems to be the convention for functions that can be reused between different mix tasks in all Elixir projects I've seen and it gets rid on an error message when someone runs mix pleroma.common Also in this commit by accident: - Move benchmark task under a proper namespace - Insert a space after the prompt |