@moonrepo/cli 0.23.4 → 0.24.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 +48 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,53 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.24.1
4
+
5
+ #### 🐞 Fixes
6
+
7
+ - Fixed an issue around comparison estimate calculation for run reports.
8
+
9
+ ## 0.24.0
10
+
11
+ Remote caching is now publicly available through our new service
12
+ [moonbase](https://moonrepo.dev/moonbase)! Sign up for a [free account](https://moonrepo.app/) and
13
+ immediately see the benefits in your CI pipelines.
14
+
15
+ #### 💥 Breaking
16
+
17
+ - Moved `moon query projects` JSON output behind a `--json` flag.
18
+ - Moved `moon query touched-files` JSON output behind a `--json` flag.
19
+
20
+ #### 🚀 Updates
21
+
22
+ - Added a `moon completions` command for generating shell completions.
23
+ - Added [TypeScript v5](https://devblogs.microsoft.com/typescript/announcing-typescript-5-0-beta/)
24
+ support.
25
+ - Added a `hasher.walkStrategy` setting to `.moon/workspace.yml`.
26
+ - Updated `moon query projects` and `moon query touched-files` default output to be easily readable
27
+ and parseable.
28
+
29
+ ##### Projects
30
+
31
+ - Added a `platform` setting to `moon.yml`, allowing the default platform to be defined for all
32
+ tasks.
33
+ - Updated task `outputs` to support token functions (`@group`, `@globs`, etc).
34
+
35
+ ##### Runner
36
+
37
+ - Added an `--interactive` flag to `moon run` to force a target to run in interactive mode.
38
+ - Updated tasks marked as `local` to always run in interactive mode.
39
+
40
+ #### 🐞 Fixes
41
+
42
+ - Fixed an issue where moon would write to `package.json` or `tsconfig.json` with no changes,
43
+ causing modified events to trigger.
44
+
45
+ #### ⚙️ Internal
46
+
47
+ - Added initial Go lang support to our toolchain.
48
+ - Added a `comparisonEstimate` block to run reports.
49
+ - Added `baselineDuration` and `estimatedSavings` to `pipeline.finished` events.
50
+
3
51
  ## 0.23.4
4
52
 
5
53
  #### 🐞 Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moonrepo/cli",
3
- "version": "0.23.4",
3
+ "version": "0.24.1",
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.1"
30
30
  },
31
31
  "optionalDependencies": {
32
- "@moonrepo/core-linux-arm64-gnu": "^0.23.4",
33
- "@moonrepo/core-linux-arm64-musl": "^0.23.4",
34
- "@moonrepo/core-linux-x64-gnu": "^0.23.4",
35
- "@moonrepo/core-linux-x64-musl": "^0.23.4",
36
- "@moonrepo/core-macos-arm64": "^0.23.4",
37
- "@moonrepo/core-macos-x64": "^0.23.4",
38
- "@moonrepo/core-windows-x64-msvc": "^0.23.4"
32
+ "@moonrepo/core-linux-arm64-gnu": "^0.24.1",
33
+ "@moonrepo/core-linux-arm64-musl": "^0.24.1",
34
+ "@moonrepo/core-linux-x64-gnu": "^0.24.1",
35
+ "@moonrepo/core-linux-x64-musl": "^0.24.1",
36
+ "@moonrepo/core-macos-arm64": "^0.24.1",
37
+ "@moonrepo/core-macos-x64": "^0.24.1",
38
+ "@moonrepo/core-windows-x64-msvc": "^0.24.1"
39
39
  }
40
40
  }