Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/v2' into elm_optimize
Browse files Browse the repository at this point in the history
  • Loading branch information
balazs-lengyel committed Jun 20, 2022
2 parents 808c161 + b8b203d commit f0ecba9
Show file tree
Hide file tree
Showing 141 changed files with 922 additions and 629 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,35 @@ 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).

## [2.6.1] - 2022-06-17

### Fixed

- JavaScript
- Fix issue with conditional dependencies based on `process.env` - [Details](https://github.com/parcel-bundler/parcel/pull/8151)
- Fix transformation of import/requires wrapped into `Promise.resolve()` - [Details](https://github.com/parcel-bundler/parcel/pull/8167)
- Fix object literal shorthand with imported variables - [Details](https://github.com/parcel-bundler/parcel/issues/7955)
- Fix imported values in computed optional member expressions - [Details](https://github.com/parcel-bundler/parcel/pull/8187)
- Bump SWC to fix issue with missing parenthesis in optional chaining call - [Details](https://github.com/parcel-bundler/parcel/pull/8200)
- Bump SWC to fix helper imports in Node ESM libraries - [Details](https://github.com/parcel-bundler/parcel/pull/8213)
- Resolution
- Add missing `invalidateOnEnvChange` to resolver - [Details](https://github.com/parcel-bundler/parcel/pull/8103)
- Fix importing node_modules packages in glob resolver with sub-paths - [Details](https://github.com/parcel-bundler/parcel/pull/8169)
- Error when external dependencies in libraries have incompatible semver ranges - [Details](https://github.com/parcel-bundler/parcel/pull/8224)
- Web Extensions
- Fix HMR for web extensions - [Details](https://github.com/parcel-bundler/parcel/pull/8145)
- Fix web extensions issues with Safari - [Details](https://github.com/parcel-bundler/parcel/pull/8175)
- Fix `declarative_net_request` property in web extension manifest - [Details](https://github.com/parcel-bundler/parcel/pull/8189)
- Dev Server
- Fix browser caching issues with dev server - [Details](https://github.com/parcel-bundler/parcel/pull/8166)
- TypeScript
- Fix path separators on Windows - [Details](https://github.com/parcel-bundler/parcel/pull/8149)
- CSS
- Bump Parcel CSS to fix issues with `libc` field in package.json - [Details](https://github.com/parcel-bundler/parcel/pull/8220)
- Core
- Fix atomic file writing race condition - [Details](https://github.com/parcel-bundler/parcel/pull/8194)
- Bump lmdb dependency to fix multi-threading issue - [Details](https://github.com/parcel-bundler/parcel/pull/8204)

## [2.6.0] - 2022-05-25

### Added
Expand Down
60 changes: 32 additions & 28 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"@babel/core": "^7.12.0",
"@khanacademy/flow-to-ts": "^0.5.2",
"@napi-rs/cli": "^2.6.2",
"@parcel/babel-register": "2.6.0",
"@parcel/babel-register": "2.6.1",
"@types/node": "^15.12.4",
"cross-env": "^7.0.0",
"eslint": "^7.20.0",
Expand Down
12 changes: 6 additions & 6 deletions packages/bundlers/default/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parcel/bundler-default",
"version": "2.6.0",
"version": "2.6.1",
"license": "MIT",
"publishConfig": {
"access": "public"
Expand All @@ -17,13 +17,13 @@
"source": "src/DefaultBundler.js",
"engines": {
"node": ">= 12.0.0",
"parcel": "^2.6.0"
"parcel": "^2.6.1"
},
"dependencies": {
"@parcel/diagnostic": "2.6.0",
"@parcel/hash": "2.6.0",
"@parcel/plugin": "2.6.0",
"@parcel/utils": "2.6.0",
"@parcel/diagnostic": "2.6.1",
"@parcel/hash": "2.6.1",
"@parcel/plugin": "2.6.1",
"@parcel/utils": "2.6.1",
"nullthrows": "^1.1.1"
}
}
14 changes: 7 additions & 7 deletions packages/bundlers/experimental/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parcel/bundler-experimental",
"version": "2.6.0",
"version": "2.6.1",
"license": "MIT",
"publishConfig": {
"access": "public"
Expand All @@ -17,14 +17,14 @@
"source": "src/ExperimentalBundler.js",
"engines": {
"node": ">= 12.0.0",
"parcel": "^2.6.0"
"parcel": "^2.6.1"
},
"dependencies": {
"@parcel/diagnostic": "2.6.0",
"@parcel/graph": "2.6.0",
"@parcel/hash": "2.6.0",
"@parcel/plugin": "2.6.0",
"@parcel/utils": "2.6.0",
"@parcel/diagnostic": "2.6.1",
"@parcel/graph": "2.6.1",
"@parcel/hash": "2.6.1",
"@parcel/plugin": "2.6.1",
"@parcel/utils": "2.6.1",
"nullthrows": "^1.1.1"
}
}
6 changes: 3 additions & 3 deletions packages/compressors/brotli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parcel/compressor-brotli",
"version": "2.6.0",
"version": "2.6.1",
"license": "MIT",
"publishConfig": {
"access": "public"
Expand All @@ -17,9 +17,9 @@
"source": "src/BrotliCompressor.js",
"engines": {
"node": ">= 12.0.0",
"parcel": "^2.6.0"
"parcel": "^2.6.1"
},
"dependencies": {
"@parcel/plugin": "2.6.0"
"@parcel/plugin": "2.6.1"
}
}
6 changes: 3 additions & 3 deletions packages/compressors/gzip/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parcel/compressor-gzip",
"version": "2.6.0",
"version": "2.6.1",
"license": "MIT",
"publishConfig": {
"access": "public"
Expand All @@ -17,9 +17,9 @@
"source": "src/GzipCompressor.js",
"engines": {
"node": ">= 12.0.0",
"parcel": "^2.6.0"
"parcel": "^2.6.1"
},
"dependencies": {
"@parcel/plugin": "2.6.0"
"@parcel/plugin": "2.6.1"
}
}
6 changes: 3 additions & 3 deletions packages/compressors/raw/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parcel/compressor-raw",
"version": "2.6.0",
"version": "2.6.1",
"license": "MIT",
"publishConfig": {
"access": "public"
Expand All @@ -17,9 +17,9 @@
"source": "src/RawCompressor.js",
"engines": {
"node": ">= 12.0.0",
"parcel": "^2.6.0"
"parcel": "^2.6.1"
},
"dependencies": {
"@parcel/plugin": "2.6.0"
"@parcel/plugin": "2.6.1"
}
}

0 comments on commit f0ecba9

Please sign in to comment.