@moonrepo/cli 0.10.0 → 0.11.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 +31 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.11.0
4
+
5
+ #### 🚀 Updates
6
+
7
+ - Added a `moon clean` command for manually clearing the cache.
8
+ - Added an `actionRunner.cacheLifetime` setting to `.moon/workspace.yml`, for controlling the stale
9
+ cache threshold.
10
+ - Added an `envFile` option to tasks, allowing `.env` files to be loaded for environment variables.
11
+ - Added a `local` setting to tasks, that marks the task for local development only.
12
+ - Updated the `outputStyle` task option with additional variants: `buffer`, `buffer-only-failure`,
13
+ `hash`, `none`.
14
+ - Updated `moon run` to support running multiple targets concurrently.
15
+
16
+ #### 🐞 Fixes
17
+
18
+ - Fixed an issue where output hydration was bypassing "off" cache.
19
+ - Fixed an issue where parsing a node module binary would panic.
20
+ - Fixed an issue where moon would panic attempting to read non-JS code shipped in node modules (Rust
21
+ or Go binaries).
22
+ - Fixed an issue where project globs would pickup dot folders (`.git`, `.moon`, etc) or
23
+ `node_modules`.
24
+ - Fixed an issue where project names were stripping capital letters when using globs.
25
+
26
+ #### ⚙️ Internal
27
+
28
+ - Updated Rust to v1.63.
29
+
3
30
  ## 0.10.0
4
31
 
5
32
  #### 💥 Breaking
@@ -203,6 +230,10 @@ This release was largely focused on interoperability with the Node.js ecosystem,
203
230
 
204
231
  - More fixes around terminal color output and handling.
205
232
 
233
+ #### 📚 Documentation
234
+
235
+ - Add "released in version" badges/labels to new features across all docs.
236
+
206
237
  #### ⚙️ Internal
207
238
 
208
239
  - Temporarily disabling offline internet checks as it has issues with VPNs. Will revisit in the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moonrepo/cli",
3
- "version": "0.10.0",
3
+ "version": "0.11.0",
4
4
  "description": "moon command line and core system.",
5
5
  "keywords": [
6
6
  "moon",
@@ -29,10 +29,10 @@
29
29
  "detect-libc": "^2.0.1"
30
30
  },
31
31
  "optionalDependencies": {
32
- "@moonrepo/core-linux-x64-gnu": "^0.10.0",
33
- "@moonrepo/core-linux-x64-musl": "^0.10.0",
34
- "@moonrepo/core-macos-arm64": "^0.10.0",
35
- "@moonrepo/core-macos-x64": "^0.10.0",
36
- "@moonrepo/core-windows-x64-msvc": "^0.10.0"
32
+ "@moonrepo/core-linux-x64-gnu": "^0.11.0",
33
+ "@moonrepo/core-linux-x64-musl": "^0.11.0",
34
+ "@moonrepo/core-macos-arm64": "^0.11.0",
35
+ "@moonrepo/core-macos-x64": "^0.11.0",
36
+ "@moonrepo/core-windows-x64-msvc": "^0.11.0"
37
37
  }
38
38
  }