From 796be4e0a12e32d2c7864bceddfdca8c47375cd5 Mon Sep 17 00:00:00 2001 From: Frederico Maia Arantes Date: Wed, 6 Apr 2022 12:31:52 -0300 Subject: [PATCH 1/2] Add node bump version to the changelog. --- docs/history.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/history.md b/docs/history.md index 4ba7b99550..0f73ab033f 100644 --- a/docs/history.md +++ b/docs/history.md @@ -31,6 +31,7 @@ ## v2.7, 2022-03-24 #### Highlights +* Bump node version to 14.19.1 * TailwindCSS 3.x support * Typescript `4.5.4` upgrade * New core package: `accounts-2fa` From cb916520ef6e4ff1ebda56add8b62f1af974583e Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Thu, 7 Apr 2022 23:55:21 +0900 Subject: [PATCH 2/2] Fix typo in callback_logger.js occured -> occurred --- packages/test-helpers/callback_logger.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/test-helpers/callback_logger.js b/packages/test-helpers/callback_logger.js index 9a884123f8..fb4f30ee07 100644 --- a/packages/test-helpers/callback_logger.js +++ b/packages/test-helpers/callback_logger.js @@ -1,7 +1,7 @@ // This file allows you to write tests that expect certain callbacks to be // called in certain orders, or optionally in groups where the order does not // matter. It can be set up in either a synchronous manner, so that each -// callback must have already occured before you call expectResult & its ilk, or +// callback must have already occurred before you call expectResult & its ilk, or // in an asynchronous manner, so that the logger yields and waits a reasonable // timeout for the callback. Because we're using Node Fibers to yield & start // ourselves, the asynchronous version is only available on the server.