summaryrefslogtreecommitdiff
path: root/mix.lock
AgeCommit message (Collapse)Author
2024-11-13Merge branch 'mastodon-websocket-fix' into 'develop'lain
Fix Mastodon WebSocket authentication See merge request pleroma/pleroma!4206
2024-11-13mix.lock: bump fast_html to 2.3.0Haelwenn (lanodan) Monnier
2024-09-18Oban: update to 2.18.3Mark Felder
This release includes the fix which should prevent the scenario where Postgrex crashes can cause Oban to get into a state where it will stop processing jobs.
2024-09-13Add dependencies for Swoosh's Mua mail adapterMint
2024-09-08Argon2 password supportmarcin mikołajczak
2024-09-05Bump credo to prevent it from crashingMark Felder
2024-08-17Merge remote-tracking branch 'origin/develop' into mogrifyMark Felder
2024-08-17Update Oban to 2.18Mark Felder
2024-08-16Update mogrifyMark Felder
Sent a pull request upstream to expand the version range depended on my blurhash https://github.com/rinpatch/blurhash/pull/1
2024-08-12Fix Swoosh Mailgun supportMark Felder
2024-08-04Fix Mastodon WebSocket authenticationMark Felder
Mastodon uses the Sec-Websocket-Protocol header to send the auth token. It is not clear if this is a violation of the RFC, but Mastodon is not the first application in the wild to use this header for authentication purposes. Phoenix does not allow accessing this header, so we work around it temporarily with a minor patch to Phoenix 1.7.14. We will reach out to Phoenix to discuss how to make this use case possible.
2024-07-17Add Oban Live DashboardMark Felder
2024-07-15Bump Oban to 2.17.12Mark Felder
2024-07-01Update elixir-captcha to fix the compile warningMark Felder
2024-07-01Update Phoenix to 1.7.14Mark Felder
2024-07-01Update Tesla to 1.11.0Mark Felder
2024-06-12Tests: Don't spawn processes in tests.Lain Soykaf
2024-06-08Bump depsPleroma User
2024-05-29Update Bandit to 1.5.2Mark Felder
Lots of fixes, also requires Websock Adapter update due to internal module changes in Bandit 1.4.0.
2024-02-23Exile: change to upstream pre-release commit that fixes build on FreeBSDMark Felder
2024-02-15Support a new changelog entry type: depsMark Felder
2024-02-15Support Bandit as an alternate HTTP backend to Cowboy. This is currently ↵Mark Felder
considered experimental, but may improve performance and resource usage.
2024-01-30Bump open_api_spexMark Felder
2024-01-26Bump dependenciesHaelwenn (lanodan) Monnier
2024-01-22Exile: fix for MacOS dev environmentsMark Felder
2024-01-22Exile: switch to fork with BSD compile fixMark Felder
2024-01-22Replace custom fifo implementation with ExileMark Felder
This is for streaming media to ffmpeg thumbnailer. The existing implementation relies on undocumented behavior. Erlang open_port/2 does not officially support passing a string of a file path for opening. The specs clearly state you are to provide one of the following for open_port/2: {spawn, Command :: string() | binary()} | {spawn_driver, Command :: string() | binary()} | {spawn_executable, FileName :: file:name_all()} | {fd, In :: integer() >= 0, Out :: integer() >= 0} Our method technically works but is strongly discouraged as it can block the scheduler and dialyzer throws errors as it recognizes we're breaking the contract and some of the functions we wrote may never return. This is indirectly covered by the Erlang FAQ section "9.12 Why can't I open devices (e.g. a serial port) like normal files?" https://www.erlang.org/faq/problems#idm1127
2024-01-20Add Dialyxir with manual job executionMark Felder
2023-12-30Mix: Update http_signatures versionLain Soykaf
2023-12-29Update Floki to get the :attributes_as_maps feature to allow us to compare ↵Mark Felder
equality of parsed documents without issues of key ordering
2023-12-12Mix: Update vix.Lain Soykaf
2023-12-11Use version of vix that compiles correctly under arm32Lain Soykaf
2023-11-29Merge branch 'vips' into 'develop'lain
Replace ImageMagick with Vips See merge request pleroma/pleroma!3771
2023-11-28AnalyzeMetadata: Switch to rinpatch_blurhashLain Soykaf
2023-11-28Merge branch 'promex' into 'develop'lain
Switch to PromEx for prometheus metrics See merge request pleroma/pleroma!3967
2023-11-17Merge branch 'develop' into 'vips'feld
# Conflicts: # mix.exs
2023-11-17Fetch the library from the Pleroma repositoryMark Felder
2023-11-17Upload.Filter.AnalyzeMetadata: Blurhash with a Rust NIF, and use Vix to ↵Mark Felder
retrieve image metadata
2023-11-14mix: Bump elixir-captcha for system-CFLAGSHaelwenn (lanodan) Monnier
2023-11-14mix: cherry-pick eblurhash latest git for system-CFLAGSHaelwenn (lanodan) Monnier
2023-11-13Override elixir_make versionMark Felder
2023-11-13Replace ImageMagick with Vips for Media Preview ProxyMark Felder
2023-11-13Switch to PromEx for prometheus metricsMark Felder
Recommending use of the separate HTTP server for exposing the metrics and securing it externally on your firewall or reverse proxy. It will listen on port 4021 by default.
2023-11-07Merge branch 'develop' into phoenix1.7Mark Felder
2023-06-27mix: Remove override on plugHaelwenn (lanodan) Monnier
2023-06-27mix: 2023-06 deps updateHaelwenn (lanodan) Monnier
this fixes compatibility with Erlang OTP 26 Related: https://git.pleroma.social/pleroma/pleroma/-/issues/2913
2023-06-02Merge branch 'develop' into 'phoenix1.7'feld
# Conflicts: # mix.exs
2023-06-02mix: bump gettext to ~0.20Haelwenn (lanodan) Monnier
Includes https://github.com/elixir-gettext/gettext/pull/304 in 0.20.0+ Includes https://github.com/elixir-gettext/expo/issues/91 in 0.22+ via expo 0.2.0+
2023-05-31Remove locked version of plugMark Felder
Required for Phoenix 1.7 websocket changes
2023-05-31Update to Phoenix 1.7Mark Felder
Chase the other deps to match versions you get from a current "mix phx.new" project creation