@moonrepo/cli 1.26.0 → 1.26.1

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