@moonrepo/cli 1.9.1 → 1.10.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 +47 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,52 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.10.0
4
+
5
+ #### 💥 Breaking
6
+
7
+ > These changes are fixing edge cases that should not have been allowed, but may break existing
8
+ > repos. If these changes become troublesome, we'll revert.
9
+
10
+ - Tasks that configure the same outputs will now error. This change was made as multiple tasks
11
+ writing to the same output location will cause caching and hydration issues.
12
+ - If a dependency of a task failed to run or was skipped, then the parent task will now be skipped.
13
+
14
+ #### 🚀 Updates
15
+
16
+ - Added support for `MOON_BASE` and `MOON_HEAD` environment variables.
17
+ - Will be used when diffing across branches or commits.
18
+ - Works for both `moon ci` and `moon run`.
19
+ - Added `deno.bins` setting to `.moon/toolchain.yml`.
20
+ - Added `hasher.ignorePatterns` and `hasher.ignoreMissingPatterns` settings to
21
+ `.moon/workspace.yml`.
22
+ - Updated `moon ci` to include a summary of all failed actions.
23
+ - Updated `moon run` to compare against the previous commit when running on the default branch and
24
+ using `--remote`.
25
+ - Updated `rust.bins` in `.moon/toolchain.yml` to support an object for each bin entry.
26
+ - Can denote bins as CI or local only.
27
+ - Can force install bins.
28
+ - Updated the run report to include stderr/stdout for all attempts.
29
+
30
+ #### 🐞 Fixes
31
+
32
+ - Fixed an issue where failed target run attempts would not appear in the run report.
33
+
34
+ #### 📚 Documentation
35
+
36
+ - Added a new in-depth "Debugging a task" guide.
37
+
38
+ #### ⚙️ Internal
39
+
40
+ - Updated to proto v0.12.
41
+ - Modernized the code generator and project constraints implementation.
42
+ - Renamed runfile to snapshot throughout.
43
+
44
+ ## 1.9.2
45
+
46
+ #### 🐞 Fixes
47
+
48
+ - Fixed a panic when attempting to execute an npm package who's binary is purely Bash.
49
+
3
50
  ## 1.9.1
4
51
 
5
52
  #### 🐞 Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moonrepo/cli",
3
- "version": "1.9.1",
3
+ "version": "1.10.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": "^1.9.1",
33
- "@moonrepo/core-linux-arm64-musl": "^1.9.1",
34
- "@moonrepo/core-linux-x64-gnu": "^1.9.1",
35
- "@moonrepo/core-linux-x64-musl": "^1.9.1",
36
- "@moonrepo/core-macos-arm64": "^1.9.1",
37
- "@moonrepo/core-macos-x64": "^1.9.1",
38
- "@moonrepo/core-windows-x64-msvc": "^1.9.1"
32
+ "@moonrepo/core-linux-arm64-gnu": "^1.10.0",
33
+ "@moonrepo/core-linux-arm64-musl": "^1.10.0",
34
+ "@moonrepo/core-linux-x64-gnu": "^1.10.0",
35
+ "@moonrepo/core-linux-x64-musl": "^1.10.0",
36
+ "@moonrepo/core-macos-arm64": "^1.10.0",
37
+ "@moonrepo/core-macos-x64": "^1.10.0",
38
+ "@moonrepo/core-windows-x64-msvc": "^1.10.0"
39
39
  }
40
40
  }