Daiki Mizukami
Daiki Mizukami
This change uses const generics and increases the MSRV to [1.51.0], which was released 7 months ago. [1.51.0]:
The [documentation of `Borrow`][borrow] says that `Eq`, `Ord` and `Hash` implementation of a type which implements `Borrow` must behave identical to `T`. On the other hand, `String` implements those traits...
While the term "token" in OAuth 1.0 refers to token credentials, `oauth_credentials::Token` represents a set of client credentials and token credentials, which are not identical concepts. The difference is confusing...
The ActivityPub Recommendation implies that `Update` activities must have a set of the changes ([6.3.1][activitypub-partial-updates]) or the whole object ([7.3][activitypub-update-activity-inbox]) embedded as its `object` property value (at least for client-to-server...
I want to make an issue on the Security Considerations of the Recommendation. But I'm not sure if the public issue tracker is appropriate for that kind of issue, and...
The Mastodon API has two similarly-named attributes, which are used for different purposes: - **`uri`**: URI of the Activity Streams object associated with the API entity ([`id`] in Activity Vocabulary)...
Currently, the timeline service runs a complex query every time a timeline is fetched: https://github.com/kitsune-soc/kitsune/blob/8a88fb32468ec89f349db17c2b19155c58adbb40/kitsune/src/service/timeline.rs#L67-L100 Since fetching the timeline is a frequently performed task, you can imagine how much cost...
## What リモートユーザのプロフィールを取得する際にActivityPubアクターの[`liked`](https://www.w3.org/TR/2018/REC-activitypub-20180123/#liked)コレクションの取得を試み、その内容が取得できる場合は当該ユーザのリアクションの一覧が公開設定であるものとしてデータベースに登録するようにします。(#14375の一般化) また、ローカルのActivityPubアクターに`liked`コレクションを実装し、ユーザがリアクションを送った投稿の一覧とリアクションの公開設定を連合できるようにします。 ## Why Resolves #12964. ## Checklist - [X] Read the [contribution guide](https://github.com/misskey-dev/misskey/blob/develop/CONTRIBUTING.md) - [X] Test working in a local environment - [ ] (If needed) Add...