From 5316456b872322ed373c4abba1776b03d08adc45 Mon Sep 17 00:00:00 2001 From: docs-bot <77750099+docs-bot@users.noreply.github.com> Date: Thu, 6 Nov 2025 11:19:18 -0800 Subject: [PATCH 1/2] Sync secret scanning data (#58384) Co-authored-by: mc <42146119+mchammer01@users.noreply.github.com> --- src/secret-scanning/data/public-docs.yml | 24 ++++++++++++++++++++++++ src/secret-scanning/lib/config.json | 4 ++-- 2 files changed, 26 insertions(+), 2 deletions(-) diff --git a/src/secret-scanning/data/public-docs.yml b/src/secret-scanning/data/public-docs.yml index a3cc589780ee..bb043bcad1dd 100644 --- a/src/secret-scanning/data/public-docs.yml +++ b/src/secret-scanning/data/public-docs.yml @@ -975,6 +975,18 @@ hasValidityCheck: false base64Supported: false isduplicate: false +- provider: Azure + supportedSecret: Azure Logic Apps URL + secretType: azure_logic_apps_url + versions: + fpt: '*' + ghec: '*' + isPublic: true + isPrivateWithGhas: false + hasPushProtection: false + hasValidityCheck: false + base64Supported: false + isduplicate: true - provider: Azure supportedSecret: Azure Luis Authoring Key secretType: azure_luis_authoring_key @@ -3646,6 +3658,18 @@ hasValidityCheck: false base64Supported: false isduplicate: false +- provider: Microsoft + supportedSecret: Power Automate Webhook SAS + secretType: power_automate_webhook_sas + versions: + fpt: '*' + ghec: '*' + isPublic: true + isPrivateWithGhas: false + hasPushProtection: false + hasValidityCheck: false + base64Supported: false + isduplicate: false - provider: Midtrans supportedSecret: Midtrans Production Server Key secretType: midtrans_production_server_key diff --git a/src/secret-scanning/lib/config.json b/src/secret-scanning/lib/config.json index c2d68b18b2c0..f65605179598 100644 --- a/src/secret-scanning/lib/config.json +++ b/src/secret-scanning/lib/config.json @@ -1,5 +1,5 @@ { - "sha": "3bed2fa063dac9b9fe32ad40e443f9f2d13552cb", - "blob-sha": "4f068f52cef990e0c1be118f1ca4772ec504a33c", + "sha": "9ed20806a18f3c8cd5abe7a37425202ac4091838", + "blob-sha": "cb935d881ea843613a98fdcc5320f26554f59913", "targetFilename": "code-security/secret-scanning/introduction/supported-secret-scanning-patterns" } \ No newline at end of file From 568bbc5166bf8f62d8bb54b27c67808b48130345 Mon Sep 17 00:00:00 2001 From: Robert Sese <734194+rsese@users.noreply.github.com> Date: Thu, 6 Nov 2025 13:24:24 -0600 Subject: [PATCH 2/2] add turbopack resolveAlias fs fallback for nextjs 16 (#58390) --- empty.ts | 3 +++ next.config.ts | 14 +++++++++++++- 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 empty.ts diff --git a/empty.ts b/empty.ts new file mode 100644 index 000000000000..4e0a2c5f275b --- /dev/null +++ b/empty.ts @@ -0,0 +1,3 @@ +// Empty module to satisfy Turbopack resolveAlias fallback for Node.js modules +// See turbopack config in next.config.ts +export default {} diff --git a/next.config.ts b/next.config.ts index f5536ec88b60..b3106dd10c1a 100644 --- a/next.config.ts +++ b/next.config.ts @@ -47,9 +47,21 @@ const config: NextConfig = { } }) }, + // Turbopack is the default bundler in Next.js 16 // Keep webpack config for now to support both bundlers - turbopack: {}, + + // Turbopack configuration for Next.js 16 (replaces webpack fallbacks) + turbopack: { + resolveAlias: { + fs: { + browser: './empty.ts', // Point to empty module when fs is requested for browser + }, + async_hooks: { + browser: './empty.ts', // Point to empty module when async_hooks is requested for browser + }, + }, + }, webpack: (webpackConfig) => { webpackConfig.experiments = webpackConfig.experiments || {}