Open
Conversation
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## develop #640 +/- ##
============================================
+ Coverage 12.40% 61.18% +48.77%
============================================
Files 256 1232 +976
Lines 13637 128525 +114888
Branches 4704 9163 +4459
============================================
+ Hits 1692 78638 +76946
- Misses 9278 47175 +37897
- Partials 2667 2712 +45 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Contributor
|
이 PR에 의한 api.json 차이 차이점은 여기에서 볼 수 있음--- base
+++ head
@@ -472,6 +472,11 @@
"items": {
"type": "object",
"properties": {
+ "id": {
+ "type": "string",
+ "format": "id",
+ "example": "xxxxxxxxxx"
+ },
"name": {
"type": "string"
},
@@ -501,6 +506,7 @@
}
},
"required": [
+ "id",
"name",
"targetUserPattern",
"reporterPattern",
@@ -78964,7 +78970,10 @@
"format": "misskey:id"
},
"text": {
- "type": "string",
+ "type": [
+ "string",
+ "null"
+ ],
"minLength": 1,
"maxLength": 3000
},
@@ -95980,6 +95989,12 @@
},
"withReplies": {
"type": "boolean"
+ },
+ "approved": {
+ "type": "boolean"
+ },
+ "signupReason": {
+ "type": "string"
}
},
"required": [
@@ -97615,6 +97630,41 @@
"type": [
"object",
"null"
+ ],
+ "properties": {
+ "title": {
+ "type": "string"
+ },
+ "start": {
+ "type": "string",
+ "format": "date-time"
+ },
+ "end": {
+ "type": [
+ "string",
+ "null"
+ ],
+ "format": "date-time"
+ },
+ "metadata": {
+ "type": "object",
+ "properties": {
+ "@type": {
+ "type": "string"
+ },
+ "location": {
+ "type": "string"
+ },
+ "description": {
+ "type": "string"
+ }
+ }
+ }
+ },
+ "required": [
+ "title",
+ "start",
+ "end"
]
},
"channelId": {
@@ -98880,6 +98930,47 @@
"type": {
"type": "string",
"enum": [
+ "note:grouped"
+ ]
+ },
+ "noteIds": {
+ "type": "array",
+ "items": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "users": {
+ "type": "array",
+ "items": {
+ "$ref": "#/components/schemas/UserLite"
+ }
+ }
+ },
+ "required": [
+ "id",
+ "createdAt",
+ "type",
+ "noteIds",
+ "users"
+ ]
+ },
+ {
+ "type": "object",
+ "properties": {
+ "id": {
+ "type": "string",
+ "format": "id"
+ },
+ "createdAt": {
+ "type": "string",
+ "format": "date-time"
+ },
+ "type": {
+ "type": "string",
+ "enum": [
"test"
]
}
@@ -102552,14 +102643,24 @@
"format": "date-time"
},
"metadata": {
- "type": "object"
+ "type": "object",
+ "properties": {
+ "@type": {
+ "type": "string"
+ },
+ "location": {
+ "type": "string"
+ },
+ "description": {
+ "type": "string"
+ }
+ }
}
},
"required": [
"title",
"start",
- "end",
- "metadata"
+ "end"
]
},
"fileIds": { |
Contributor
Backend Memory Usage Comparison
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
GitHub Actions によるテストがすべて通過するよう修正しました。
あわせて、npm の依存関係を更新しています。
ただし、以下の問題・懸念点が残っています。
FK_poll_vote_pollを削除したことにより、副作用が発生する可能性があります。MkFollowButtonが表示されなくなります。DeleteAccountProcessorService内でremoteUserUpdatedイベントが発火しなくなります。Why
Additional info (optional)
Checklist