@moonrepo/cli 1.26.0 → 1.26.1-nightly.202406250014

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 +60 -3
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,14 +1,71 @@
1
1
  # Changelog
2
2
 
3
- ## Future roadmap
3
+ ## Unreleased
4
+
5
+ #### 🐞 Fixes
6
+
7
+ - Fixed the `ciReport.json` file not being created with the experimental pipeline.
8
+ - Fixed the wrong version being displayed in `--version` and in logs.
9
+
10
+ ## 1.26.1
11
+
12
+ #### 🐞 Fixes
13
+
14
+ - Re-released because of an npm version mismatch issue.
15
+
16
+ ## 1.26.0
17
+
18
+ #### 💥 Breaking
19
+
20
+ - Reworked webhooks to more closely align with our current data structures.
21
+ - Renamed `target.*` events to `task.*`, and `*.finished` to `*.completed`.
22
+ - Removed the `pipeline.aborted` event. Instead, an `aborted` field is now passed to
23
+ `pipeline.completed`.
24
+ - Replaced the `action` field with a new `node` field within `task.*` events.
25
+ - Reworked `pipeline.completed` entirely. Instead of calculating values for you, we now pass all
26
+ results allowing you to calculate them yourself.
4
27
 
5
28
  #### 🚀 Updates
6
29
 
7
- - Rewrote the actions pipeline from the ground-up:
30
+ - Rewrote the actions/tasks pipeline from the ground-up. Is currently experimental and must be
31
+ enabled with the `experiments.actionPipelineV2` setting in `.moon/workspace.yml`.
8
32
  - Increased performance.
9
33
  - Better concurrency handling and scheduling.
10
34
  - More accurately monitors signals (ctrl+c) and shutdowns.
11
- - Tasks can now be configured with a timeout.
35
+ - Tasks can now be configured with a timeout (`options.timeout` setting).
36
+ - Some operations within actions are now ran in parallel.
37
+ - We renamed many of the action labels (`SyncNodeProject(app)` -> `SyncProject(node, app)`).
38
+ - Added a global `--dump` flag, that will dump a trace profile that can be inspected in
39
+ `chrome://tracing`.
40
+ - Updated `moon completions` command to support Nushell.
41
+ - Updated task option `unixShell` with new options: ion, nu (nushell), pwsh (powershell), xonsh.
42
+ - Updated task option `windowsShell` with new options: elvish, fish, nu (nushell), xonsh.
43
+ - Updated CLI command execution to be more performant, and to reduce our usage of concurrent locks.
44
+ - Internal components (like cache engine, or project graph) are now lazy-loaded when required,
45
+ instead of created upfront.
46
+
47
+ #### ⚙️ Internal
48
+
49
+ - Updated proto to v0.37.1 (from v0.36.2).
50
+ - Updated Rust to v1.79.
51
+
52
+ ## 1.25.6
53
+
54
+ #### 🐞 Fixes
55
+
56
+ - Fixed a potential deadlock when installing tools.
57
+
58
+ #### ⚙️ Internal
59
+
60
+ - Updated proto to v0.36.2 (from v0.36.0).
61
+
62
+ ## 1.25.5
63
+
64
+ #### 🐞 Fixes
65
+
66
+ - Fixed an issue where multiple Bun tools would try to install and collide.
67
+ - Fixed an issue where the `package.json` `packageManager` field would be set with an invalid
68
+ version specifier.
12
69
 
13
70
  ## 1.25.4
14
71
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moonrepo/cli",
3
- "version": "1.26.0",
3
+ "version": "1.26.1-nightly.202406250014",
4
4
  "type": "commonjs",
5
5
  "description": "moon command line and core system.",
6
6
  "keywords": [
@@ -30,12 +30,12 @@
30
30
  "detect-libc": "^2.0.3"
31
31
  },
32
32
  "optionalDependencies": {
33
- "@moonrepo/core-linux-arm64-gnu": "1.26.0",
34
- "@moonrepo/core-linux-arm64-musl": "1.26.0",
35
- "@moonrepo/core-linux-x64-gnu": "1.26.0",
36
- "@moonrepo/core-linux-x64-musl": "1.26.0",
37
- "@moonrepo/core-macos-arm64": "1.26.0",
38
- "@moonrepo/core-macos-x64": "1.26.0",
39
- "@moonrepo/core-windows-x64-msvc": "1.26.0"
33
+ "@moonrepo/core-linux-arm64-gnu": "1.26.1-nightly.202406250014",
34
+ "@moonrepo/core-linux-arm64-musl": "1.26.1-nightly.202406250014",
35
+ "@moonrepo/core-linux-x64-gnu": "1.26.1-nightly.202406250014",
36
+ "@moonrepo/core-linux-x64-musl": "1.26.1-nightly.202406250014",
37
+ "@moonrepo/core-macos-arm64": "1.26.1-nightly.202406250014",
38
+ "@moonrepo/core-macos-x64": "1.26.1-nightly.202406250014",
39
+ "@moonrepo/core-windows-x64-msvc": "1.26.1-nightly.202406250014"
40
40
  }
41
41
  }