@moonrepo/cli
Advanced tools
Comparing version 1.12.1 to 1.13.0
# Changelog | ||
## 1.13.0 | ||
#### 🚀 Updates | ||
- Added an `allowFailure` task option, allowing tasks to fail without bailing the entire run. | ||
- Tasks allowed to fail cannot be depended on. | ||
- Added colors to command line `--help` menus. | ||
- Updated `runner.archivableTargets` to support tag scoped targets. | ||
- Updated `moon query tasks` to filter out projects with no tasks. | ||
- Updated `moon query tasks --affected` to filter based on affected task, instead of affected | ||
project. | ||
- Updated proto integration from v0.12 to v0.16: | ||
- proto tools are now powered by WASM plugins, which will be downloaded by moon on-demand. | ||
- Yarn v2+ will now download the requested version, and not downgrade to latest v1. | ||
- Please report any issues or degradations from this migration. | ||
- View entire [proto changelog](https://github.com/moonrepo/proto/blob/master/CHANGELOG.md#0160). | ||
#### 🐞 Fixes | ||
- Fixed `moon init` not using the remote default branch when scaffolding. | ||
#### ⚙️ Internal | ||
- Cleaned up moonbase and launchpad implementations. | ||
- Updated Rust to v1.72. | ||
## 1.12.1 | ||
@@ -4,0 +30,0 @@ |
{ | ||
"name": "@moonrepo/cli", | ||
"version": "1.12.1", | ||
"version": "1.13.0", | ||
"description": "moon command line and core system.", | ||
@@ -32,10 +32,10 @@ "keywords": [ | ||
"optionalDependencies": { | ||
"@moonrepo/core-linux-arm64-gnu": "^1.12.1", | ||
"@moonrepo/core-linux-arm64-musl": "^1.12.1", | ||
"@moonrepo/core-linux-x64-gnu": "^1.12.1", | ||
"@moonrepo/core-linux-x64-musl": "^1.12.1", | ||
"@moonrepo/core-macos-arm64": "^1.12.1", | ||
"@moonrepo/core-macos-x64": "^1.12.1", | ||
"@moonrepo/core-windows-x64-msvc": "^1.12.1" | ||
"@moonrepo/core-linux-arm64-gnu": "^1.13.0", | ||
"@moonrepo/core-linux-arm64-musl": "^1.13.0", | ||
"@moonrepo/core-linux-x64-gnu": "^1.13.0", | ||
"@moonrepo/core-linux-x64-musl": "^1.13.0", | ||
"@moonrepo/core-macos-arm64": "^1.13.0", | ||
"@moonrepo/core-macos-x64": "^1.13.0", | ||
"@moonrepo/core-windows-x64-msvc": "^1.13.0" | ||
} | ||
} |
25660