From a327b44343408e031bb6045b95c52d2a1a55e650 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 10 Sep 2022 08:45:27 -0700 Subject: [PATCH] Version Packages (#13) * Version Packages * Tune up changelogs Co-authored-by: github-actions[bot] Co-authored-by: Ryan Roemer --- .changeset/lucky-cheetahs-relate.md | 8 ----- packages/trace-deps/CHANGELOG.md | 10 ++++++ packages/trace-deps/package.json | 2 +- packages/trace-pkg/CHANGELOG.md | 56 ++++++++++++++++++----------- packages/trace-pkg/package.json | 4 +-- pnpm-lock.yaml | 2 +- 6 files changed, 49 insertions(+), 33 deletions(-) delete mode 100644 .changeset/lucky-cheetahs-relate.md diff --git a/.changeset/lucky-cheetahs-relate.md b/.changeset/lucky-cheetahs-relate.md deleted file mode 100644 index 604d276..0000000 --- a/.changeset/lucky-cheetahs-relate.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"trace-deps": minor -"trace-pkg": minor ---- - -- Feature (`trace-pkg`): Add `conditions` option. -- Feature (`trace-deps`): Add `conditions` parameter to `traceFile`/`traceFiles` to support user runtime loading conditions. (See [#trace-deps/56](https://github.com/FormidableLabs/trace-deps/issues/56)) -- BREAKING: Remove `production` and `development` from set of default user conditions in package resolution. diff --git a/packages/trace-deps/CHANGELOG.md b/packages/trace-deps/CHANGELOG.md index 1de97a4..fc0b6a3 100644 --- a/packages/trace-deps/CHANGELOG.md +++ b/packages/trace-deps/CHANGELOG.md @@ -1,5 +1,15 @@ Changes +## 0.5.0 + +### Major Changes + +- BREAKING: Remove `production` and `development` from set of default user conditions in package resolution. + +### Minor Changes + +- Feature (`trace-deps`): Add `conditions` parameter to `traceFile`/`traceFiles` to support user runtime loading conditions. (See [#trace-deps/56](https://github.com/FormidableLabs/trace-deps/issues/56)) + ## 0.4.11 ### Patch Changes diff --git a/packages/trace-deps/package.json b/packages/trace-deps/package.json index 8b24276..3e91b48 100644 --- a/packages/trace-deps/package.json +++ b/packages/trace-deps/package.json @@ -1,6 +1,6 @@ { "name": "trace-deps", - "version": "0.4.11", + "version": "0.5.0", "description": "A dependency tracing tool.", "main": "index.js", "bin": { diff --git a/packages/trace-pkg/CHANGELOG.md b/packages/trace-pkg/CHANGELOG.md index 54e7dc5..610b5e4 100644 --- a/packages/trace-pkg/CHANGELOG.md +++ b/packages/trace-pkg/CHANGELOG.md @@ -1,70 +1,84 @@ Changes -======= + +## 0.5.0 + +### Major Changes + +- BREAKING: Remove `production` and `development` from set of default user conditions in package resolution. + +### Minor Changes + +- Feature (`trace-pkg`): Add `conditions` option. ([#12](https://github.com/FormidableLabs/tracing/pull/12)) + +### Patch Changes + +- Updated dependencies [[`43552d1`](https://github.com/FormidableLabs/tracing/commit/43552d1ccee1d1d9709b90d5af128a476c7b46f4)]: + - # trace-deps@0.5.0 ## 0.4.1 -* Feature: Async JavaScript configuration function. +- Feature: Async JavaScript configuration function. [#43](https://github.com/FormidableLabs/trace-pkg/issues/43) -* Dependencies: Various updates. -* Test: Upgrade `mock-fs` and re-enable Node16+ +- Dependencies: Various updates. +- Test: Upgrade `mock-fs` and re-enable Node16+ [#39](https://github.com/FormidableLabs/trace-pkg/issues/39) ## 0.4.0 -* Feature: Add full support for modern Node.js ESM and `exports`. -* Chore: Upgrade various dependencies. +- Feature: Add full support for modern Node.js ESM and `exports`. +- Chore: Upgrade various dependencies. ## 0.3.4 -* Feature: Support application source paths as keys in `allowMissing`. +- Feature: Support application source paths as keys in `allowMissing`. ## 0.3.3 -* Feature: Add `--silent` CLI flag. +- Feature: Add `--silent` CLI flag. [#12](https://github.com/FormidableLabs/trace-pkg/issues/12) - (*[Burnett2k][]*) + (_[Burnett2k][]_) ## 0.3.2 -* Bug: Make `concurrency: 1` / "serial" mode actually run serially. +- Bug: Make `concurrency: 1` / "serial" mode actually run serially. ## 0.3.1 -* Feature: Add `includeSourceMaps` configuration option. +- Feature: Add `includeSourceMaps` configuration option. ## 0.3.0 -* Feature: Add `collapsed.bail` configuration option. +- Feature: Add `collapsed.bail` configuration option. [#3](https://github.com/FormidableLabs/trace-pkg/issues/3) [#4](https://github.com/FormidableLabs/trace-pkg/issues/4) ## 0.2.1 -* Feature: Add `dynamic.bail` configuration option. +- Feature: Add `dynamic.bail` configuration option. [#4](https://github.com/FormidableLabs/trace-pkg/issues/4) ## 0.2.0 -* Feature: Add `misses` report to `--report` and log output. -* Feature: Add `dynamic.resolutions` configuration option. +- Feature: Add `misses` report to `--report` and log output. +- Feature: Add `dynamic.resolutions` configuration option. [#4](https://github.com/FormidableLabs/trace-pkg/issues/4) ## 0.1.1 -* Feature: Add `ignores`, `allowMissing` configuration options. +- Feature: Add `ignores`, `allowMissing` configuration options. [#4](https://github.com/FormidableLabs/trace-pkg/issues/4) ## 0.1.0 -* Feature: Produce verbose `--report` about bundle run. +- Feature: Produce verbose `--report` about bundle run. [#2](https://github.com/FormidableLabs/trace-pkg/issues/2) -* Feature: `--dry-run` +- Feature: `--dry-run` [#9](https://github.com/FormidableLabs/trace-pkg/issues/9) -* Feature: Parallel builds with `--concurrency`. +- Feature: Parallel builds with `--concurrency`. [#4](https://github.com/FormidableLabs/trace-pkg/issues/4) ## 0.0.1 -* Initial release. +- Initial release. -[Burnett2k]: https://github.com/Burnett2k +[burnett2k]: https://github.com/Burnett2k diff --git a/packages/trace-pkg/package.json b/packages/trace-pkg/package.json index b981502..e289788 100644 --- a/packages/trace-pkg/package.json +++ b/packages/trace-pkg/package.json @@ -1,6 +1,6 @@ { "name": "trace-pkg", - "version": "0.4.1", + "version": "0.5.0", "description": "A dependency tracing packager.", "main": "index.js", "bin": { @@ -40,7 +40,7 @@ "globby": "^11.0.4", "jest-worker": "^28.1.1", "make-dir": "^3.1.0", - "trace-deps": "^0.4.10", + "trace-deps": "^0.5.0", "yaml": "^2.1.1", "yargs": "^17.5.1" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d4377dc..e20ab05 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -62,7 +62,7 @@ importers: globby: ^11.0.4 jest-worker: ^28.1.1 make-dir: ^3.1.0 - trace-deps: ^0.4.10 + trace-deps: ^0.5.0 uuid: ^8.3.2 yaml: ^2.1.1 yargs: ^17.5.1