From 9ae3966fef1ce1eebdc4cb5a335be3f48b2a2e26 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 14 Aug 2022 20:49:12 +0000 Subject: [PATCH] Version Packages --- .changeset/early-shrimps-applaud.md | 9 --------- packages/engine/CHANGELOG.md | 10 ++++++++++ packages/engine/package.json | 2 +- 3 files changed, 11 insertions(+), 10 deletions(-) delete mode 100644 .changeset/early-shrimps-applaud.md diff --git a/.changeset/early-shrimps-applaud.md b/.changeset/early-shrimps-applaud.md deleted file mode 100644 index b8dff5a..0000000 --- a/.changeset/early-shrimps-applaud.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'@rocket/engine': patch ---- - -Prevent fatal error because of simultaneous write to file. - -When the browser requested a file to be rendered and that file also needed an update in the "rocket header" (the top of the file) then it could be that the watcher trigger a simultaneous render of the file while the first render was still in progress. - -The solution is that the watcher ignores changes to a file until a full render is finished. diff --git a/packages/engine/CHANGELOG.md b/packages/engine/CHANGELOG.md index e6fef29..007f7ed 100644 --- a/packages/engine/CHANGELOG.md +++ b/packages/engine/CHANGELOG.md @@ -1,5 +1,15 @@ # @rocket/engine +## 0.2.4 + +### Patch Changes + +- 09a47b4: Prevent fatal error because of simultaneous write to file. + + When the browser requested a file to be rendered and that file also needed an update in the "rocket header" (the top of the file) then it could be that the watcher trigger a simultaneous render of the file while the first render was still in progress. + + The solution is that the watcher ignores changes to a file until a full render is finished. + ## 0.2.3 ### Patch Changes diff --git a/packages/engine/package.json b/packages/engine/package.json index d018aa2..9326fec 100644 --- a/packages/engine/package.json +++ b/packages/engine/package.json @@ -1,6 +1,6 @@ { "name": "@rocket/engine", - "version": "0.2.3", + "version": "0.2.4", "publishConfig": { "access": "public" },