Results 229 issues of Nutomic

### Requirements - [X] Is this a feature request? For questions or discussions use https://lemmy.ml/c/lemmy_support - [X] Did you check to see if this issue already exists? - [X] Is...

enhancement
area: federation

While upgrading dependencies in #4740 I also tried to upgrade the opentelemetry dependencies, but it was a huge hassle. As this stuff is behind a feature flag anyway and probably...

breaking change

### Requirements - [X] Is this a feature request? For questions or discussions use https://lemmy.ml/c/lemmy_support - [X] Did you check to see if this issue already exists? - [X] Is...

area: federation
area: maintenance

https://github.com/LemmyNet/lemmy/pull/5025

Has `domain` as mandatory field, and prints plain string for debugging.

**Describe the bug** Votes sent by Lemmy are marked as private, as you can see by the lack of `https://www.w3.org/ns/activitystreams#Public`: ```json { "actor": "http://ds9.lemmy.ml/u/lemmy_alpha", "object": "http://ds9.lemmy.ml/comment/1", "audience": "https://enterprise.lemmy.ml/c/tenforward", "type": "Like",...

bug
activitypub

Turns out timestamps and comment_like.post_id arent used at all in the backend. So this PR adds a setting `database.store_vote_timestamps: bool` to avoid storing them (default false). Also comment_like.post_id is removed....

We are passing settings around as function parameters in many places, or accessing via `context.settings()`. That is completely unnecessary because we can always access the static `SETTINGS`.

See https://github.com/LemmyNet/rfcs/blob/main/0005-private-communities.md - [x] Add `CommunityVisibility::Private` - [x] Change `CommunityFollower.pending` (bool) to `CommunityFollower.state` (Accepted/Pending,ApprovalRequired) - [x] Unit tests to assure only accepted followers and admins can view posts/comments in private...