Skip to content

Commit a623cb7

Browse files
committed
Merge tag '0.6.2'
Hollo 0.6.2
2 parents 6c72541 + 40d3604 commit a623cb7

8 files changed

Lines changed: 3050 additions & 1 deletion

File tree

CHANGES.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@ Version 0.7.0
77
To be released.
88

99

10+
Version 0.6.2
11+
-------------
12+
13+
Released on June 8, 2025.
14+
15+
- Fixed an issue where Hollo 0.6.x installations upgraded from Hollo 0.5.x
16+
or earlier failed to sign in with Elk, a popular Mastodon client.
17+
This was caused by old application registrations incorrectly defaulting
18+
to non-confidential. All existing applications are now properly set as
19+
confidential clients. [[#167], [#168] by Emelia Smith]
20+
21+
[#167]: https://github.com/fedify-dev/hollo/issues/167
22+
[#168]: https://github.com/fedify-dev/hollo/pull/168
23+
24+
1025
Version 0.6.1
1126
-------------
1227

docs/src/content/docs/install/env.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,10 @@ See the [FlyDrive docs] for details about the drivers.
164164
The public URL base of the asset storage, e.g.,
165165
`https://media.hollo.social`.
166166

167+
When using `DRIVE_DISK=fs`, you should set this to serve local filesystem files
168+
via web access, typically in the format `https://<host>/assets`, e.g.,
169+
`https://hollo.example.com/assets`.
170+
167171
<Aside type="caution">
168172
- HTTPS is required in production environments.
169173
- Must be publicly accessible for federation to work correctly.

docs/src/content/docs/ja/install/env.mdx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,11 @@ Holloでアバター、カスタム絵文字、
164164

165165
メディアファイルを提供する公開URLベース。例:`https://media.hollo.social`
166166

167+
`DRIVE_DISK=fs`を使用する場合、
168+
ローカルファイルシステムに保存されたファイルをWebアクセス経由で提供するため、
169+
通常は`https://<ホスト>/assets`の形式で設定する必要があります。
170+
例:`https://hollo.example.com/assets`
171+
167172
<Aside type="caution">
168173
- 実際の運用時にはHTTPSを使用する必要があります。
169174
- 公開的にアクセス可能でなければ、連合が正しく動作しません。

docs/src/content/docs/ko/install/env.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,10 @@ Hollo에서 프로필 사진, 커스텀 에모지, 기타 미디어와 같은
162162

163163
미디어 파일들을 서빙할 URL의 앞 부분. 예: `https://media.hollo.social`.
164164

165+
`DRIVE_DISK=fs`인 경우, 로컬 파일시스템에 저장된 파일들을 웹에서 접근할 수 있도록 하려면
166+
`https://<호스트>/assets` 형태로 설정해야 합니다.
167+
예: `https://hollo.example.com/assets`.
168+
165169
<Aside type="caution">
166170
- 실제 운영시에는 HTTPS를 사용해야 합니다.
167171
- 공개적으로 접근 가능해야 연합이 올바르게 작동합니다.

docs/src/content/docs/zh-cn/install/env.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,9 @@ Sentry项目的DSN,用于发送错误报告和跟踪信息。
147147

148148
资产存储的公共 URL 基础,例如:`https://media.hollo.social`
149149

150+
当使用 `DRIVE_DISK=fs` 时,您应该设置此项以通过 Web 访问提供本地文件系统文件,
151+
通常格式为 `https://<主机>/assets`,例如:`https://hollo.example.com/assets`
152+
150153
<Aside type="caution">
151154
- 生产环境要求使用 HTTPS。
152155
- 必须可公开访问,联盟才能正常工作。
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
UPDATE "applications"
2+
SET confidential = true
3+
WHERE confidential = false;

0 commit comments

Comments
 (0)