From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-pl1-f175.google.com (mail-pl1-f175.google.com [209.85.214.175]) by mx.groups.io with SMTP id smtpd.web10.2205.1623469474458579999 for ; Fri, 11 Jun 2021 20:44:34 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@gmail.com header.s=20161025 header.b=QeuVqePS; spf=pass (domain: gmail.com, ip: 209.85.214.175, mailfrom: kuqin12@gmail.com) Received: by mail-pl1-f175.google.com with SMTP id v13so3784480ple.9 for ; Fri, 11 Jun 2021 20:44:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=NnRsh80ydZkyVUK+HYPGt3n1KzgJxSZ702glnjQartU=; b=QeuVqePSuqfalOl0btBmJH5oUWzZtwu5vgjRhK7OkkKyi8IoK/FFTlCCOEHcCJJpqb w4OqhaZ6MHK2hduPt7UUi9Gp7pK2s93BGMA57MhNIJbw+Hk1Kf+B2q1EZLTtbbILI2U1 OtQslA49pIeLGpsKVIahvNGOIGtzsTpBeccq6tcx7guIU6o+H5l07GgtSHmKBruR4nfa 511lwNFqHErqiwhZY+4Hn7bSLuJA/J8DUbKuyzE2lZo/jWG43CRZ/pAGDIvSv7CLDPLC 8m6iFIUeFLIxr3GDK7dHTOyPL0y98/m7l5cnbLRhzBLAWcBb59G8JUTq3kl+IrcSvhbF bG4Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=NnRsh80ydZkyVUK+HYPGt3n1KzgJxSZ702glnjQartU=; b=QfTFWxd7hOspk5tNu4mXybZKEZO6tGVNcs8j0d8dprivxiJ/PySYeqMfoFWlrZFs61 5NB45o1P7khYZEjSGCDybExVFySWc85gjWxcEL8l2NEoPLqkxYcotlUCwSy/jX2wi6S/ 1oZpzSZd3EE++Ofa9Eq+K8Lbt19N+PMjYrEJ/RHVCGB4vA2EmBYBCUZ+x0ko3K8u4w51 XML0jk6Ega47dddLJxSzYCrSrCQMZOxBGh0HqZGIKNyZnL5i6Y9fLt+Hvuld4w75Ms2R npVzWwVVEeY9ySMBYJSk/kRGujtOJVj8PD5AJk0rjzXT56ueIkPH7Sgn2nEp+GoNGWKE CSYQ== X-Gm-Message-State: AOAM532vn1Q8kuyjDj9J/F7GyppF+li77PoFnjhsQtzoTxdkFRFoQOue PLT4h4hISQR8MsnXIzh4zWfDv58QHP2adQ== X-Google-Smtp-Source: ABdhPJxILVowu4vmXfRpabYNd5s8ZsgfvmlNXFCl2HWiDeGccR3n3WXMMM619UZL6usxSsaIHtBU7g== X-Received: by 2002:a17:90b:517:: with SMTP id r23mr7549389pjz.209.1623469473767; Fri, 11 Jun 2021 20:44:33 -0700 (PDT) Return-Path: Received: from localhost.localdomain ([50.35.88.161]) by smtp.gmail.com with ESMTPSA id l3sm6491779pgb.77.2021.06.11.20.44.33 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 11 Jun 2021 20:44:33 -0700 (PDT) From: "Kun Qin" To: devel@edk2.groups.io Cc: Sean Brogan , Bret Barkelew , Michael D Kinney , Liming Gao , Laszlo Ersek , Ard Biesheuvel , Leif Lindholm , Sami Mujawar , Jiewen Yao , Supreeth Venkatesh Subject: [PATCH v1 0/4] Update Node to 14.x to resolve cspell failure Date: Fri, 11 Jun 2021 20:44:18 -0700 Message-Id: <20210612034422.536-1-kuqin12@gmail.com> X-Mailer: git-send-email 2.31.1.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3445 According to requirements set by cspell, the minimal node version to support cspell v5+ should be 12 or above (ref: https://github.com/streetsidesoftware/cspell/tree/main/packages/cspell). This mismatched dependency caused "Failed to process "**" TypeError: text.matchAll(...) is not a function or its return value is not iterable" errors on multiple files during spell check, and they have been ignored silently. This change will update the node dependency to be at least v14 to fix incompatibility issue. With this resolved, the newly discovered misspellings are handled accordingly: * Spelling error in StandaloneMM get fixed. * Spelling errors in ArmPkg are added to package config for their validity. * Spelling errors in ArmPlatformPkg is set to audit mode and request the maintainers resolve the errors. Patch v1 branch: https://github.com/kuqin12/edk2/tree/node_14_v1 Cc: Sean Brogan Cc: Bret Barkelew Cc: Michael D Kinney Cc: Liming Gao Cc: Laszlo Ersek Cc: Ard Biesheuvel Cc: Leif Lindholm Cc: Sami Mujawar Cc: Jiewen Yao Cc: Supreeth Venkatesh Kun Qin (1): Azurepipeline: SpellCheck: Enforce Node dependency to use version 14.x Sean Brogan (3): StandaloneMmPkg: Core: Spelling error in comment ArmPlatformPkg: SpellCheck: Switch spellcheck CI to AuditOnly ArmPkg: SpellCheck: Update valid acronyms in ExtendedWords StandaloneMmPkg/Core/Dispatcher.c | 2 +- .azurepipelines/templates/spell-check-prereq-steps.yml | 2 +- ArmPkg/ArmPkg.ci.yaml | 19 +++++++++++++++++++ ArmPlatformPkg/ArmPlatformPkg.ci.yaml | 2 +- 4 files changed, 22 insertions(+), 3 deletions(-) -- 2.31.1.windows.1