release: v0.7.0
This commit is contained in:
+2
-2
@@ -4,6 +4,8 @@
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.7.0] - 2026-07-19
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Prevented manual URL regeneration from invalidating automatically configured, signed Memos webhooks.
|
- Prevented manual URL regeneration from invalidating automatically configured, signed Memos webhooks.
|
||||||
@@ -20,8 +22,6 @@
|
|||||||
- 相容新版 Memos 的 `/auth/me` 與 username 資源名,既有來源會在同步時更新遠端使用者身分。
|
- 相容新版 Memos 的 `/auth/me` 與 username 資源名,既有來源會在同步時更新遠端使用者身分。
|
||||||
- 重新連接同一個 Memos 網址時會更新原有來源的 PAT 與遠端身分,不建立重複來源。
|
- 重新連接同一個 Memos 網址時會更新原有來源的 PAT 與遠端身分,不建立重複來源。
|
||||||
|
|
||||||
## [0.6.0] - Unreleased
|
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Added per-source sync difference previews, retry for individual failed jobs, and owner-only batch retry of failed jobs.
|
- Added per-source sync difference previews, retry for individual failed jobs, and owner-only batch retry of failed jobs.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
自架的 Memos 公開貼文 Hub。將朋友各自 Memos 中的公開貼文集中展示,同時保留 Hub 內的留言、表情回應與發文功能。
|
自架的 Memos 公開貼文 Hub。將朋友各自 Memos 中的公開貼文集中展示,同時保留 Hub 內的留言、表情回應與發文功能。
|
||||||
|
|
||||||
目前開發版本:`v0.6.0`(尚未發布)。版本變更請見 [CHANGELOG.md](CHANGELOG.md)。
|
目前版本:`v0.7.0`。版本變更請見 [CHANGELOG.md](CHANGELOG.md)。
|
||||||
|
|
||||||
## 功能
|
## 功能
|
||||||
|
|
||||||
|
|||||||
+4
-4
@@ -1,10 +1,10 @@
|
|||||||
services:
|
services:
|
||||||
web:
|
web:
|
||||||
image: mebbling:${MEBBLING_VERSION:-0.6.0}
|
image: mebbling:${MEBBLING_VERSION:-0.7.0}
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
args:
|
args:
|
||||||
APP_VERSION: "${MEBBLING_VERSION:-0.6.0}"
|
APP_VERSION: "${MEBBLING_VERSION:-0.7.0}"
|
||||||
ports: ["8088:3000"]
|
ports: ["8088:3000"]
|
||||||
env_file: .env
|
env_file: .env
|
||||||
environment: { DATABASE_PATH: /app/data/hub.db }
|
environment: { DATABASE_PATH: /app/data/hub.db }
|
||||||
@@ -13,11 +13,11 @@ services:
|
|||||||
- ./public/uploads:/app/public/uploads
|
- ./public/uploads:/app/public/uploads
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
worker:
|
worker:
|
||||||
image: mebbling:${MEBBLING_VERSION:-0.6.0}
|
image: mebbling:${MEBBLING_VERSION:-0.7.0}
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
args:
|
args:
|
||||||
APP_VERSION: "${MEBBLING_VERSION:-0.6.0}"
|
APP_VERSION: "${MEBBLING_VERSION:-0.7.0}"
|
||||||
command: npm run worker
|
command: npm run worker
|
||||||
env_file: .env
|
env_file: .env
|
||||||
environment: { DATABASE_PATH: /app/data/hub.db }
|
environment: { DATABASE_PATH: /app/data/hub.db }
|
||||||
|
|||||||
Generated
+2
-2
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "mebbling",
|
"name": "mebbling",
|
||||||
"version": "0.6.0",
|
"version": "0.7.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "mebbling",
|
"name": "mebbling",
|
||||||
"version": "0.6.0",
|
"version": "0.7.0",
|
||||||
"license": "PolyForm-Noncommercial-1.0.0",
|
"license": "PolyForm-Noncommercial-1.0.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"bcryptjs": "^3.0.3",
|
"bcryptjs": "^3.0.3",
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "mebbling",
|
"name": "mebbling",
|
||||||
"version": "0.6.0",
|
"version": "0.7.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
Reference in New Issue
Block a user