Skip to content

Commit

Permalink
release: v2024.11.0-kakurega.1.39.5 (#165)
Browse files Browse the repository at this point in the history
  • Loading branch information
hideki0403 authored Nov 22, 2024
2 parents 1876830 + fdf920e commit 1206c12
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 7 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG_KAKUREGA.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 1.39.5
Release: 2024/11/22
Base: 2024.11.0

### 修正
- デッキのカラムメニューの区切り線が2重で表示されてしまうことがある問題を修正
- RSSの取得に失敗する問題を修正
- オブジェクトストレージのEndpointにローカルIPを含むアドレスを指定すると操作に失敗する問題を修正
- FANBXAPIのBackendURLにローカルIPを含むアドレスを指定すると正常に動作しない問題を修正

## 1.39.4
Release: 2024/11/13
Base: 2024.10.1
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "misskey",
"version": "2024.11.0-kakurega.1.39.4",
"version": "2024.11.0-kakurega.1.39.5",
"codename": "nasubi",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/src/core/S3Service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export class S3Service {
? `${meta.objectStorageUseSSL ? 'https' : 'http'}://${meta.objectStorageEndpoint}`
: `${meta.objectStorageUseSSL ? 'https' : 'http'}://example.net`; // dummy url to select http(s) agent

const agent = this.httpRequestService.getAgentByUrl(new URL(u), !meta.objectStorageUseProxy);
const agent = this.httpRequestService.getAgentByUrl(new URL(u), !meta.objectStorageUseProxy, true);
const handlerOption: NodeHttpHandlerOptions = {};
if (meta.objectStorageUseSSL) {
handlerOption.httpsAgent = agent as https.Agent;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ export class FanboxManagementService implements OnApplicationShutdown {
},
timeout: 30000,
size: 1024 * 256,
isLocalAddressAllowed: true,
}).then(res => res.json()).catch(async err => {
if (!(err instanceof StatusError)) {
this.logger.error(err);
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/src/server/api/endpoints/fetch-rss.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
private httpRequestService: HttpRequestService,
) {
super(meta, paramDef, async (ps, me) => {
const res = await this.httpRequestService.send(ps.url, {
const res = await this.httpRequestService.send(decodeURIComponent(ps.url), {
method: 'GET',
headers: {
Accept: 'application/rss+xml, */*',
Expand Down
4 changes: 0 additions & 4 deletions packages/frontend/src/ui/deck/column.vue
Original file line number Diff line number Diff line change
Expand Up @@ -126,10 +126,6 @@ function getMenu() {
});
}

if (props.enableFilter || props.menu) {
menuItems.push({ type: 'divider' });
}

if (props.enableFilter) {
menuItems.push({
icon: 'ti ti-filter',
Expand Down

0 comments on commit 1206c12

Please sign in to comment.