@moonrepo/cli 1.25.0-canary.202405262350 → 1.25.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 +3 -2
  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.25.0
14
14
 
15
15
  #### 💥 Breaking
16
16
 
@@ -22,6 +22,7 @@
22
22
 
23
23
  - Rewrote the task runner from the ground up:
24
24
  - Improved handling and reliability of output archiving and hydration.
25
+ - Streamlined the task execution (child process) flow.
25
26
  - Now tracks metrics for individual operations, like hash generation, output hydration, task
26
27
  execution, and more. Can be inspected in the run report.
27
28
  - Added a `--summary` flag to `moon run` and `moon check` that will include a summary of all actions
@@ -29,7 +30,7 @@
29
30
  - Added a new console reporting layer that handles the rendering of output in the terminal.
30
31
  - This enables us to support additional reporters in the future, each with unique UIs.
31
32
  - Slightly tweaked our current UI rendering. You may notice some differences.
32
- - Updated external configuration files (via http extends) to be cached for 24 hours.
33
+ - Updated external configuration files (via https extends) to be cached for 24 hours.
33
34
  - This will fix issues with offline mode.
34
35
  - Greatly reduced the amount of concurrent locks being held during task execution. May see slight
35
36
  performance improvements.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moonrepo/cli",
3
- "version": "1.25.0-canary.202405262350",
3
+ "version": "1.25.0",
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.25.0-canary.202405262350",
34
- "@moonrepo/core-linux-arm64-musl": "1.25.0-canary.202405262350",
35
- "@moonrepo/core-linux-x64-gnu": "1.25.0-canary.202405262350",
36
- "@moonrepo/core-linux-x64-musl": "1.25.0-canary.202405262350",
37
- "@moonrepo/core-macos-arm64": "1.25.0-canary.202405262350",
38
- "@moonrepo/core-macos-x64": "1.25.0-canary.202405262350",
39
- "@moonrepo/core-windows-x64-msvc": "1.25.0-canary.202405262350"
33
+ "@moonrepo/core-linux-arm64-gnu": "1.25.0",
34
+ "@moonrepo/core-linux-arm64-musl": "1.25.0",
35
+ "@moonrepo/core-linux-x64-gnu": "1.25.0",
36
+ "@moonrepo/core-linux-x64-musl": "1.25.0",
37
+ "@moonrepo/core-macos-arm64": "1.25.0",
38
+ "@moonrepo/core-macos-x64": "1.25.0",
39
+ "@moonrepo/core-windows-x64-msvc": "1.25.0"
40
40
  }
41
41
  }