Andreas Nedbal
f9b5d92176
Fix: Adjust ESLint calls to properly interpret globs ( #8462 )
...
* fix(backend): rename .eslintrc.js to .eslintrc.cjs
* fix(backend): wrap lint path glob in quotation marks
* fix(client): wrap lint path glob in quotation marks
* chore(workflow): make lint workflow use Node 16
2022-04-02 22:52:26 +09:00
syuilo
61dfa6d598
Update CHANGELOG.md
2022-04-02 21:40:49 +09:00
d4e9082941
Merge branch 'develop'
12.109.1-simkey-v1
2022-04-02 17:05:00 +09:00
a2242261db
Merge remote-tracking branch 'misskey-dev/master' into develop
2022-04-02 17:04:46 +09:00
syuilo
5abe05d572
Merge branch 'develop'
2022-04-02 16:56:35 +09:00
syuilo
7722fc4d3f
12.109.1
2022-04-02 16:56:24 +09:00
syuilo
6a379b463f
Update CHANGELOG.md
2022-04-02 16:49:54 +09:00
syuilo
c03b70c949
revert 484e023c0
2022-04-02 16:47:53 +09:00
9cf6561a95
Merge branch 'develop'
12.109.0-simkey-v2
2022-04-02 16:07:03 +09:00
a989e904cc
Merge branch '2022-wtf' into develop
2022-04-02 16:06:26 +09:00
7774465274
Merge branch 'develop'
12.109.0-simkey-v1
2022-04-02 15:58:45 +09:00
b2299e1344
Merge remote-tracking branch 'misskey-dev/master' into develop
2022-04-02 15:57:56 +09:00
syuilo
2375359d12
Merge branch 'develop'
2022-04-02 15:34:03 +09:00
syuilo
68d462b301
12.109.0
2022-04-02 15:33:51 +09:00
syuilo
6b6464a659
fix syntax error
2022-04-02 15:31:11 +09:00
syuilo
4fdfbfd5c4
New Crowdin updates ( #8409 )
...
* New translations ja-JP.yml (Esperanto)
* New translations ja-JP.yml (Esperanto)
* New translations ja-JP.yml (German)
* New translations ja-JP.yml (English)
* New translations ja-JP.yml (Dutch)
* New translations ja-JP.yml (Dutch)
* New translations ja-JP.yml (Dutch)
* New translations ja-JP.yml (Dutch)
* New translations ja-JP.yml (Dutch)
* New translations ja-JP.yml (Dutch)
* New translations ja-JP.yml (Esperanto)
* New translations ja-JP.yml (French)
* New translations ja-JP.yml (Romanian)
* New translations ja-JP.yml (Romanian)
* New translations ja-JP.yml (Chinese Simplified)
* New translations ja-JP.yml (Chinese Simplified)
* New translations ja-JP.yml (Chinese Simplified)
* New translations ja-JP.yml (Chinese Simplified)
* New translations ja-JP.yml (Esperanto)
* New translations ja-JP.yml (Esperanto)
* New translations ja-JP.yml (Arabic)
* New translations ja-JP.yml (Arabic)
* New translations ja-JP.yml (Arabic)
* New translations ja-JP.yml (Arabic)
* New translations ja-JP.yml (Esperanto)
* New translations ja-JP.yml (Esperanto)
* New translations ja-JP.yml (Esperanto)
* New translations ja-JP.yml (Esperanto)
* New translations ja-JP.yml (Chinese Simplified)
* New translations ja-JP.yml (German)
* New translations ja-JP.yml (English)
* New translations ja-JP.yml (Slovak)
* New translations ja-JP.yml (Romanian)
* New translations ja-JP.yml (Romanian)
* New translations ja-JP.yml (Esperanto)
* New translations ja-JP.yml (German)
* New translations ja-JP.yml (English)
* New translations ja-JP.yml (Arabic)
* New translations ja-JP.yml (Arabic)
* New translations ja-JP.yml (Slovak)
* New translations ja-JP.yml (Chinese Simplified)
* New translations ja-JP.yml (Indonesian)
* New translations ja-JP.yml (Indonesian)
* New translations ja-JP.yml (Esperanto)
* New translations ja-JP.yml (Esperanto)
* New translations ja-JP.yml (Esperanto)
* New translations ja-JP.yml (Arabic)
* New translations ja-JP.yml (Arabic)
* New translations ja-JP.yml (Arabic)
* New translations ja-JP.yml (Portuguese)
* New translations ja-JP.yml (Portuguese)
* New translations ja-JP.yml (Esperanto)
* New translations ja-JP.yml (Esperanto)
* New translations ja-JP.yml (Esperanto)
2022-04-02 15:29:24 +09:00
syuilo
8e5f2690f2
feat: Webhook ( #8457 )
...
* feat: introduce webhook
* wip
* wip
* wip
* Update CHANGELOG.md
2022-04-02 15:28:49 +09:00
syuilo
99e6ef5996
Update CHANGELOG.md
2022-04-02 15:26:48 +09:00
Johann150
1033e8e57f
fix(federation): avoid duplicate activity delivery ( #8429 )
...
* prefer shared inbox over individual inbox
* no new shared inbox for direct recipes
* fix type error
2022-04-02 15:16:35 +09:00
tamaina
f7030d4a42
enhance: タッチパッド・タッチスクリーンでのデッキの操作性を向上 ( #8450 )
...
* enhance experience of deck with touchpad
* test: 単純にdeltaYを加算してみる
* clean up
* ios bug fix?
* ✌️
* use overflow-y
* Safari does not supports clip
2022-04-02 15:12:01 +09:00
Johann150
484e023c0c
enhance(doc): required input fields ( #8456 )
...
* remove empty file
If the endpoint is to be implemented later, the file can be added back,
but for now it is confusing to have an empty file.
* enhance(doc): document defaults
Default for `isPublic` is based on the database schema default value.
Defaults for `local` and `withFiles` are based on the behaviour of the endpoint.
* enhance(doc): explain nullable emoji category
* fix: make nullable if default is null
* enhance(doc): explain mute attribute expiresAt
* fix: define required fields
- `notes/create`: the default for `text` has been removed because ajv can not handle
`default` inside of `anyOf`, see
https://ajv.js.org/guide/modifying-data.html#assigning-defaults
and the default value cannot be `null` if text is `nullable: false` in the `anyOf`
first alternative.
- `notes/create`: The `mediaIds` property has been marked as deprecated because it
has the same behaviour as using `fileIds`, but the implementation tries to handlè
`fileIds` first.
- The result schema for `admin/emoji/list` has been altered because the `host`
property will always be `null` as it is filtered this way in the database query.
See packages/backend/src/server/api/endpoints/admin/emoji/list.ts line 67.
* enhance(doc): explain nullable hostname
* update changelog
Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
2022-04-02 15:04:36 +09:00
syuilo
7c781179a1
Update CHANGELOG.md
2022-04-02 12:12:10 +09:00
syuilo
39302bf0ea
fix(server): admin/meta is not working
...
Fix #8455
2022-04-01 19:17:19 +09:00
syuilo
11ccb98c93
update deps
2022-04-01 19:13:40 +09:00
af0dfb2362
wtf???
2022-04-01 03:39:17 +09:00
ad74fbc48f
wtf????aaaa
2022-04-01 03:29:45 +09:00
d0775da7d2
wtf????aaa
2022-04-01 03:23:01 +09:00
633994ecb6
wtf????aa
2022-04-01 02:46:07 +09:00
54923b7ac9
wtf????aa
2022-04-01 02:21:30 +09:00
48e132a2c7
wtf????a
2022-04-01 02:03:24 +09:00
7663170fae
wtf????a
2022-04-01 01:59:08 +09:00
cebb66cc36
wtf????
2022-04-01 00:47:56 +09:00
f6dda604dc
fix: update package.json select-file-enc.ts
2022-03-30 16:05:35 +09:00
d10143544d
fix: update package.json
2022-03-30 16:04:20 +09:00
40e3c75c13
fix: update select-file-enc.ts
2022-03-30 15:59:08 +09:00
syuilo
4e63022a49
fix(server): add missing import
2022-03-29 18:46:59 +09:00
a2150b1269
fix: update l-simkey.json5
2022-03-29 03:08:09 +09:00
19579ed0f1
fix: add l-simkey.json5
12.108.1-simkey-v3
2022-03-29 02:54:17 +09:00
78396baf82
fix: update package.json
2022-03-29 02:34:31 +09:00
982896f7be
fix: update default store.ts
2022-03-29 02:31:29 +09:00
syuilo
75da7ab484
Update ROADMAP.md
2022-03-28 13:38:05 +09:00
syuilo
515ab0105a
Update CONTRIBUTING.md
2022-03-27 20:11:43 +09:00
syuilo
6241ed9621
Update ROADMAP.md
2022-03-27 19:37:50 +09:00
syuilo
1786de8ce0
Update ROADMAP.md
2022-03-27 19:20:05 +09:00
syuilo
ebe1b78579
Create ROADMAP.md
2022-03-27 19:13:20 +09:00
dependabot[bot]
a8c3e0186a
chore(deps): bump follow-redirects from 1.14.1 to 1.14.8 ( #8313 )
...
Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects ) from 1.14.1 to 1.14.8.
- [Release notes](https://github.com/follow-redirects/follow-redirects/releases )
- [Commits](https://github.com/follow-redirects/follow-redirects/compare/v1.14.1...v1.14.8 )
---
updated-dependencies:
- dependency-name: follow-redirects
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-03-27 16:42:22 +09:00
dependabot[bot]
7ccb9226ef
chore(deps): bump follow-redirects in /packages/backend ( #8314 )
...
Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects ) from 1.14.7 to 1.14.8.
- [Release notes](https://github.com/follow-redirects/follow-redirects/releases )
- [Commits](https://github.com/follow-redirects/follow-redirects/compare/v1.14.7...v1.14.8 )
---
updated-dependencies:
- dependency-name: follow-redirects
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-03-27 16:42:05 +09:00
dependabot[bot]
48742dcee1
Bump ansi-regex from 5.0.0 to 5.0.1 in /packages/client ( #8422 )
...
Bumps [ansi-regex](https://github.com/chalk/ansi-regex ) from 5.0.0 to 5.0.1.
- [Release notes](https://github.com/chalk/ansi-regex/releases )
- [Commits](https://github.com/chalk/ansi-regex/compare/v5.0.0...v5.0.1 )
---
updated-dependencies:
- dependency-name: ansi-regex
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-03-27 16:41:52 +09:00
dependabot[bot]
4acfa7a191
Bump nanoid from 3.1.20 to 3.3.1 in /packages/client ( #8425 )
...
Bumps [nanoid](https://github.com/ai/nanoid ) from 3.1.20 to 3.3.1.
- [Release notes](https://github.com/ai/nanoid/releases )
- [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md )
- [Commits](https://github.com/ai/nanoid/compare/3.1.20...3.3.1 )
---
updated-dependencies:
- dependency-name: nanoid
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-03-27 16:41:39 +09:00
dependabot[bot]
122d5ea529
Bump nanoid from 3.1.30 to 3.3.1 in /packages/backend ( #8426 )
...
Bumps [nanoid](https://github.com/ai/nanoid ) from 3.1.30 to 3.3.1.
- [Release notes](https://github.com/ai/nanoid/releases )
- [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md )
- [Commits](https://github.com/ai/nanoid/compare/3.1.30...3.3.1 )
---
updated-dependencies:
- dependency-name: nanoid
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-03-27 16:41:26 +09:00