forked from misskey-dev/misskey
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #894 from update-host
- Loading branch information
Showing
94 changed files
with
4,350 additions
and
2,647 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
{ | ||
"name": "misskey", | ||
"version": "2024.5.0-host.6", | ||
"version": "2024.5.0-host.7", | ||
"codename": "nasubi", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/MisskeyIO/misskey.git" | ||
}, | ||
"packageManager": "[email protected].0", | ||
"packageManager": "[email protected].4", | ||
"workspaces": [ | ||
"packages/frontend", | ||
"packages/backend", | ||
|
@@ -56,26 +56,26 @@ | |
"jpeg-js": "0.4.4", | ||
"lodash": "4.17.21", | ||
"sharp": "0.33.5", | ||
"tough-cookie": "5.0.0", | ||
"web-streams-polyfill": "4.0.0" | ||
"tough-cookie": "5.1.0", | ||
"web-streams-polyfill": "4.1.0" | ||
}, | ||
"dependencies": { | ||
"cssnano": "7.0.6", | ||
"execa": "9.5.2", | ||
"js-yaml": "4.1.0", | ||
"postcss": "8.4.49", | ||
"postcss": "8.5.1", | ||
"terser": "5.37.0", | ||
"typescript": "5.7.2" | ||
"typescript": "5.7.3" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "22.10.2", | ||
"@types/node": "22.10.7", | ||
"@typescript-eslint/eslint-plugin": "7.10.0", | ||
"@typescript-eslint/parser": "7.10.0", | ||
"cross-env": "7.0.3", | ||
"cypress": "13.17.0", | ||
"eslint": "8.57.1", | ||
"ncp": "2.0.0", | ||
"start-server-and-test": "2.0.9" | ||
"start-server-and-test": "2.0.10" | ||
}, | ||
"optionalDependencies": { | ||
"@tensorflow/tfjs-core": "4.22.0" | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,21 @@ | ||
export class ScheduledNote1736923279563 { | ||
name = 'ScheduledNote1736923279563' | ||
|
||
async up(queryRunner) { | ||
await queryRunner.query(`CREATE TABLE "note_scheduled" ("id" character varying(32) NOT NULL, "createdAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), "scheduledAt" TIMESTAMP WITH TIME ZONE, "reason" character varying(256), "userId" character varying(32) NOT NULL, "draft" jsonb NOT NULL, CONSTRAINT "PK_14ca8fa67f70dc68ebab8900f4b" PRIMARY KEY ("id")); COMMENT ON COLUMN "note_scheduled"."createdAt" IS 'The created date of the Note.'; COMMENT ON COLUMN "note_scheduled"."scheduledAt" IS 'The scheduled date of the Note.'; COMMENT ON COLUMN "note_scheduled"."userId" IS 'The ID of author.'`); | ||
await queryRunner.query(`CREATE INDEX "IDX_7ddf8710a9faee81081592ec35" ON "note_scheduled" ("createdAt") `); | ||
await queryRunner.query(`CREATE INDEX "IDX_bbe52891059217fc31e73e84e2" ON "note_scheduled" ("scheduledAt") `); | ||
await queryRunner.query(`CREATE INDEX "IDX_b148b24837cc7a2707ae1f0975" ON "note_scheduled" ("userId") `); | ||
await queryRunner.query(`CREATE UNIQUE INDEX "IDX_dfeab22d6bbc4799193997553a" ON "note_scheduled" ("userId", "scheduledAt") `); | ||
await queryRunner.query(`ALTER TABLE "note_scheduled" ADD CONSTRAINT "FK_b148b24837cc7a2707ae1f0975a" FOREIGN KEY ("userId") REFERENCES "user"("id") ON DELETE CASCADE ON UPDATE NO ACTION`); | ||
} | ||
|
||
async down(queryRunner) { | ||
await queryRunner.query(`ALTER TABLE "note_scheduled" DROP CONSTRAINT "FK_b148b24837cc7a2707ae1f0975a"`); | ||
await queryRunner.query(`DROP INDEX "public"."IDX_dfeab22d6bbc4799193997553a"`); | ||
await queryRunner.query(`DROP INDEX "public"."IDX_b148b24837cc7a2707ae1f0975"`); | ||
await queryRunner.query(`DROP INDEX "public"."IDX_bbe52891059217fc31e73e84e2"`); | ||
await queryRunner.query(`DROP INDEX "public"."IDX_7ddf8710a9faee81081592ec35"`); | ||
await queryRunner.query(`DROP TABLE "note_scheduled"`); | ||
} | ||
} |
Oops, something went wrong.