@moonrepo/cli 1.12.0 → 1.13.0
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 +34 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.13.0
|
|
4
|
+
|
|
5
|
+
#### 🚀 Updates
|
|
6
|
+
|
|
7
|
+
- Added an `allowFailure` task option, allowing tasks to fail without bailing the entire run.
|
|
8
|
+
- Tasks allowed to fail cannot be depended on.
|
|
9
|
+
- Added colors to command line `--help` menus.
|
|
10
|
+
- Updated `runner.archivableTargets` to support tag scoped targets.
|
|
11
|
+
- Updated `moon query tasks` to filter out projects with no tasks.
|
|
12
|
+
- Updated `moon query tasks --affected` to filter based on affected task, instead of affected
|
|
13
|
+
project.
|
|
14
|
+
- Updated proto integration from v0.12 to v0.16:
|
|
15
|
+
- proto tools are now powered by WASM plugins, which will be downloaded by moon on-demand.
|
|
16
|
+
- Yarn v2+ will now download the requested version, and not downgrade to latest v1.
|
|
17
|
+
- Please report any issues or degradations from this migration.
|
|
18
|
+
- View entire [proto changelog](https://github.com/moonrepo/proto/blob/master/CHANGELOG.md#0160).
|
|
19
|
+
|
|
20
|
+
#### 🐞 Fixes
|
|
21
|
+
|
|
22
|
+
- Fixed `moon init` not using the remote default branch when scaffolding.
|
|
23
|
+
|
|
24
|
+
#### ⚙️ Internal
|
|
25
|
+
|
|
26
|
+
- Cleaned up moonbase and launchpad implementations.
|
|
27
|
+
- Updated Rust to v1.72.
|
|
28
|
+
|
|
29
|
+
## 1.12.1
|
|
30
|
+
|
|
31
|
+
#### 🐞 Fixes
|
|
32
|
+
|
|
33
|
+
- Improved failed task error messages by including information about the failing task.
|
|
34
|
+
- Fixed an issue where failed tasks would be cached.
|
|
35
|
+
- Fixed an issue where errors lost information while bubbling up the stack.
|
|
36
|
+
|
|
3
37
|
## 1.12.0
|
|
4
38
|
|
|
5
39
|
#### 🚀 Updates
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moonrepo/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.13.0",
|
|
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": "^1.
|
|
33
|
-
"@moonrepo/core-linux-arm64-musl": "^1.
|
|
34
|
-
"@moonrepo/core-linux-x64-gnu": "^1.
|
|
35
|
-
"@moonrepo/core-linux-x64-musl": "^1.
|
|
36
|
-
"@moonrepo/core-macos-arm64": "^1.
|
|
37
|
-
"@moonrepo/core-macos-x64": "^1.
|
|
38
|
-
"@moonrepo/core-windows-x64-msvc": "^1.
|
|
32
|
+
"@moonrepo/core-linux-arm64-gnu": "^1.13.0",
|
|
33
|
+
"@moonrepo/core-linux-arm64-musl": "^1.13.0",
|
|
34
|
+
"@moonrepo/core-linux-x64-gnu": "^1.13.0",
|
|
35
|
+
"@moonrepo/core-linux-x64-musl": "^1.13.0",
|
|
36
|
+
"@moonrepo/core-macos-arm64": "^1.13.0",
|
|
37
|
+
"@moonrepo/core-macos-x64": "^1.13.0",
|
|
38
|
+
"@moonrepo/core-windows-x64-msvc": "^1.13.0"
|
|
39
39
|
}
|
|
40
40
|
}
|