Age | Commit message (Collapse) | Author |
|
|
|
|
|
/api/v1/push/subscription
|
|
pleroma:emoji_reaction subscriptions
|
|
|
|
|
|
|
|
|
|
Remove FedSockets
See merge request pleroma/pleroma!3155
|
|
|
|
|
|
Current FedSocket implementation has a bunch of problems. It doesn't
have proper error handling (in case of an error the server just doesn't
respond until the connection is closed, while the client doesn't match
any error messages and just assumes there has been an error after 15s)
and the code is full of bad descisions (see: fetch registry which uses
uuids for no reason and waits for a response by recursively querying a
ets table until the value changes, or double JSON encoding).
Sometime ago I almost completed rewriting fedsockets from scrach to
adress these issues. However, while doing so, I realized that fedsockets
are just too overkill for what they were trying to accomplish, which is
reduce the overhead of federation by not signing every message.
This could be done without reimplementing failure states and endpoint
logic we already have with HTTP by, for example, using TLS cert auth,
or switching to a more performant signature algorithm. I opened
https://git.pleroma.social/pleroma/pleroma/-/issues/2262 for further
discussion on alternatives to fedsockets.
From discussions I had with other Pleroma developers it seems like they
would approve the descision to remove them as well,
therefore I am submitting this patch.
|
|
feature/local-only-scope
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pleroma.instance: Fix Exiftool module name
See merge request pleroma/pleroma!3143
|
|
|
|
|
|
'develop'
fixes 2034 Make notifs view work for reports
Closes #2034
See merge request pleroma/pleroma!2912
|
|
* These are the first small steps for issue 2034 "Reports should send a notification to admins".
* I added a new type of notification "pleroma:report" to the the database manually (a migration will need to be written later)
* I added the new type to the notification_controller
* I made the view return the notification. It doesn't include the report itself (yet)
|
|
|
|
Validate the content-type of the response when fetching an object,
according to https://www.w3.org/TR/activitypub/#x3-2-retrieving-objects.
content-type headers had to be added to many mocks in order to support
this, some of this was done with a regex. While I did go over the
resulting files to check I didn't modify anything unrelated, there is a
possibility I missed something.
Closes pleroma#1948
|
|
Title injection change
See merge request pleroma/pleroma!3132
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- log level reduction, if policy doesn't implement config_description method
- docs in dev.md
|
|
|
|
|
|
'develop'
Config descriptions for custom MRF policies
Closes #2222
See merge request pleroma/pleroma!3128
|
|
- fetching activity data
- attachment prefetching
- using limiter to prevent overload
|
|
|
|
- revert UserAllowPolicy description
- MRF descriptions order
|
|
|
|
Resolve "Wrong user link in Report email"
Closes #2260
See merge request pleroma/pleroma!3121
|
|
Fix title on load of Pleroma HTML, fixes #2281
Closes #2281
See merge request pleroma/pleroma!3125
|
|
|
|
|
|
While taking a final look at instance.gen before releasing I noticed
that the release_env task outputs messages in broken english. Upon
further inspection it seems to have even more severe issues which, in
my opinion, warrant it's at least temporary removal:
- We do not explain what it actually does, anywhere. Neither the task
docs nor instance.gen, nor installation instructions.
- It does not respect FHS on OTP releases (uses /opt/pleroma/config even
though we store the config in /etc/pleroma/config.exs).
- It doesn't work on OTP releases, which is the main reason it exists.
Neither systemd nor openrc service files for OTP include it.
- It is not mentioned in install guides other than the ones for Debian
and OTP releases.
|
|
Expiring mutes for users and activities
Closes #1817
See merge request pleroma/pleroma!2971
|
|
|
|
stats-genserver-fix
|