|
| 1 | +#!/usr/bin/env zx |
| 2 | +// @ts-check |
| 3 | + |
| 4 | +import MailPace from '@mailpace/mailpace.js' |
| 5 | +import { createEnv } from '@t3-oss/env-core' |
| 6 | +import { z } from 'zod' |
| 7 | +import 'zx/globals' |
| 8 | + |
| 9 | +const canaryRegexp = /^(\d+)\.(\d+)\.(\d+)-canary\.(\d+)$/ |
| 10 | + |
| 11 | +const env = createEnv({ |
| 12 | + server: { |
| 13 | + MAILPACE_API_TOKEN: z.string(), |
| 14 | + EMAIL_ADDRESS_FROM: z.string().email(), |
| 15 | + EMAIL_ADDRESS_TO: z.string().email() |
| 16 | + }, |
| 17 | + isServer: true, |
| 18 | + runtimeEnv: process.env |
| 19 | +}) |
| 20 | + |
| 21 | +main() |
| 22 | + |
| 23 | +const fileSchema = z.object({ |
| 24 | + filename: z.string(), |
| 25 | + patch: z.string().optional() |
| 26 | +}) |
| 27 | + |
| 28 | +async function main() { |
| 29 | + const thisVersion = argv.version |
| 30 | + const previousVersion = getPreviousVersion(argv.version) |
| 31 | + |
| 32 | + if (!previousVersion) { |
| 33 | + console.log('No previous version to compare with') |
| 34 | + process.exit(0) |
| 35 | + } |
| 36 | + const compareURL = `https://api.github.com/repos/vercel/next.js/compare/v${previousVersion}...v${thisVersion}` |
| 37 | + const compare = await fetch(compareURL).then(res => res.json()) |
| 38 | + const files = z.array(fileSchema).parse(compare.files) |
| 39 | + const appRouterFile = files.find( |
| 40 | + file => |
| 41 | + file.filename === 'packages/next/src/client/components/app-router.tsx' |
| 42 | + ) |
| 43 | + if (!appRouterFile) { |
| 44 | + console.log('No changes in app-router.tsx') |
| 45 | + process.exit(0) |
| 46 | + } |
| 47 | + sendNotificationEmail(thisVersion, appRouterFile) |
| 48 | +} |
| 49 | + |
| 50 | +// -- |
| 51 | + |
| 52 | +/** |
| 53 | + * @param {string} version |
| 54 | + */ |
| 55 | +function getPreviousVersion(version) { |
| 56 | + const match = canaryRegexp.exec(version) |
| 57 | + if (!match || !match[4]) { |
| 58 | + return null |
| 59 | + } |
| 60 | + const canary = parseInt(match[4]) |
| 61 | + if (canary === 0) { |
| 62 | + return null |
| 63 | + } |
| 64 | + return `${match[1]}.${match[2]}.${match[3]}-canary.${canary - 1}` |
| 65 | +} |
| 66 | + |
| 67 | +/** |
| 68 | + * |
| 69 | + * @param {string} thisVersion |
| 70 | + * @param {z.infer<typeof fileSchema>} appRouterFile |
| 71 | + * @returns |
| 72 | + */ |
| 73 | +function sendNotificationEmail(thisVersion, appRouterFile) { |
| 74 | + const client = new MailPace.DomainClient(env.MAILPACE_API_TOKEN) |
| 75 | + const body = `Changes to the app router have been published in Next.js ${thisVersion}. |
| 76 | +
|
| 77 | +Release: https://github.com/vercel/next.js/releases/tag/v${thisVersion} |
| 78 | +
|
| 79 | +${ |
| 80 | + appRouterFile.patch |
| 81 | + ? `The patch is: |
| 82 | + \`\`\`diff |
| 83 | + ${appRouterFile.patch} |
| 84 | + \`\`\`` |
| 85 | + : 'No patch available' |
| 86 | +} |
| 87 | +` |
| 88 | + console.info('Sending email') |
| 89 | + console.info(body) |
| 90 | + return client.sendEmail({ |
| 91 | + from: env.EMAIL_ADDRESS_FROM, |
| 92 | + to: env.EMAIL_ADDRESS_TO, |
| 93 | + subject: `[nuqs] Next.js ${thisVersion} has app router changes`, |
| 94 | + textbody: body, |
| 95 | + tags: ['nuqs'] |
| 96 | + }) |
| 97 | +} |
0 commit comments