Skip to content

chore(deps): update dependency netlify-cli to v21 #2908

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
May 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions e2e-report/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion e2e-report/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"daisyui": "^4.12.2",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.4",
"netlify-cli": "^20.1.1",
"netlify-cli": "^21.0.1",
"postcss": "^8.4.38",
"sass": "^1.77.1",
"tailwindcss": "^3.4.4"
Expand Down
30 changes: 15 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
"memfs": "^4.9.2",
"mock-require": "^3.0.3",
"msw": "^2.0.7",
"netlify-cli": "^20.1.1",
"netlify-cli": "^21.0.1",
"next": "^15.0.0-canary.28",
"next-with-cache-handler-v2": "npm:next@15.3.0-canary.13",
"os": "^0.1.2",
Expand Down
2 changes: 1 addition & 1 deletion tests/netlify-deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export class NextDeployInstance extends NextInstance {

try {
const deployUrlRegex = new RegExp(
/https:\/\/app\.netlify\.com\/sites\/(?<siteName>.+)\/deploys\/(?<deployID>[0-9a-f]+)/gm,
/https:\/\/app\.netlify\.com\/sites\/(?<siteName>[^\/]+)\/deploys\/(?<deployID>[0-9a-f]+)/gm,
).exec(deployRes.stdout)
const [buildLogsUrl] = deployUrlRegex || []
const { deployID, siteName } = deployUrlRegex?.groups || {}
Expand Down
6 changes: 3 additions & 3 deletions tests/utils/create-e2e-fixture.ts
Original file line number Diff line number Diff line change
Expand Up @@ -280,9 +280,9 @@ async function deploySite(
const output = await readFile(join(siteDir, outputFile), 'utf-8')

const { siteName, deployID } =
new RegExp(/app\.netlify\.com\/sites\/(?<siteName>.+)\/deploys\/(?<deployID>[0-9a-f]+)/gm).exec(
output,
)?.groups || {}
new RegExp(
/app\.netlify\.com\/sites\/(?<siteName>[^\/]+)\/deploys\/(?<deployID>[0-9a-f]+)/gm,
).exec(output)?.groups || {}

if (!deployID) {
throw new Error('Could not extract DeployID from the build logs')
Expand Down
Loading