Skip to content

Commit 1206c12

Browse files
authored
release: v2024.11.0-kakurega.1.39.5 (#165)
2 parents 1876830 + fdf920e commit 1206c12

File tree

6 files changed

+14
-7
lines changed

6 files changed

+14
-7
lines changed

CHANGELOG_KAKUREGA.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 1.39.5
2+
Release: 2024/11/22
3+
Base: 2024.11.0
4+
5+
### 修正
6+
- デッキのカラムメニューの区切り線が2重で表示されてしまうことがある問題を修正
7+
- RSSの取得に失敗する問題を修正
8+
- オブジェクトストレージのEndpointにローカルIPを含むアドレスを指定すると操作に失敗する問題を修正
9+
- FANBXAPIのBackendURLにローカルIPを含むアドレスを指定すると正常に動作しない問題を修正
10+
111
## 1.39.4
212
Release: 2024/11/13
313
Base: 2024.10.1

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "misskey",
3-
"version": "2024.11.0-kakurega.1.39.4",
3+
"version": "2024.11.0-kakurega.1.39.5",
44
"codename": "nasubi",
55
"repository": {
66
"type": "git",

packages/backend/src/core/S3Service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export class S3Service {
2828
? `${meta.objectStorageUseSSL ? 'https' : 'http'}://${meta.objectStorageEndpoint}`
2929
: `${meta.objectStorageUseSSL ? 'https' : 'http'}://example.net`; // dummy url to select http(s) agent
3030

31-
const agent = this.httpRequestService.getAgentByUrl(new URL(u), !meta.objectStorageUseProxy);
31+
const agent = this.httpRequestService.getAgentByUrl(new URL(u), !meta.objectStorageUseProxy, true);
3232
const handlerOption: NodeHttpHandlerOptions = {};
3333
if (meta.objectStorageUseSSL) {
3434
handlerOption.httpsAgent = agent as https.Agent;

packages/backend/src/core/integrations/FanboxManagementService.ts

+1
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,7 @@ export class FanboxManagementService implements OnApplicationShutdown {
172172
},
173173
timeout: 30000,
174174
size: 1024 * 256,
175+
isLocalAddressAllowed: true,
175176
}).then(res => res.json()).catch(async err => {
176177
if (!(err instanceof StatusError)) {
177178
this.logger.error(err);

packages/backend/src/server/api/endpoints/fetch-rss.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
219219
private httpRequestService: HttpRequestService,
220220
) {
221221
super(meta, paramDef, async (ps, me) => {
222-
const res = await this.httpRequestService.send(ps.url, {
222+
const res = await this.httpRequestService.send(decodeURIComponent(ps.url), {
223223
method: 'GET',
224224
headers: {
225225
Accept: 'application/rss+xml, */*',

packages/frontend/src/ui/deck/column.vue

-4
Original file line numberDiff line numberDiff line change
@@ -126,10 +126,6 @@ function getMenu() {
126126
});
127127
}
128128

129-
if (props.enableFilter || props.menu) {
130-
menuItems.push({ type: 'divider' });
131-
}
132-
133129
if (props.enableFilter) {
134130
menuItems.push({
135131
icon: 'ti ti-filter',

0 commit comments

Comments
 (0)