Skip to content

Commit b21f95f

Browse files
authored
Merge pull request #41155 from github/repo-sync
Repo sync
2 parents 1122770 + 568bbc5 commit b21f95f

File tree

4 files changed

+42
-3
lines changed

4 files changed

+42
-3
lines changed

empty.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
// Empty module to satisfy Turbopack resolveAlias fallback for Node.js modules
2+
// See turbopack config in next.config.ts
3+
export default {}

next.config.ts

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,21 @@ const config: NextConfig = {
4747
}
4848
})
4949
},
50+
5051
// Turbopack is the default bundler in Next.js 16
5152
// Keep webpack config for now to support both bundlers
52-
turbopack: {},
53+
54+
// Turbopack configuration for Next.js 16 (replaces webpack fallbacks)
55+
turbopack: {
56+
resolveAlias: {
57+
fs: {
58+
browser: './empty.ts', // Point to empty module when fs is requested for browser
59+
},
60+
async_hooks: {
61+
browser: './empty.ts', // Point to empty module when async_hooks is requested for browser
62+
},
63+
},
64+
},
5365

5466
webpack: (webpackConfig) => {
5567
webpackConfig.experiments = webpackConfig.experiments || {}

src/secret-scanning/data/public-docs.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -975,6 +975,18 @@
975975
hasValidityCheck: false
976976
base64Supported: false
977977
isduplicate: false
978+
- provider: Azure
979+
supportedSecret: Azure Logic Apps URL
980+
secretType: azure_logic_apps_url
981+
versions:
982+
fpt: '*'
983+
ghec: '*'
984+
isPublic: true
985+
isPrivateWithGhas: false
986+
hasPushProtection: false
987+
hasValidityCheck: false
988+
base64Supported: false
989+
isduplicate: true
978990
- provider: Azure
979991
supportedSecret: Azure Luis Authoring Key
980992
secretType: azure_luis_authoring_key
@@ -3646,6 +3658,18 @@
36463658
hasValidityCheck: false
36473659
base64Supported: false
36483660
isduplicate: false
3661+
- provider: Microsoft
3662+
supportedSecret: Power Automate Webhook SAS
3663+
secretType: power_automate_webhook_sas
3664+
versions:
3665+
fpt: '*'
3666+
ghec: '*'
3667+
isPublic: true
3668+
isPrivateWithGhas: false
3669+
hasPushProtection: false
3670+
hasValidityCheck: false
3671+
base64Supported: false
3672+
isduplicate: false
36493673
- provider: Midtrans
36503674
supportedSecret: Midtrans Production Server Key
36513675
secretType: midtrans_production_server_key
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"sha": "3bed2fa063dac9b9fe32ad40e443f9f2d13552cb",
3-
"blob-sha": "4f068f52cef990e0c1be118f1ca4772ec504a33c",
2+
"sha": "9ed20806a18f3c8cd5abe7a37425202ac4091838",
3+
"blob-sha": "cb935d881ea843613a98fdcc5320f26554f59913",
44
"targetFilename": "code-security/secret-scanning/introduction/supported-secret-scanning-patterns"
55
}

0 commit comments

Comments
 (0)