@moonrepo/cli 0.19.1 → 0.20.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +60 -2
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,63 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.20.1
4
+
5
+ #### 🐞 Fixes
6
+
7
+ - Fixed a "byte index is out of bounds" panic when a task has caching disabled.
8
+
9
+ ## 0.20.0
10
+
11
+ #### 💥 Breaking
12
+
13
+ - Moved the `node` and `typescript` settings from `.moon/workspace.yml` to a new config,
14
+ `.moon/toolchain.yml`.
15
+ - Moved the `workspace.node` and `workspace.typescript` settings in `moon.yml` to `toolchain.node`
16
+ and `toolchain.typescript`.
17
+
18
+ #### 🚀 Updates
19
+
20
+ - Added `runner.archivableTargets` to `.moon/workspace.yml` to control which targets are cached as
21
+ archives.
22
+ - Added `vcs.remoteCandidates` to `.moon/workspace.yml` to customize the remotes for git to query
23
+ against.
24
+ - Added support for `moduleSuffixes` and `moduleDetection` in TypeScript `tsconfig.json` compiler
25
+ options.
26
+ - Added Google Cloud Build and AWS CodeBuild to the list of CI providers to detect. results.
27
+
28
+ ##### Toolchain
29
+
30
+ - Implemented a new toolchain, that is more efficient and performant.
31
+ - Will now log to the terminal when node, npm, etc, are being installed for the first time.
32
+
33
+ ##### Runner
34
+
35
+ - Updated the terminal output to include a shortened version of each task hash.
36
+ - Reworked the terminal output when running multiple tasks in parallel, or for long-running
37
+ processes.
38
+ - Implemented a new file tree diffing algorithm that speeds up task output hydration by 10x.
39
+ - Updated pnpm to no longer run `pnpm prune` while deduping dependencies, as it produces unexpected
40
+ results.
41
+
42
+ ##### Generator
43
+
44
+ - Added `path_join` and `path_relative` template filters.
45
+ - Added pre-defined template variables for the working dir, destination, and workspace root.
46
+
47
+ #### 🐞 Fixes
48
+
49
+ - When writing JSON files, it will now respect the `indent_style = tab` setting in the closest
50
+ `.editorconfig`.
51
+ - When writing YAML files, indentation and formatting will be inferred from the closest
52
+ `.editorconfig` as best as possible.
53
+ - Fixed an issue where parsing `yarn.lock` would panic on certain Windows machines.
54
+ - Fixed an issue where `moon docker prune` would remove required node modules.
55
+
56
+ #### ⚙️ Internal
57
+
58
+ - Migrated our json/yaml libraries to the official serde crates.
59
+ - Migrated to nextest for better testing performance.
60
+
3
61
  ## 0.19.1
4
62
 
5
63
  #### 🚀 Updates
@@ -40,8 +98,8 @@
40
98
 
41
99
  ##### Generator
42
100
 
43
- - Updated the generator to now support merging JSON and YAML files when it exists in both the
44
- destination and source.
101
+ - When generating files and a JSON or YAML file exists at the destination, you now have the option
102
+ of merging files, instead of replacing entirely.
45
103
 
46
104
  #### 🐞 Fixes
47
105
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moonrepo/cli",
3
- "version": "0.19.1",
3
+ "version": "0.20.1",
4
4
  "description": "moon command line and core system.",
5
5
  "keywords": [
6
6
  "moon",
@@ -29,12 +29,12 @@
29
29
  "detect-libc": "^2.0.1"
30
30
  },
31
31
  "optionalDependencies": {
32
- "@moonrepo/core-linux-arm64-gnu": "^0.19.1",
33
- "@moonrepo/core-linux-arm64-musl": "^0.19.1",
34
- "@moonrepo/core-linux-x64-gnu": "^0.19.1",
35
- "@moonrepo/core-linux-x64-musl": "^0.19.1",
36
- "@moonrepo/core-macos-arm64": "^0.19.1",
37
- "@moonrepo/core-macos-x64": "^0.19.1",
38
- "@moonrepo/core-windows-x64-msvc": "^0.19.1"
32
+ "@moonrepo/core-linux-arm64-gnu": "^0.20.1",
33
+ "@moonrepo/core-linux-arm64-musl": "^0.20.1",
34
+ "@moonrepo/core-linux-x64-gnu": "^0.20.1",
35
+ "@moonrepo/core-linux-x64-musl": "^0.20.1",
36
+ "@moonrepo/core-macos-arm64": "^0.20.1",
37
+ "@moonrepo/core-macos-x64": "^0.20.1",
38
+ "@moonrepo/core-windows-x64-msvc": "^0.20.1"
39
39
  }
40
40
  }