@moonrepo/cli 0.9.1 → 0.11.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.
- package/CHANGELOG.md +74 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,75 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.11.1
|
|
4
|
+
|
|
5
|
+
#### 🐞 Fixes
|
|
6
|
+
|
|
7
|
+
- Fixed an issue where `system` tasks were hashing incorrect contents.
|
|
8
|
+
- Fixed an issue where `envFile` is enabled and the relevant `.env` file may not exist in CI.
|
|
9
|
+
|
|
10
|
+
## 0.11.0
|
|
11
|
+
|
|
12
|
+
#### 🚀 Updates
|
|
13
|
+
|
|
14
|
+
- Added a `moon clean` command for manually clearing the cache.
|
|
15
|
+
- Added an `actionRunner.cacheLifetime` setting to `.moon/workspace.yml`, for controlling the stale
|
|
16
|
+
cache threshold.
|
|
17
|
+
- Added an `envFile` option to tasks, allowing `.env` files to be loaded for environment variables.
|
|
18
|
+
- Added a `local` setting to tasks, that marks the task for local development only.
|
|
19
|
+
- Updated the `outputStyle` task option with additional variants: `buffer`, `buffer-only-failure`,
|
|
20
|
+
`hash`, `none`.
|
|
21
|
+
- Updated `moon run` to support running multiple targets concurrently.
|
|
22
|
+
|
|
23
|
+
#### 🐞 Fixes
|
|
24
|
+
|
|
25
|
+
- Fixed an issue where output hydration was bypassing "off" cache.
|
|
26
|
+
- Fixed an issue where parsing a node module binary would panic.
|
|
27
|
+
- Fixed an issue where moon would panic attempting to read non-JS code shipped in node modules (Rust
|
|
28
|
+
or Go binaries).
|
|
29
|
+
- Fixed an issue where project globs would pickup dot folders (`.git`, `.moon`, etc) or
|
|
30
|
+
`node_modules`.
|
|
31
|
+
- Fixed an issue where project names were stripping capital letters when using globs.
|
|
32
|
+
|
|
33
|
+
#### ⚙️ Internal
|
|
34
|
+
|
|
35
|
+
- Updated Rust to v1.63.
|
|
36
|
+
|
|
37
|
+
## 0.10.0
|
|
38
|
+
|
|
39
|
+
#### 💥 Breaking
|
|
40
|
+
|
|
41
|
+
- Task outputs are now cached as `.tar.gz` archives, instead of being copied as-is. This shouldn't
|
|
42
|
+
affect consumers, but we're raising awareness in case of any platform specific issues.
|
|
43
|
+
- Renamed the project-level `project.yml` file to `moon.yml`. The `.moon/project.yml` file has not
|
|
44
|
+
changed.
|
|
45
|
+
|
|
46
|
+
#### 🚀 Updates
|
|
47
|
+
|
|
48
|
+
- Projects now support language specific aliases, which can be used as a drop-in replacement for
|
|
49
|
+
names within targets and dependencies.
|
|
50
|
+
- Project and tasks names now support forward slashes (`/`).
|
|
51
|
+
- Added a `node.aliasPackageNames` setting to `.moon/workspace.yml`, that aliases the `package.json`
|
|
52
|
+
name to the respective project.
|
|
53
|
+
- Added an experimental `outputStyle` option to tasks, providing some control of how stdout/stderr
|
|
54
|
+
is handled.
|
|
55
|
+
- Added a `runDepsInParallel` option to tasks, that controls whether task dependencies run in
|
|
56
|
+
parallel or serial (in order).
|
|
57
|
+
- Updated tasks to automatically detect their `type` (when undefined) based on their defined
|
|
58
|
+
`command`. Will attempt to match against common system commands, like `rm`, `mkdir`, etc.
|
|
59
|
+
- When in CI, Node.js will not install dependencies if they were already installed before moon runs.
|
|
60
|
+
This should avoid unintentional and unnecessary double installs.
|
|
61
|
+
- Updated default versions of tools:
|
|
62
|
+
- node 16.15.0 -> 16.16.0
|
|
63
|
+
- npm 8.10.0 -> 8.16.0
|
|
64
|
+
- pnpm 7.1.5 -> 7.9.0
|
|
65
|
+
- yarn 3.2.1 -> 3.2.2
|
|
66
|
+
|
|
67
|
+
#### 🐞 Fixes
|
|
68
|
+
|
|
69
|
+
- Fixed some issues where task outputs were not being hydrated based on the state of the
|
|
70
|
+
target/project.
|
|
71
|
+
- Fixed an issue where task outputs were not considered for hash generation.
|
|
72
|
+
|
|
3
73
|
## 0.9.1
|
|
4
74
|
|
|
5
75
|
#### 🐞 Fixes
|
|
@@ -167,6 +237,10 @@ This release was largely focused on interoperability with the Node.js ecosystem,
|
|
|
167
237
|
|
|
168
238
|
- More fixes around terminal color output and handling.
|
|
169
239
|
|
|
240
|
+
#### 📚 Documentation
|
|
241
|
+
|
|
242
|
+
- Add "released in version" badges/labels to new features across all docs.
|
|
243
|
+
|
|
170
244
|
#### ⚙️ Internal
|
|
171
245
|
|
|
172
246
|
- Temporarily disabling offline internet checks as it has issues with VPNs. Will revisit in the
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moonrepo/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.1",
|
|
4
4
|
"description": "moon command line and core system.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"moon",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"detect-libc": "^2.0.1"
|
|
30
30
|
},
|
|
31
31
|
"optionalDependencies": {
|
|
32
|
-
"@moonrepo/core-linux-x64-gnu": "^0.
|
|
33
|
-
"@moonrepo/core-linux-x64-musl": "^0.
|
|
34
|
-
"@moonrepo/core-macos-arm64": "^0.
|
|
35
|
-
"@moonrepo/core-macos-x64": "^0.
|
|
36
|
-
"@moonrepo/core-windows-x64-msvc": "^0.
|
|
32
|
+
"@moonrepo/core-linux-x64-gnu": "^0.11.1",
|
|
33
|
+
"@moonrepo/core-linux-x64-musl": "^0.11.1",
|
|
34
|
+
"@moonrepo/core-macos-arm64": "^0.11.1",
|
|
35
|
+
"@moonrepo/core-macos-x64": "^0.11.1",
|
|
36
|
+
"@moonrepo/core-windows-x64-msvc": "^0.11.1"
|
|
37
37
|
}
|
|
38
38
|
}
|