From b3d7dc1de88757b05e7de5428426177d5e885e0a Mon Sep 17 00:00:00 2001 From: Darshan Sen Date: Wed, 1 Jun 2022 15:53:55 +0530 Subject: [PATCH] tools: update clang-format 1.7.0 to 1.8.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit v1.7.0 was shipping ARM64 binaries for macOS which doesn't run on Intel Macs. v1.8.0 moved back to x86_64 binaries which works on both Intel and M1 Macs. Signed-off-by: Darshan Sen PR-URL: https://github.com/nodejs/node/pull/43241 Reviewed-By: Tobias Nießen Reviewed-By: Rich Trott Reviewed-By: Mohammed Keyvanzadeh Reviewed-By: Luigi Pinca --- tools/clang-format/package-lock.json | 14 +++++++------- tools/clang-format/package.json | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/tools/clang-format/package-lock.json b/tools/clang-format/package-lock.json index 1a080a750eaf86..537314a7cb6727 100644 --- a/tools/clang-format/package-lock.json +++ b/tools/clang-format/package-lock.json @@ -9,7 +9,7 @@ "version": "1.0.0", "license": "MIT", "dependencies": { - "clang-format": "^1.7.0" + "clang-format": "^1.8.0" } }, "node_modules/async": { @@ -32,9 +32,9 @@ } }, "node_modules/clang-format": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/clang-format/-/clang-format-1.7.0.tgz", - "integrity": "sha512-BNuK+rXAK/Fk0rOQ1DW6bpSQUAZz6tpbZHTQn6m4PsgEkE1SNr6AQ/hhFK/b4KJrl4zjcl68molP+rEaKSZRAQ==", + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/clang-format/-/clang-format-1.8.0.tgz", + "integrity": "sha512-pK8gzfu55/lHzIpQ1givIbWfn3eXnU7SfxqIwVgnn5jEM6j4ZJYjpFqFs4iSBPNedzRMmfjYjuQhu657WAXHXw==", "dependencies": { "async": "^3.2.3", "glob": "^7.0.0", @@ -202,9 +202,9 @@ } }, "clang-format": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/clang-format/-/clang-format-1.7.0.tgz", - "integrity": "sha512-BNuK+rXAK/Fk0rOQ1DW6bpSQUAZz6tpbZHTQn6m4PsgEkE1SNr6AQ/hhFK/b4KJrl4zjcl68molP+rEaKSZRAQ==", + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/clang-format/-/clang-format-1.8.0.tgz", + "integrity": "sha512-pK8gzfu55/lHzIpQ1givIbWfn3eXnU7SfxqIwVgnn5jEM6j4ZJYjpFqFs4iSBPNedzRMmfjYjuQhu657WAXHXw==", "requires": { "async": "^3.2.3", "glob": "^7.0.0", diff --git a/tools/clang-format/package.json b/tools/clang-format/package.json index 50454249b52c10..4ae7d36a33c90e 100644 --- a/tools/clang-format/package.json +++ b/tools/clang-format/package.json @@ -4,6 +4,6 @@ "description": "Formatting C++ files for Node.js core", "license": "MIT", "dependencies": { - "clang-format": "^1.7.0" + "clang-format": "^1.8.0" } }