merge-steward 0.32.3 → 0.32.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -18,4 +18,4 @@ export declare function buildMultiRepoHttpServer(options: {
18
18
  }): Promise<ServiceGitHubRepoAccessResponse>;
19
19
  };
20
20
  logger: Logger;
21
- }): Promise<fastify.FastifyInstance<import("node:http").Server<typeof import("node:http").IncomingMessage, typeof import("node:http").ServerResponse>, import("node:http").IncomingMessage, import("node:http").ServerResponse<import("node:http").IncomingMessage>, Logger, fastify.FastifyTypeProviderDefault>>;
21
+ }): Promise<fastify.FastifyInstance<import("http").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse>, import("http").IncomingMessage, import("http").ServerResponse<import("http").IncomingMessage>, Logger, fastify.FastifyTypeProviderDefault>>;
@@ -1,4 +1,4 @@
1
- import fastify from "fastify";
1
+ import fastify, { LogController } from "fastify";
2
2
  import rawBody from "fastify-raw-body";
3
3
  import { z } from "zod";
4
4
  import { verifySignature, normalizeWebhook, processWebhookEvent } from "./webhook-handler.js";
@@ -33,7 +33,7 @@ export async function buildMultiRepoHttpServer(options) {
33
33
  for (const record of repos.values()) {
34
34
  byRepoId.set(record.config.repoId, record);
35
35
  }
36
- const app = fastify({ loggerInstance: logger, disableRequestLogging: true });
36
+ const app = fastify({ loggerInstance: logger, logController: new LogController({ disableRequestLogging: true }) });
37
37
  await app.register(rawBody, { runFirst: true });
38
38
  // --- Health ---
39
39
  app.get("/health", async () => ({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "merge-steward",
3
- "version": "0.32.3",
3
+ "version": "0.32.4",
4
4
  "description": "Serial merge queue for GitHub — rebase, CI-gate, and merge PRs one at a time",
5
5
  "type": "module",
6
6
  "repository": {
@@ -35,20 +35,20 @@
35
35
  "merge-steward": "dist/index.js"
36
36
  },
37
37
  "dependencies": {
38
- "fastify": "^5.8.5",
38
+ "fastify": "^5.10.0",
39
39
  "fastify-raw-body": "^5.0.0",
40
- "ink": "^7.0.1",
40
+ "ink": "^7.1.0",
41
41
  "pino": "^10.3.1",
42
- "react": "^19.2.5",
43
- "zod": "^4.3.6"
42
+ "react": "^19.2.7",
43
+ "zod": "^4.4.3"
44
44
  },
45
45
  "devDependencies": {
46
- "@types/node": "^25.6.0",
47
- "@types/react": "^19.2.14",
46
+ "@types/node": "^24.13.3",
47
+ "@types/react": "^19.2.17",
48
48
  "@typescript/native-preview": "7.0.0-dev.20260427.1",
49
- "fast-check": "^4.7.0",
50
- "isomorphic-git": "^1.37.6",
51
- "memfs": "^4.57.2"
49
+ "fast-check": "^4.9.0",
50
+ "isomorphic-git": "^1.38.6",
51
+ "memfs": "^4.64.0"
52
52
  },
53
53
  "scripts": {
54
54
  "dev": "node --watch --experimental-transform-types src/index.ts",