Skip to content

Commit 2bd3823

Browse files
authored
Merge pull request #10333 from growilabs/master
Release v7.3.2
2 parents 3ce7a88 + dcfcc9b commit 2bd3823

File tree

79 files changed

+1240
-649
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+1240
-649
lines changed

.github/mergify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ queue_rules:
1313
- check-success ~= ci-app-test
1414
- check-success ~= ci-app-launch-dev
1515
- check-success = test-prod-node20 / build-prod
16-
- check-success = test-prod-node20 / launch-prod
16+
- check-success ~= test-prod-node20 / launch-prod
1717
- check-success ~= test-prod-node20 / run-playwright
1818
- -check-failure ~= ci-app-
1919
- -check-failure ~= ci-slackbot-

.github/workflows/ci-app-prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ concurrency:
4040
jobs:
4141

4242
test-prod-node18:
43-
uses: weseek/growi/.github/workflows/reusable-app-prod.yml@master
43+
uses: growilabs/growi/.github/workflows/reusable-app-prod.yml@master
4444
if: |
4545
( github.event_name == 'push'
4646
|| github.base_ref == 'master'

.mcp.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"--context",
1515
"ide-assistant",
1616
"--project",
17-
"/workspace/growi"
17+
"."
1818
],
1919
"env": {}
2020
}

.roo/mcp.json

Lines changed: 0 additions & 14 deletions
This file was deleted.

apps/app/bin/openapi/generate-operation-ids/cli.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { writeFileSync } from 'fs';
1+
import { writeFileSync } from 'node:fs';
22

33
import { beforeEach, describe, expect, it, vi } from 'vitest';
44

apps/app/bin/openapi/generate-operation-ids/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
import { writeFileSync } from 'node:fs';
12
import { Command } from 'commander';
2-
import { writeFileSync } from 'fs';
33

44
import { generateOperationIds } from './generate-operation-ids';
55

apps/app/bin/openapi/generate-operation-ids/generate-operation-ids.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import fs from 'fs/promises';
1+
import fs from 'node:fs/promises';
2+
import { tmpdir } from 'node:os';
3+
import path from 'node:path';
24
import type { OpenAPI3 } from 'openapi-typescript';
3-
import { tmpdir } from 'os';
4-
import path from 'path';
55
import { describe, expect, it } from 'vitest';
66

77
import { generateOperationIds } from './generate-operation-ids';

apps/app/bin/print-memory-consumption.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* print-memory-consumption.ts [--port=9229] [--host=localhost] [--json]
1212
*/
1313

14-
import { get } from 'http';
14+
import { get } from 'node:http';
1515

1616
import WebSocket from 'ws';
1717

apps/app/config/cdn.js

Lines changed: 0 additions & 14 deletions
This file was deleted.

apps/app/config/migrate-mongo-config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*/
77
const isProduction = process.env.NODE_ENV === 'production';
88

9-
const { URL } = require('url');
9+
const { URL } = require('node:url');
1010

1111
const { getMongoUri, mongoOptions } = isProduction
1212
? // eslint-disable-next-line import/extensions, import/no-unresolved

0 commit comments

Comments
 (0)