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 || {} 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