From e29170d4795ec9c354c0784bcea5135d19878aa0 Mon Sep 17 00:00:00 2001 From: Nicolas Hrubec Date: Thu, 18 Jun 2026 09:34:10 +0200 Subject: [PATCH] fix(node): Disable no-deprecated lint for vendored hapi ATTR_HTTP_METHOD #21604 enabled typescript/no-deprecated and added disable comments across the codebase but missed this vendored hapi usage, breaking lint on develop. Co-Authored-By: Claude Opus 4.8 (1M context) --- packages/node/src/integrations/tracing/hapi/vendored/utils.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/node/src/integrations/tracing/hapi/vendored/utils.ts b/packages/node/src/integrations/tracing/hapi/vendored/utils.ts index f96a63b6ec1b..d28126fc4d5c 100644 --- a/packages/node/src/integrations/tracing/hapi/vendored/utils.ts +++ b/packages/node/src/integrations/tracing/hapi/vendored/utils.ts @@ -75,6 +75,7 @@ export const getRouteMetadata = ( } => { const attributes: Attributes = { [ATTR_HTTP_ROUTE]: route.path, + // eslint-disable-next-line typescript/no-deprecated [ATTR_HTTP_METHOD]: route.method, };