diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e1099f2b..666b03ab1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,33 @@ Unreleased changes should not be listed in this file. Instead, run `git shortlog --format='%h %s' --group=trailer:changelog ..` to see unreleased changes; replace `` with the tag you wish to compare from. If you are a contributor, please read [CONTRIBUTING.md, section "Changelog Trailer"](./CONTRIBUTING.md#changelog-trailer) on what to do instead. +## 13.0.0-preview6 - 2023-07-02 + +## Added +- **BREAKING** activitypub: validate fetch signatures + Fetching the ActivityPub representation of something now requires a valid HTTP signature. +- client: add MFM functions `position`, `scale`, `fg`, `bg` +- server: add webhook stat to nodeinfo +- activitypub: handle incoming Update Note activities + +## Changed +- client: change followers only icon to closed lock +- client: disable sound for received note by default +- client: always forbid MFM overflow +- make mutes case insensitive +- activitypub: improve JSON-LD context + The context now properly notes the `@type`s of defined attributes. +- docker: only publish port on localhost + +## Fixed +- server: fix internal download in emoji import +- server: replace unzipper with decompress + +## Removed +- migrate note favorites to clips + If you previously had favorites they will now be in a clip called "⭐". + If you want to add a note as a "favorite" you can use the menu item "Clip". + ## 13.0.0-preview5 - 2023-05-23 This release contains 6 breaking changes and 1 security update. diff --git a/package.json b/package.json index 831964a0f..f1a1e1ae9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "foundkey", - "version": "13.0.0-preview5", + "version": "13.0.0-preview6", "repository": { "type": "git", "url": "https://akkoma.dev/FoundKeyGang/FoundKey.git" diff --git a/packages/backend/package.json b/packages/backend/package.json index c80bcb6bd..2c19d11f9 100644 --- a/packages/backend/package.json +++ b/packages/backend/package.json @@ -1,6 +1,6 @@ { "name": "backend", - "version": "13.0.0-preview5", + "version": "13.0.0-preview6", "main": "./index.js", "private": true, "type": "module", diff --git a/packages/client/package.json b/packages/client/package.json index 545c58c9f..791aa0230 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -1,6 +1,6 @@ { "name": "client", - "version": "13.0.0-preview5", + "version": "13.0.0-preview6", "private": true, "scripts": { "watch": "vite build --watch --mode development", diff --git a/packages/foundkey-js/package.json b/packages/foundkey-js/package.json index b01ff78e5..60151848c 100644 --- a/packages/foundkey-js/package.json +++ b/packages/foundkey-js/package.json @@ -1,6 +1,6 @@ { "name": "foundkey-js", - "version": "13.0.0-preview5", + "version": "13.0.0-preview6", "description": "Fork of misskey-js for Foundkey", "type": "module", "main": "./built/index.js", diff --git a/packages/sw/package.json b/packages/sw/package.json index c4023cb30..025fc2d45 100644 --- a/packages/sw/package.json +++ b/packages/sw/package.json @@ -1,6 +1,6 @@ { "name": "sw", - "version": "13.0.0-preview5", + "version": "13.0.0-preview6", "private": true, "scripts": { "watch": "node build.js watch",