@moonrepo/cli 1.7.3 → 1.8.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 +22 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.8.0
4
+
5
+ #### 🚀 Updates
6
+
7
+ - Added code owners (`CODEOWNERS`) support.
8
+ - Added `owners` setting to `moon.yml`.
9
+ - Added `codeowners` setting to `.moon/workspace.yml`.
10
+ - Added `moon sync codeowners` command.
11
+ - Added `vcs.provider` setting to `.moon/workspace.yml`.
12
+ - Added a new action to the graph, `SyncWorkspace`, that'll be used for workspace-level checks.
13
+ - Added `workspace.syncing` and `workspace.synced` webhooks.
14
+ - Added `MOON_OUTPUT_STYLE` and `MOON_RETRY_COUNT` environment variables.
15
+
16
+ - Rust
17
+ - Improved Cargo workspace root and members detection.
18
+
19
+ #### ⚙️ Internal
20
+
21
+ - Deprecated the `moon sync` command, use `moon sync projects` instead.
22
+ - Refactored task inputs, outputs, and file groups to be more accurate.
23
+ - Updated Rust to v1.70.
24
+
3
25
  ## 1.7.3
4
26
 
5
27
  #### 🐞 Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moonrepo/cli",
3
- "version": "1.7.3",
3
+ "version": "1.8.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.7.3",
33
- "@moonrepo/core-linux-arm64-musl": "^1.7.3",
34
- "@moonrepo/core-linux-x64-gnu": "^1.7.3",
35
- "@moonrepo/core-linux-x64-musl": "^1.7.3",
36
- "@moonrepo/core-macos-arm64": "^1.7.3",
37
- "@moonrepo/core-macos-x64": "^1.7.3",
38
- "@moonrepo/core-windows-x64-msvc": "^1.7.3"
32
+ "@moonrepo/core-linux-arm64-gnu": "^1.8.0",
33
+ "@moonrepo/core-linux-arm64-musl": "^1.8.0",
34
+ "@moonrepo/core-linux-x64-gnu": "^1.8.0",
35
+ "@moonrepo/core-linux-x64-musl": "^1.8.0",
36
+ "@moonrepo/core-macos-arm64": "^1.8.0",
37
+ "@moonrepo/core-macos-x64": "^1.8.0",
38
+ "@moonrepo/core-windows-x64-msvc": "^1.8.0"
39
39
  }
40
40
  }