From c0102cfa9760e760bfe7a19937cb22ee49e160ec Mon Sep 17 00:00:00 2001 From: DeMoorJasper Date: Mon, 27 Aug 2018 15:49:30 -0700 Subject: [PATCH 1/7] changelog-1.10 --- CHANGELOG.md | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3677c3441c8..0123d330b46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,53 @@ All notable changes to parcel will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and parcel adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [1.10.0] - 2018- + +### Added + +- HTML Bundle loader [Details](https://github.com/parcel-bundler/parcel/pull/1732) +- Support optionally bundling node_modules for `--target=node` [Details](https://github.com/parcel-bundler/parcel/pull/1690) +- Import existing sourcemaps [Details](https://github.com/parcel-bundler/parcel/pull/1349) +- Import GraphQL files from other GraphQL files [Details](https://github.com/parcel-bundler/parcel/pull/1892) +- Automatically strip flow types [Details](https://github.com/parcel-bundler/parcel/pull/1864) +- SugarSS Support [Details](https://github.com/parcel-bundler/parcel/pull/1941) +- Minimal verbose/debug mode [Details](https://github.com/parcel-bundler/parcel/pull/1834) +- User friendly error on failed entrypoint resolving [Details](https://github.com/parcel-bundler/parcel/pull/1848) +- Support for SharedWorkers [Details](https://github.com/parcel-bundler/parcel/pull/1907) +- Add Object Spread to default Babel transforms [Details](https://github.com/parcel-bundler/parcel/pull/1835) +- Update help message for `--public-url` [Details](https://github.com/parcel-bundler/parcel/pull/1846) +- Support HTML5 history mode routing [Details](https://github.com/parcel-bundler/parcel/pull/1788) +- Split cache into multiple folders for faster FS [Details](https://github.com/parcel-bundler/parcel/pull/1322) +- Support array in package.json's sideEffects property [Details](https://github.com/parcel-bundler/parcel/pull/1766) +- Process inline scripts and styles [Details](https://github.com/parcel-bundler/parcel/pull/1456) + +### Fixed + +- Exit process on Error [Details](https://github.com/parcel-bundler/parcel/pull/1933) +- Fix non updating asset hashes [Details](https://github.com/parcel-bundler/parcel/pull/1861) +- Fix Sass url resolving [Details](https://github.com/parcel-bundler/parcel/pull/1909) +- WorkerFarm Cleanup [Details](https://github.com/parcel-bundler/parcel/pull/1918) +- Fix infinite loop in resolver when using `~/...` imports [Details](https://github.com/parcel-bundler/parcel/pull/1881) +- Default to Dart-Sass and add backwards compatibility for node-sass [Details](https://github.com/parcel-bundler/parcel/pull/1847) +- Validate if a PostCSS config is an object [Details](https://github.com/parcel-bundler/parcel/pull/1862) +- VSCode syntax highlight with PostCSS in Vue Component style tag [Details](https://github.com/parcel-bundler/parcel/pull/1897) +- Glob support in less imports [Details](https://github.com/parcel-bundler/parcel/pull/1845) +- Generate unique certificate serial number [Details](https://github.com/parcel-bundler/parcel/pull/1830) +- Keep name in sourcemaps mappings [Details](https://github.com/parcel-bundler/parcel/pull/1804) +- Replace slack with spectrum badge [Details](https://github.com/parcel-bundler/parcel/pull/1785) +- Use esnext with typescript and scope hoisting [Details](https://github.com/parcel-bundler/parcel/pull/1781) +- Fix sourcemaps failing on refresh/hmr [Details](https://github.com/parcel-bundler/parcel/pull/1755) +- Support sideEffect: false with CommonJS [Details](https://github.com/parcel-bundler/parcel/pull/1770) +- Get only existing package main [Details](https://github.com/parcel-bundler/parcel/pull/1577) +- Load minified built-in if available [Details](https://github.com/parcel-bundler/parcel/pull/1749) +- Support error strings in workers [Details](https://github.com/parcel-bundler/parcel/pull/1761) +- Terminate workerfarm when using the API [Details](https://github.com/parcel-bundler/parcel/pull/1760) +- Fix comment typo [Details](https://github.com/parcel-bundler/parcel/pull/1739/files) + +### Chores + +- Update Typescript to v3.0.0 [Details](https://github.com/parcel-bundler/parcel/pull/1840) + ## [1.9.7] - 2018-07-15 ### Fixed From bd3741e9dd135777338ea9fe045e58c8b00ae29b Mon Sep 17 00:00:00 2001 From: Jasper De Moor Date: Tue, 28 Aug 2018 11:04:39 -0700 Subject: [PATCH 2/7] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0123d330b46..9c2b4179700 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -47,6 +47,7 @@ and parcel adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - Support error strings in workers [Details](https://github.com/parcel-bundler/parcel/pull/1761) - Terminate workerfarm when using the API [Details](https://github.com/parcel-bundler/parcel/pull/1760) - Fix comment typo [Details](https://github.com/parcel-bundler/parcel/pull/1739/files) +- Fix dotenv package error [Details](https://github.com/parcel-bundler/parcel/pull/1953) ### Chores From 4d760e50d345c711e502e5d2e0669c196b70451b Mon Sep 17 00:00:00 2001 From: Jasper De Moor Date: Sun, 2 Sep 2018 10:49:59 -0700 Subject: [PATCH 3/7] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c2b4179700..e86acfbe263 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ and parcel adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - Split cache into multiple folders for faster FS [Details](https://github.com/parcel-bundler/parcel/pull/1322) - Support array in package.json's sideEffects property [Details](https://github.com/parcel-bundler/parcel/pull/1766) - Process inline scripts and styles [Details](https://github.com/parcel-bundler/parcel/pull/1456) +- Added stub for require.cache [Details](https://github.com/parcel-bundler/parcel/pull/1960) ### Fixed From 43f2ca06b4060262548330f4c6369e1332724ae6 Mon Sep 17 00:00:00 2001 From: Jasper De Moor Date: Wed, 12 Sep 2018 11:25:59 -0700 Subject: [PATCH 4/7] Update CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e86acfbe263..9e0372aae01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -49,6 +49,8 @@ and parcel adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - Terminate workerfarm when using the API [Details](https://github.com/parcel-bundler/parcel/pull/1760) - Fix comment typo [Details](https://github.com/parcel-bundler/parcel/pull/1739/files) - Fix dotenv package error [Details](https://github.com/parcel-bundler/parcel/pull/1953) +- Don't resolve slash and tilde paths twice [Details](https://github.com/parcel-bundler/parcel/pull/1993) +- bundle name hash-key generation is not environment independent [Details](https://github.com/parcel-bundler/parcel/pull/2002) ### Chores From 9f19534885bb7b45b219a330bf5798cad1bf4fa4 Mon Sep 17 00:00:00 2001 From: Jasper De Moor Date: Tue, 18 Sep 2018 09:23:36 -0700 Subject: [PATCH 5/7] Update CHANGELOG.md --- CHANGELOG.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e0372aae01..669b4dadb30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,10 +5,24 @@ All notable changes to parcel will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and parcel adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## [1.10.0] - 2018- +## [1.10.0-beta.2] - 2018- + +### Fixed + +- allow empty string in meta [Details](https://github.com/parcel-bundler/parcel/pull/2027) +- fixed watch not working when NODE_ENV is production [Details](https://github.com/parcel-bundler/parcel/pull/2024) + +## [1.10.0-beta.1] - 2018-09-16 + +### Fixed + +- Incorrect casing for Logger require [Details](https://github.com/parcel-bundler/parcel/pull/2021) + +## [1.10.0-beta.0] - 2018-09-16 ### Added +- Babel 7 support [Details](https://github.com/parcel-bundler/parcel/pull/1955) - HTML Bundle loader [Details](https://github.com/parcel-bundler/parcel/pull/1732) - Support optionally bundling node_modules for `--target=node` [Details](https://github.com/parcel-bundler/parcel/pull/1690) - Import existing sourcemaps [Details](https://github.com/parcel-bundler/parcel/pull/1349) @@ -25,6 +39,7 @@ and parcel adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - Support array in package.json's sideEffects property [Details](https://github.com/parcel-bundler/parcel/pull/1766) - Process inline scripts and styles [Details](https://github.com/parcel-bundler/parcel/pull/1456) - Added stub for require.cache [Details](https://github.com/parcel-bundler/parcel/pull/1960) +- Added dotenv-expand to expand env vars [Details](https://github.com/parcel-bundler/parcel/pull/2014) ### Fixed From 0fb3ff77c187096fdc612f3d5f9f89bffed15adc Mon Sep 17 00:00:00 2001 From: Jasper De Moor Date: Sun, 23 Sep 2018 14:35:25 -0700 Subject: [PATCH 6/7] Update CHANGELOG.md --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 669b4dadb30..5c1d29f8c7f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,8 +7,15 @@ and parcel adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## [1.10.0-beta.2] - 2018- +### Added + +- Added LD+JSON asset and test case [Details](https://github.com/parcel-bundler/parcel/pull/1936) + ### Fixed +- Don't modify script nodes with text/html type [Details](https://github.com/parcel-bundler/parcel/pull/1924) +- Fix various windows bugs & tests [Details](https://github.com/parcel-bundler/parcel/pull/1965) +- Cross-platform deterministic asset ids [Details](https://github.com/parcel-bundler/parcel/pull/2020) - allow empty string in meta [Details](https://github.com/parcel-bundler/parcel/pull/2027) - fixed watch not working when NODE_ENV is production [Details](https://github.com/parcel-bundler/parcel/pull/2024) From 4d4e21d1312f30d709cd333c47e8651adaa1a8aa Mon Sep 17 00:00:00 2001 From: Jasper De Moor Date: Sun, 23 Sep 2018 14:35:49 -0700 Subject: [PATCH 7/7] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c1d29f8c7f..73ff130fb3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ and parcel adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ### Added -- Added LD+JSON asset and test case [Details](https://github.com/parcel-bundler/parcel/pull/1936) +- Added LD+JSON asset [Details](https://github.com/parcel-bundler/parcel/pull/1936) ### Fixed