forked from misskey-dev/misskey
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
nekoplanet#13 Add changelog by @HotoRas 2215de5 by @HotoRas c645e8f by @HotoRas nekoplanet#15 ๋ ธํธ ์์ ๊ธฐ๋ฅ ๋ถํ (3ํธ) by @HotoRas nekoplanet#16 Feat: "๋ค๋ฅธ ๊ณ์ ์ถ๊ฐ" ๋ฒํผ ์๋์ "์ ๊ณ์ ์ถ๊ฐ" ๋ฒํผ์ด ์ด์ ์์ด์ ์ง์ ์ต๋๋ค by @HotoRas nekoplanet#17 Typecheck Fix by @janghoseo nekoplanet#21 Fix note edit 2 by @HotoRas
- Loading branch information
Showing
36 changed files
with
971 additions
and
118 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
## Unreleased | ||
|
||
### General | ||
- Fix: ํ๋ก ํธ์๋์ ํ์ ์ด์ | ||
- Revert: s3 ์ค์ ์ ์ค์ ํ์ผ๋ก ์ฎ๊น (์ทจ์๋จ: MisskeyIO#104) | ||
- Feat: ๋ ธํธ ์์ ๊ธฐ๋ฅ ๋ถํ (Code cherry-picked from cherrypick) | ||
|
||
### Client | ||
- Revert: s3 ์ค์ ํ์ด์ง๋ฅผ ๊ด๋ฆฌ ํ์ด์ง ํ์์์ ์ญ์ (์ทจ์๋จ: MisskeyIO#104) | ||
|
||
### Backend | ||
|
||
### Frontend | ||
- Feat: "๋ค๋ฅธ ๊ณ์ ์ถ๊ฐ" ๋ฒํผ ์๋์ "์ ๊ณ์ ์ถ๊ฐ" ๋ฒํผ์ด ์ด์ ์์ด์ ์ง์ ์ต๋๋ค | ||
|
||
### misskey-js | ||
|
||
### develop | ||
- QoL: `misskey-js`์ ๊ฐฑ์ ๊ณผ ์ด๋ฅผ ์ ์ฉํ ์ ์ฒด ๋น๋์ ์๋ํ ์คํฌ๋ฆฝํธ ์ถ๊ฐ |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,4 +75,4 @@ | |
"optionalDependencies": { | ||
"@tensorflow/tfjs-core": "4.4.0" | ||
} | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
packages/backend/migration/1720853122058-RevRevertNoteEdit.js
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* | ||
* SPDX-FileCopyrightText: syuilo and misskey-project | ||
* SPDX-License-Identifier: AGPL-3.0-only | ||
*/ | ||
|
||
export class RevRevertNoteEdit1720853122058 { | ||
name = 'RevRevertNoteEdit1720853122058' | ||
|
||
async up(queryRunner) { | ||
await queryRunner.query(`ALTER TABLE "note" ADD "updatedAt" TIMESTAMP WITH TIME ZONE`); | ||
await queryRunner.query(`ALTER TABLE "note" ADD "updatedAtHistory" TIMESTAMP WITH TIME ZONE ARRAY`); | ||
await queryRunner.query(`ALTER TABLE "note" ADD "noteEditHistory" character varying array`) | ||
} | ||
async down(queryRunner) { | ||
await queryRunner.query(`ALTER TABLE "note" DROP COLUMN "updatedAt"`); | ||
await queryRunner.query(`ALTER TABLE "note" DROP "updatedAtHistory" TIMESTAMP WITH TIME ZONE ARRAY`); | ||
await queryRunner.query(`ALTER TABLE "note" DROP "noteEditHistory"`) | ||
} | ||
|
||
} |
This file contains 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
This file contains 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
Oops, something went wrong.