@moonrepo/cli 1.16.0-nightly.202310290203 → 1.16.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -1
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -10,7 +10,7 @@
10
10
  - More accurately monitors signals (ctrl+c) and shutdowns.
11
11
  - Tasks can now be configured with a timeout.
12
12
 
13
- ## Unreleased
13
+ ## 1.16.0
14
14
 
15
15
  #### 🚀 Updates
16
16
 
@@ -18,10 +18,15 @@
18
18
  - Added components and targets support for the Rust toolchain.
19
19
  - Added `rust.components` and `rust.targets` settings to `.moon/toolchain.yml`.
20
20
  - Will automatically be installed with `rustup` when the pipeline is ran.
21
+ - Added a `MOON_TOOLCHAIN_FORCE_GLOBALS` environment variable, that will force all toolchain tools
22
+ to use the global binary available on `PATH`, instead of downloading and installing.
21
23
  - Added an improved task inheritance chain resolver.
24
+ - Global and local tasks are now interweaved within the chain, where as previously global was
25
+ built first, then local.
22
26
  - To fallback to the previous behavior, set `experiments.interweavedTaskInheritance: false` in
23
27
  `.moon/workspace.yml`.
24
28
  - Added a new project type `automation`, for projects like E2E and integration testing.
29
+ - Updated action graph cycle detection to list all nodes in the cycle (when detectable).
25
30
  - Updated all npx calls to use a package manager equivalent. For example: `yarn dlx`, `pnpm dlx`,
26
31
  `bunx`.
27
32
  - Updated to support Yarn v4.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moonrepo/cli",
3
- "version": "1.16.0-nightly.202310290203",
3
+ "version": "1.16.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.2"
30
30
  },
31
31
  "optionalDependencies": {
32
- "@moonrepo/core-linux-arm64-gnu": "1.16.0-nightly.202310290203",
33
- "@moonrepo/core-linux-arm64-musl": "1.16.0-nightly.202310290203",
34
- "@moonrepo/core-linux-x64-gnu": "1.16.0-nightly.202310290203",
35
- "@moonrepo/core-linux-x64-musl": "1.16.0-nightly.202310290203",
36
- "@moonrepo/core-macos-arm64": "1.16.0-nightly.202310290203",
37
- "@moonrepo/core-macos-x64": "1.16.0-nightly.202310290203",
38
- "@moonrepo/core-windows-x64-msvc": "1.16.0-nightly.202310290203"
32
+ "@moonrepo/core-linux-arm64-gnu": "^1.16.0",
33
+ "@moonrepo/core-linux-arm64-musl": "^1.16.0",
34
+ "@moonrepo/core-linux-x64-gnu": "^1.16.0",
35
+ "@moonrepo/core-linux-x64-musl": "^1.16.0",
36
+ "@moonrepo/core-macos-arm64": "^1.16.0",
37
+ "@moonrepo/core-macos-x64": "^1.16.0",
38
+ "@moonrepo/core-windows-x64-msvc": "^1.16.0"
39
39
  }
40
40
  }