Skip to content

Commit 8104545

Browse files
committed
Update CHANGELOG.md [skip ci]
1 parent 24d5968 commit 8104545

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
# v0.0.0-alpha.24 (Tue May 02 2023)
2+
3+
### Release Notes
4+
5+
#### Cache console output ([#92](https://github.com/ds300/lazyrepo/pull/92))
6+
7+
- Add support for a `logMode` option with the following options:
8+
- `'none'` – console output from tasks is only written to log files, never printed.
9+
- `'new-only'` (default) – console output from tasks is only printed if the task actually runs (i.e. is a cache miss or has cache disabled)
10+
- `'errors-only'` – only log the output if the task fails
11+
- `'full'` – always log the output, including the cached output if the task was a cache hit.
12+
- Changes the output paths of manifests and diffs.
13+
14+
---
15+
16+
#### 🚀 Enhancement
17+
18+
- Cache output files [#95](https://github.com/ds300/lazyrepo/pull/95) ([@ds300](https://github.com/ds300))
19+
- Cache console output [#92](https://github.com/ds300/lazyrepo/pull/92) ([@ds300](https://github.com/ds300))
20+
- Support workspace overrides [#86](https://github.com/ds300/lazyrepo/pull/86) ([@ds300](https://github.com/ds300))
21+
22+
#### 🐛 Bug Fix
23+
24+
- URL-safe paths based on script names [#94](https://github.com/ds300/lazyrepo/pull/94) ([@ds300](https://github.com/ds300))
25+
- log.fail should throw [#90](https://github.com/ds300/lazyrepo/pull/90) ([@ds300](https://github.com/ds300))
26+
27+
#### Authors: 1
28+
29+
- David Sheldrick ([@ds300](https://github.com/ds300))
30+
31+
---
32+
133
# v0.0.0-alpha.23 (Fri Apr 28 2023)
234

335
#### 💥 Breaking Change

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lazyrepo",
3-
"version": "0.0.0-alpha.23",
3+
"version": "0.0.0-alpha.24",
44
"description": "lazyrepo is a caching task runner for npm/yarn/pnpm monorepos",
55
"engines": {
66
"node": ">=16.0.0"

0 commit comments

Comments
 (0)