From 6a293b2b360802a740724d6da3fd63b64c79542f Mon Sep 17 00:00:00 2001 From: Drew Powers Date: Tue, 24 Aug 2021 15:33:37 -0600 Subject: [PATCH] 3.8.6 --- .changeset/curvy-nails-rest.md | 5 ----- .changeset/empty-coats-cough.md | 5 ----- .changeset/late-pots-taste.md | 5 ----- .../app-template-svelte-typescript/package.json | 2 +- snowpack/CHANGELOG.md | 13 +++++++++++++ snowpack/package.json | 2 +- test/build/config-loading-esm-package/package.json | 2 +- test/build/config-loading-mjs/package.json | 2 +- test/build/entrypoint-ids/package.json | 2 +- test/build/import-assets/package.json | 2 +- test/build/package-bootstrap/package.json | 2 +- test/build/package-workspace/package.json | 2 +- test/build/plugin-build-script/package.json | 2 +- test/build/plugin-hook-optimize/package.json | 2 +- test/build/plugin-run-script/package.json | 2 +- test/build/prepare-external-package/package.json | 2 +- test/esinstall/alias/package.json | 2 +- test/esinstall/config-package-svelte/package.json | 2 +- test/esinstall/dep-list-simple/package.json | 2 +- test/esinstall/error-missing-dep/package.json | 2 +- .../exclude-external-packages/package.json | 2 +- test/esinstall/exports-only-no-main/package.json | 2 +- test/esinstall/exports-only/package.json | 2 +- test/esinstall/import-nothing/package.json | 2 +- test/esinstall/named-exports/package.json | 2 +- test/esinstall/package-node-fetch/package.json | 2 +- test/esinstall/package-react/package.json | 2 +- test/esinstall/rollup/package.json | 2 +- 28 files changed, 37 insertions(+), 39 deletions(-) delete mode 100644 .changeset/curvy-nails-rest.md delete mode 100644 .changeset/empty-coats-cough.md delete mode 100644 .changeset/late-pots-taste.md diff --git a/.changeset/curvy-nails-rest.md b/.changeset/curvy-nails-rest.md deleted file mode 100644 index 9b085c60ab..0000000000 --- a/.changeset/curvy-nails-rest.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'snowpack': patch ---- - -Bugfix: dev server hanging on circular dependencies diff --git a/.changeset/empty-coats-cough.md b/.changeset/empty-coats-cough.md deleted file mode 100644 index 8cb532f40a..0000000000 --- a/.changeset/empty-coats-cough.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'snowpack': patch ---- - -Fixes a regression caused by #3597 diff --git a/.changeset/late-pots-taste.md b/.changeset/late-pots-taste.md deleted file mode 100644 index 497a83f2bd..0000000000 --- a/.changeset/late-pots-taste.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'snowpack': patch ---- - -Fixes a ghost dependency on 'magic-string' diff --git a/create-snowpack-app/app-template-svelte-typescript/package.json b/create-snowpack-app/app-template-svelte-typescript/package.json index 3cef4bacae..700d0fe395 100644 --- a/create-snowpack-app/app-template-svelte-typescript/package.json +++ b/create-snowpack-app/app-template-svelte-typescript/package.json @@ -35,7 +35,7 @@ "@types/snowpack-env": "^2.3.3", "@web/test-runner": "^0.13.3", "chai": "^4.3.4", - "snowpack": "^3.8.0", + "snowpack": "^3.8.6", "svelte-preprocess": "^4.7.2", "typescript": "^4.3.4" }, diff --git a/snowpack/CHANGELOG.md b/snowpack/CHANGELOG.md index 3ff8b3fd91..5bca6c5dbd 100644 --- a/snowpack/CHANGELOG.md +++ b/snowpack/CHANGELOG.md @@ -1,5 +1,18 @@ # snowpack +## 3.8.6 + +### Patch Changes + +- d72dc7df: Bugfix: dev server hanging on circular dependencies +- c6146e61: Fixes a ghost dependency on 'magic-string' + +## 3.8.5 + +### Patch Changes + +- 0e9829ce: Fixes a regression caused by #3597 + ## 3.8.4 ### Patch Changes diff --git a/snowpack/package.json b/snowpack/package.json index 5dd2c6e26b..9d541a790e 100644 --- a/snowpack/package.json +++ b/snowpack/package.json @@ -1,6 +1,6 @@ { "name": "snowpack", - "version": "3.8.5", + "version": "3.8.6", "description": "The ESM-powered frontend build tool. Fast, lightweight, unbundled.", "author": "Fred K. Schott ", "license": "MIT", diff --git a/test/build/config-loading-esm-package/package.json b/test/build/config-loading-esm-package/package.json index 002080bb25..32e13a148a 100644 --- a/test/build/config-loading-esm-package/package.json +++ b/test/build/config-loading-esm-package/package.json @@ -7,6 +7,6 @@ "testbuild": "snowpack build" }, "dependencies": { - "snowpack": "^3.8.4" + "snowpack": "^3.8.6" } } diff --git a/test/build/config-loading-mjs/package.json b/test/build/config-loading-mjs/package.json index ed0683f22d..2e54c26bd5 100644 --- a/test/build/config-loading-mjs/package.json +++ b/test/build/config-loading-mjs/package.json @@ -6,6 +6,6 @@ "testbuild": "snowpack build" }, "dependencies": { - "snowpack": "^3.8.4" + "snowpack": "^3.8.6" } } diff --git a/test/build/entrypoint-ids/package.json b/test/build/entrypoint-ids/package.json index 9dafe482ac..7f4f29390b 100644 --- a/test/build/entrypoint-ids/package.json +++ b/test/build/entrypoint-ids/package.json @@ -16,6 +16,6 @@ "ansi-styles": "*" }, "devDependencies": { - "snowpack": "^3.8.4" + "snowpack": "^3.8.6" } } diff --git a/test/build/import-assets/package.json b/test/build/import-assets/package.json index 76962d172b..9a9bba3511 100644 --- a/test/build/import-assets/package.json +++ b/test/build/import-assets/package.json @@ -8,6 +8,6 @@ "testbuild": "snowpack build" }, "devDependencies": { - "snowpack": "^3.8.4" + "snowpack": "^3.8.6" } } diff --git a/test/build/package-bootstrap/package.json b/test/build/package-bootstrap/package.json index 6c85378567..f54ef3c7a8 100644 --- a/test/build/package-bootstrap/package.json +++ b/test/build/package-bootstrap/package.json @@ -15,6 +15,6 @@ "bootstrap": "^4.5.2" }, "devDependencies": { - "snowpack": "^3.8.4" + "snowpack": "^3.8.6" } } diff --git a/test/build/package-workspace/package.json b/test/build/package-workspace/package.json index 89595b8ef6..743b908cf1 100644 --- a/test/build/package-workspace/package.json +++ b/test/build/package-workspace/package.json @@ -7,7 +7,7 @@ "testbuild": "snowpack build" }, "devDependencies": { - "snowpack": "^3.8.4" + "snowpack": "^3.8.6" }, "dependencies": { "test-workspace-component": "^1.0.0" diff --git a/test/build/plugin-build-script/package.json b/test/build/plugin-build-script/package.json index f5562ff556..b1b1699b76 100644 --- a/test/build/plugin-build-script/package.json +++ b/test/build/plugin-build-script/package.json @@ -9,7 +9,7 @@ "devDependencies": { "@babel/cli": "^7.10.5", "@snowpack/plugin-build-script": "^2.0.0", - "snowpack": "^3.8.4" + "snowpack": "^3.8.6" }, "dependencies": { "@babel/preset-typescript": "^7.13.0" diff --git a/test/build/plugin-hook-optimize/package.json b/test/build/plugin-hook-optimize/package.json index 7a5847ede8..1d3698adfb 100644 --- a/test/build/plugin-hook-optimize/package.json +++ b/test/build/plugin-hook-optimize/package.json @@ -9,6 +9,6 @@ }, "devDependencies": { "@snowpack/plugin-optimize": "^0.2.0", - "snowpack": "^3.8.4" + "snowpack": "^3.8.6" } } diff --git a/test/build/plugin-run-script/package.json b/test/build/plugin-run-script/package.json index b6950529c9..b596cbaeaa 100644 --- a/test/build/plugin-run-script/package.json +++ b/test/build/plugin-run-script/package.json @@ -9,6 +9,6 @@ "devDependencies": { "@snowpack/plugin-run-script": "^2.0.0", "sass": "^1.26.10", - "snowpack": "^3.8.4" + "snowpack": "^3.8.6" } } diff --git a/test/build/prepare-external-package/package.json b/test/build/prepare-external-package/package.json index fcd760b2e2..36eed01298 100644 --- a/test/build/prepare-external-package/package.json +++ b/test/build/prepare-external-package/package.json @@ -19,7 +19,7 @@ } }, "devDependencies": { - "snowpack": "^3.8.4" + "snowpack": "^3.8.6" }, "dependencies": { "array-flatten": "^3.0.0" diff --git a/test/esinstall/alias/package.json b/test/esinstall/alias/package.json index 21759967b8..56e5b4d7b5 100644 --- a/test/esinstall/alias/package.json +++ b/test/esinstall/alias/package.json @@ -9,6 +9,6 @@ "vue-currency-input": "^1.21.0" }, "devDependencies": { - "snowpack": "^3.8.4" + "snowpack": "^3.8.6" } } diff --git a/test/esinstall/config-package-svelte/package.json b/test/esinstall/config-package-svelte/package.json index f6bea53182..f2295bc09a 100644 --- a/test/esinstall/config-package-svelte/package.json +++ b/test/esinstall/config-package-svelte/package.json @@ -7,6 +7,6 @@ "simple-svelte-autocomplete": "1.2.4" }, "devDependencies": { - "snowpack": "^3.8.4" + "snowpack": "^3.8.6" } } diff --git a/test/esinstall/dep-list-simple/package.json b/test/esinstall/dep-list-simple/package.json index 3660691142..cf148b996a 100644 --- a/test/esinstall/dep-list-simple/package.json +++ b/test/esinstall/dep-list-simple/package.json @@ -4,6 +4,6 @@ "name": "@snowpack/test-dep-list-simple", "dependencies": { "async": "3.1.0", - "snowpack": "^3.8.4" + "snowpack": "^3.8.6" } } diff --git a/test/esinstall/error-missing-dep/package.json b/test/esinstall/error-missing-dep/package.json index c36d128c66..f4c74fa9d0 100644 --- a/test/esinstall/error-missing-dep/package.json +++ b/test/esinstall/error-missing-dep/package.json @@ -3,6 +3,6 @@ "version": "1.0.1", "name": "@snowpack/test-error-missing-dep", "devDependencies": { - "snowpack": "^3.8.4" + "snowpack": "^3.8.6" } } diff --git a/test/esinstall/exclude-external-packages/package.json b/test/esinstall/exclude-external-packages/package.json index 41903fb6dc..a918084bd7 100644 --- a/test/esinstall/exclude-external-packages/package.json +++ b/test/esinstall/exclude-external-packages/package.json @@ -7,6 +7,6 @@ "react-dom": "17.0.1" }, "devDependencies": { - "snowpack": "^3.8.4" + "snowpack": "^3.8.6" } } diff --git a/test/esinstall/exports-only-no-main/package.json b/test/esinstall/exports-only-no-main/package.json index 07007fe1b6..78e86340aa 100644 --- a/test/esinstall/exports-only-no-main/package.json +++ b/test/esinstall/exports-only-no-main/package.json @@ -10,6 +10,6 @@ "exports-only-no-main": "file:./pkg" }, "devDependencies": { - "snowpack": "^3.8.4" + "snowpack": "^3.8.6" } } diff --git a/test/esinstall/exports-only/package.json b/test/esinstall/exports-only/package.json index dd0280e251..d5bf61f856 100644 --- a/test/esinstall/exports-only/package.json +++ b/test/esinstall/exports-only/package.json @@ -10,6 +10,6 @@ "exports-only": "file:./pkg" }, "devDependencies": { - "snowpack": "^3.8.4" + "snowpack": "^3.8.6" } } diff --git a/test/esinstall/import-nothing/package.json b/test/esinstall/import-nothing/package.json index 14ea61699a..b5ab711999 100644 --- a/test/esinstall/import-nothing/package.json +++ b/test/esinstall/import-nothing/package.json @@ -3,6 +3,6 @@ "version": "1.0.1", "name": "@snowpack/test-import-nothing", "devDependencies": { - "snowpack": "^3.8.4" + "snowpack": "^3.8.6" } } diff --git a/test/esinstall/named-exports/package.json b/test/esinstall/named-exports/package.json index dbe0b27b37..7fb302d8a5 100644 --- a/test/esinstall/named-exports/package.json +++ b/test/esinstall/named-exports/package.json @@ -13,6 +13,6 @@ "umd-named-exports": "file:./packages/umd-named-exports" }, "devDependencies": { - "snowpack": "^3.8.4" + "snowpack": "^3.8.6" } } diff --git a/test/esinstall/package-node-fetch/package.json b/test/esinstall/package-node-fetch/package.json index 0a722919ad..a8630dba0b 100644 --- a/test/esinstall/package-node-fetch/package.json +++ b/test/esinstall/package-node-fetch/package.json @@ -17,6 +17,6 @@ "dep-node-fetch-mock-pkg": "file:./packages/dep-node-fetch-mock-pkg" }, "devDependencies": { - "snowpack": "^3.8.4" + "snowpack": "^3.8.6" } } diff --git a/test/esinstall/package-react/package.json b/test/esinstall/package-react/package.json index 4d13bba632..53eba30ee6 100644 --- a/test/esinstall/package-react/package.json +++ b/test/esinstall/package-react/package.json @@ -8,6 +8,6 @@ "react-dom": "16.13.1" }, "devDependencies": { - "snowpack": "^3.8.4" + "snowpack": "^3.8.6" } } diff --git a/test/esinstall/rollup/package.json b/test/esinstall/rollup/package.json index 1aac986da6..8e18240cf9 100644 --- a/test/esinstall/rollup/package.json +++ b/test/esinstall/rollup/package.json @@ -11,6 +11,6 @@ "svelte-routing": "^1.4.0" }, "devDependencies": { - "snowpack": "^3.8.4" + "snowpack": "^3.8.6" } }