Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-11-17 | Remove FedSockets | rinpatch | |
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. | |||
2020-09-18 | Federate data through persistent websocket connections | Steven Fuchs | |
2020-06-16 | moving custom ecto types in context folders | Alexander Strizhakov | |
2020-05-01 | Signature: Handle non-ap ids in key ids. | lain | |
Mastodon and Gab sometimes send the format `acct:name@server`. | |||
2020-03-03 | Update Copyrights | Mark Felder | |
2019-10-06 | Move local keys out of `user.info` | rinpatch | |
2019-08-22 | fix /inbox for Relay | Maksim Pechnikov | |
2019-07-28 | Fix HTTP sig tweak on KeyId | Thomas Sileo | |
2019-07-23 | signature: properly deduce the actor from misskey key IDs | Ariadne Conill | |
2019-07-18 | signature: make key_id_to_actor_id() public | Ariadne Conill | |
2019-07-17 | http signatures: derive actor ID from key ID. | Ariadne Conill | |
Almost all AP servers return their key ID as the actor URI with #main-key added. Hubzilla, which doesn't, uses a URL which refers to the actor anyway, so worst case, Hubzilla users get refetched. | |||
2019-05-22 | move key generation functions into Pleroma.Keys module | William Pitcock | |
2019-05-14 | switch to pleroma/http_signatures library | William Pitcock | |