@moonrepo/cli
Advanced tools
Comparing version 0.24.3 to 0.25.0
# Changelog | ||
## 0.25.0 | ||
#### 💥 Breaking | ||
- Updated `node.version` and `node.<packageManager>.version` to no longer default to a hard-coded | ||
version. When not defined, will fallback to the binary available on `PATH`. | ||
- Updated touched files (in context and queries) to be workspace relative paths instead of absolute. | ||
#### 🚀 Updates | ||
- Added experimental Deno tier 2 support. | ||
- Added offline (no internet connection) support. | ||
- Added project-level TypeScript settings via `toolchain.typescript` in `moon.yml`. | ||
- Updated `language` setting in `moon.yml` to support any custom language. | ||
- Updated project, task, and target identifiers to support periods (`.`). | ||
##### Moonbase | ||
- CI runs can now be tracked in moonbase to gather insights and metrics. | ||
#### 🐞 Fixes | ||
- Fixed an issue where task outputs were considered as input sources when hashing, causing | ||
unnecessary cache misses. | ||
#### ⚙️ Internal | ||
- Updated Rust to v1.67. | ||
- Updated local development to support BSD based unix distros. | ||
- Added `context` to `pipeline.started` and `pipeline.finished` events. | ||
- Refactored glob matching to use workspace relative paths instead of absolute. Please report an | ||
issue if hashing or affected detection is now inaccurate. | ||
- We now build against older operating systems in an attempt to solve GLIBC version errors. | ||
## 0.24.3 | ||
@@ -168,3 +202,3 @@ | ||
- Added Bun as a Tier 1 language (doesn't do much at the moment). | ||
- Added Bun as a tier 1 language (doesn't do much at the moment). | ||
- Our toolchain now creates shims for all installed tools, and also utilizes these shims when | ||
@@ -171,0 +205,0 @@ executing commands in the pipeline. (Unix only) |
{ | ||
"name": "@moonrepo/cli", | ||
"version": "0.24.3", | ||
"version": "0.25.0", | ||
"description": "moon command line and core system.", | ||
@@ -32,10 +32,10 @@ "keywords": [ | ||
"optionalDependencies": { | ||
"@moonrepo/core-linux-arm64-gnu": "^0.24.3", | ||
"@moonrepo/core-linux-arm64-musl": "^0.24.3", | ||
"@moonrepo/core-linux-x64-gnu": "^0.24.3", | ||
"@moonrepo/core-linux-x64-musl": "^0.24.3", | ||
"@moonrepo/core-macos-arm64": "^0.24.3", | ||
"@moonrepo/core-macos-x64": "^0.24.3", | ||
"@moonrepo/core-windows-x64-msvc": "^0.24.3" | ||
"@moonrepo/core-linux-arm64-gnu": "^0.25.0", | ||
"@moonrepo/core-linux-arm64-musl": "^0.25.0", | ||
"@moonrepo/core-linux-x64-gnu": "^0.25.0", | ||
"@moonrepo/core-linux-x64-musl": "^0.25.0", | ||
"@moonrepo/core-macos-arm64": "^0.25.0", | ||
"@moonrepo/core-macos-x64": "^0.25.0", | ||
"@moonrepo/core-windows-x64-msvc": "^0.25.0" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
44713