summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-06-08Update job namesMark Felder
2024-06-08OTP updatesMark Felder
Update to otp25 for Elixir 1.13; otp26 for Elixir 1.15
2024-06-08Merge branch 'stream-poll-end' into 'develop'feld
Stream end of poll notification over websockets and web push See merge request pleroma/pleroma!4137
2024-06-08Stream end of poll notification over websockets and web pushMark Felder
2024-06-08Rename Notification.send/1 to Notification.stream/1Mark Felder
Also update other places where we use the term "send" instead of "stream". This should make it clearer that we are streaming these over websockets / web push and not sending an activity.
2024-06-08Test that end of poll notifications are streamed over websocketsMark Felder
2024-06-08Merge branch 'bump-deps' into 'develop'feld
Bump deps See merge request pleroma/pleroma!4140
2024-06-08Bump depsPleroma User
2024-06-07Merge branch 'feld/cleanup' into 'develop'feld
Minor cleanup commits See merge request pleroma/pleroma!4142
2024-06-07Merge branch 'spex/notification-types' into 'develop'feld
Spex: Add missing notification types to the api spec See merge request pleroma/pleroma!4141
2024-06-07Merge branch 'bugfix/rich_media_config' into 'develop'feld
RichMedia: Respect configuration on status previews See merge request pleroma/pleroma!4130
2024-06-07Small cleanup / fixesMark Felder
2024-06-07Add missing pool to the typeMark Felder
2024-06-07Do not start unused ConcurrentLimiter processesMark Felder
2024-06-07Add some useful logging for ApiSpec errorsMark Felder
2024-06-07Add missing notification types to the api specMark Felder
2024-06-07Fixes for default disabled rich media in test environmentMark Felder
Also add a test to validate the correct error when disabled
2024-06-05Merge branch 'cowboy-streaming' into 'develop'feld
Allow Cowboy to stream the response instead of chunk it See merge request pleroma/pleroma!4138
2024-06-04Allow Cowboy to stream the response instead of chunk itMark Felder
2024-06-01Merge branch 'ipfs-dialyzer-fixes' into 'develop'lain
IPFS uploader: dialyzer fixes See merge request pleroma/pleroma!4129
2024-06-01Merge branch '3276-pinned-collection-fetch' into 'develop'lain
Use proper workers for fetching pins instead of an ad-hoc task Closes #3276 See merge request pleroma/pleroma!4136
2024-05-31Use proper workers for fetching pins instead of an ad-hoc taskFloatingghost
BUG: https://git.pleroma.social/pleroma/pleroma/-/issues/3276
2024-05-30IPFS uploader: dialyzer fixesMark Felder
lib/pleroma/uploaders/ipfs.ex:43:no_return Function put_file/1 has no local return. ________________________________________________________________________________ lib/pleroma/uploaders/ipfs.ex:49:call The function call will not succeed. Pleroma.HTTP.post( binary(), _mp :: %Tesla.Multipart{ :boundary => binary(), :content_type_params => [binary()], :parts => [ %Tesla.Multipart.Part{ :body => binary(), :dispositions => [any()], :headers => [any()] }, ... ] }, [], [{:params, [{:"cid-version", <<49>>}]}] ) will never return since the success typing is: (binary(), binary(), [{binary(), binary()}], Keyword.t()) :: {:error, _} | {:ok, %Tesla.Env{ :__client__ => %Tesla.Client{ :adapter => nil | {_, _} | {_, _, _}, :fun => _, :post => [any()], :pre => [any()] }, :__module__ => atom(), :body => _, :headers => [{_, _}], :method => :delete | :get | :head | :options | :patch | :post | :put | :trace, :opts => [{_, _}], :query => [{_, _}], :status => nil | integer(), :url => binary() }} and the contract is (Pleroma.HTTP.Request.url(), String.t(), Pleroma.HTTP.Request.headers(), :elixir.keyword()) :: {:ok, Tesla.Env.t()} | {:error, any()}
2024-05-30Merge branch 'mrf-nsfw-otp25' into 'develop'feld
Fix Logger.warn deprecation error on OTP25 See merge request pleroma/pleroma!4135
2024-05-30Merge branch 'missing-fks' into 'develop'lain
Add missing foreign key indexes See merge request pleroma/pleroma!4134
2024-05-30Fix Logger.warn deprecation error on OTP25Mark Felder
2024-05-30Missing FKs changelogMark Felder
2024-05-30Add missing foreign key indexesMark Felder
2024-05-30Test for missing FK indexesMark Felder
2024-05-30Merge branch 'bandit-update' into 'develop'lain
Update Bandit to 1.5.2 See merge request pleroma/pleroma!4133
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-05-29Merge branch 'mix-indexer' into 'develop'feld
Add additional flags to the Pleroma.Search.Indexer Mix task See merge request pleroma/pleroma!4131
2024-05-29Add additional flags to the Pleroma.Search.Indexer Mix taskMark Felder
2024-05-29RichMedia: Add extra checks on configurationHaelwenn (lanodan) Monnier
2024-05-29RichMedia: Respect configuration on status previewsHaelwenn (lanodan) Monnier
2024-05-28Merge branch 'dialyzer-fixes' into 'develop'feld
Dialyzer fixes See merge request pleroma/pleroma!4128
2024-05-28Merge branch 'feature/akkoma-prune-old-posts' into 'develop'lain
add options to mix prune_objects to delete more things See merge request pleroma/pleroma!3952
2024-05-28Dialyzer: fix invalid @specMark Felder
2024-05-28DatabaseTest: Fix test.Lain Soykaf
2024-05-28Dialyzer: The function call will not succeed.Mark Felder
:idna.encode/1 expects a charlist even though it will accept a binary string. That functionality is undocumented / not part of its typespec, so we should turn it into a charlist first. Also switch to using match?/2 lib/pleroma/user.ex:2056:call The function call will not succeed. :idna.encode(_host :: binary()) will never return since the success typing is: (string()) :: string() and the contract is (string()) :: string()
2024-05-28Dialyzer: overlapping_contractMark Felder
Wrong @spec name for remove_from_block/2 lib/pleroma/user.ex:2721:overlapping_contract Overloaded contract for Pleroma.User.add_to_block/2 has overlapping domains; such contracts are currently unsupported and are simply ignored.
2024-05-28Dialyzer: The pattern can never match the typeMark Felder
We will never pass :plain to query_with/4, so remove that match and change it to query_with/3 lib/pleroma/search/database_search.ex:127:pattern_match The pattern can never match the type. Pattern: _q, :rum, _search_query, :plain Type: %Ecto.Query{ :aliases => _, :assocs => _, :combinations => _, :distinct => _, :from => _, :group_bys => _, :havings => _, :joins => _, :limit => _, :lock => _, :offset => _, :order_bys => _, :prefix => _, :preloads => _, :select => _, :sources => _, :updates => _, :wheres => _, :windows => _, :with_ctes => _ }, :rum, _, :websearch
2024-05-28LintingLain Soykaf
2024-05-28Dialyzer: no_local_returnMark Felder
WebPushEncryption.send_web_push/4 was written to raise on erroroneus input, so we must guard against that. lib/pleroma/web/push/impl.ex:65:no_return Function push_message/4 has no local return.
2024-05-28Dialyzer: fix pattern matches preventing video thumbnailing from workingMark Felder
lib/pleroma/web/media_proxy/media_proxy_controller.ex:154:pattern_match The pattern can never match the type. Pattern: {:ok, _thumbnail_binary} Type: {:error, boolean() | {:ffmpeg, :command_not_found}}
2024-05-28Use the configured http client options for mediaproxyMark Felder
2024-05-28Dialyzer: guard clause can never succeedMark Felder
lib/pleroma/web/activity_pub/mrf/dnsrbl_policy.ex:106:guard_fail The guard clause: when _ :: [ binary() | [string() | char()] | {string() | integer(), string()} | {{byte(), byte(), byte(), byte()}, integer(), binary()} | {integer(), integer(), integer(), string() | byte()} | {integer(), integer(), string(), string(), string(), string()} | {string(), string(), integer(), integer(), integer(), integer(), integer()} | {char(), char(), char(), char(), char(), char(), char(), char()} ] === nil can never succeed.
2024-05-28Dialyzer: fix invalid @specMark Felder
The callback already defines the @spec and these do not match it. lib/pleroma/upload/filter/exiftool/strip_location.ex:12:callback_spec_type_mismatch The @spec return type does not match the expected return type for filter/1 callback in Pleroma.Upload.Filter behaviour. Actual: @spec filter(...) :: {:ok, _} Expected: @spec filter(...) :: {:error, _} | {:ok, :filtered | :noop} | {:ok, :filtered, struct()}
2024-05-28Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into ↵Lain Soykaf
pleroma-feature/akkoma-prune-old-posts
2024-05-28Dialyzer: fix invalid @specMark Felder
lib/pleroma/notification.ex:492:invalid_contract The @spec for the function does not match the success typing of the function. Function: Pleroma.Notification.get_notified_from_activity/2 Success typing: @spec get_notified_from_activity(_, _) :: [any()]