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