UNPKG

3.76 kBMarkdownView Raw
1# Change Log
2
3All notable changes to this project will be documented in this file.
4See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
6### 1.0.3 - 2019-07-06
7
8#### 🐞 Fixes
9
10- Persist exit code when driver executions fail. [#54] ([fdf0b10](https://github.com/beemojs/beemo/tree/master/packages/core/commit/fdf0b10)), closes [#54](https://github.com/beemojs/beemo/tree/master/packages/core/issues/54)
11
12#### 📦 Dependencies
13
14- Updated boost to v1.2. Migrate APIs. ([0a01612](https://github.com/beemojs/beemo/tree/master/packages/core/commit/0a01612))
15- Updated build deps. ([bfa490c](https://github.com/beemojs/beemo/tree/master/packages/core/commit/bfa490c))
16- Updated driver deps. ([5ed870d](https://github.com/beemojs/beemo/tree/master/packages/core/commit/5ed870d))
17- Updated execa to v2. ([b5bec8c](https://github.com/beemojs/beemo/tree/master/packages/core/commit/b5bec8c))
18- Updated fast-glob to v3. ([84b6497](https://github.com/beemojs/beemo/tree/master/packages/core/commit/84b6497))
19- Updated fs-extra to v8.1. ([3faf131](https://github.com/beemojs/beemo/tree/master/packages/core/commit/3faf131))
20
21#### 🛠 Internals
22
23- Utilize generated tsconfig.json files. (#56) ([788843e](https://github.com/beemojs/beemo/tree/master/packages/core/commit/788843e)), closes [#56](https://github.com/beemojs/beemo/tree/master/packages/core/issues/56)
24
25**Note:** Version bump only for package @beemo/core
26
27
28
29
30
31### 1.0.2 - 2019-06-15
32
33#### 🐞 Fixes
34
35- Add debugging around child processes. Handle OOM errors. ([fbf9e19](https://github.com/beemojs/beemo/tree/master/packages/core/commit/fbf9e19))
36
37**Note:** Version bump only for package @beemo/core
38
39
40
41
42
43### 1.0.1 - 2019-06-13
44
45#### 📦 Dependencies
46
47- Bump to latest. Fix peers and vulnerabilities. (#53) ([f8ba055](https://github.com/beemojs/beemo/tree/master/packages/core/commit/f8ba055)), closes [#53](https://github.com/beemojs/beemo/tree/master/packages/core/issues/53)
48
49#### 🛠 Internals
50
51- Setup DangerJS and conventional changelog (#52) ([c253bf6](https://github.com/beemojs/beemo/tree/master/packages/core/commit/c253bf6)), closes [#52](https://github.com/beemojs/beemo/tree/master/packages/core/issues/52)
52
53**Note:** Version bump only for package @beemo/core
54
55
56
57
58
59# 1.0.0 - 2019-05-18
60
61#### 💥 Breaking
62
63- Migrated to the new [@boost/event](https://milesj.gitbook.io/boost/event) system.
64- Script names (on the command line) will now error if not in kebab case.
65- Scripts and Drivers now require an explicit `blueprint` method.
66- Renamed `--live` option to `--stdio`.
67- Renamed `--priority` option to `--graph`.
68- Renamed `execute.priority` setting to `execute.graph`.
69- Renamed `Context#root` to `cwd`.
70- Renamed `Driver#handleFailure` to `processFailure`.
71- Renamed `Driver#handleSuccess` to `processSuccess`.
72- Removed `DriverContext#eventName` and `ScriptContext#eventName`.
73- Removed `ScriptContext#binName`. Use `scriptName` instead.
74
75#### 🚀 Updates
76
77- Added a new package,
78 [@beemo/dependency-graph](https://www.npmjs.com/package/@beemo/dependency-graph), to handle the
79 dependency resolution.
80- Added a `none` strategy to `Driver`s. With this strategy, the consumer will need to manually
81 create a config file.
82- Added a `versionOption` metadata setting to `Driver`s.
83- Added `Script#executeCommand`, so that local binaries can easily be executed.
84- Added optional `name` support to scaffolding.
85- Updated the driver/script execution pipeline to process in parallel batches.
86
87#### 🐞 Fixes
88
89- Fixed script `this` scope being lost within script tasks.
90- Fixed the Beemo emoji not appearing in the console.
91
92#### 🛠 Internals
93
94- `Beemo` now extends from `Tool` instead of managing an instance.
95- Updated `hygen` to v4.
96- Updated dependencies.