@moonrepo/cli 0.16.1 → 0.17.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 CHANGED
@@ -1,5 +1,44 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.17.0
4
+
5
+ #### 💥 Breaking
6
+
7
+ - Refactored project and task name/id cleaning. Previously, unsupported characters were simply
8
+ removed. Instead, we now replace them with dashes for better readability.
9
+ - The task `type` in `moon.yml` and `.moon/project.yml` has been renamed to `platform`.
10
+ - The `$taskType` token has been renamed to `$taskPlatform`.
11
+
12
+ #### 🚀 Updates
13
+
14
+ - All YAML configuration files can now use
15
+ [aliases and anchors](https://support.atlassian.com/bitbucket-cloud/docs/yaml-anchors/)!
16
+ - The `moon check` command can now use the `--report` option.
17
+
18
+ ##### Tasks
19
+
20
+ - When defining `deps` within the current project, the `~:` prefix is now optional. For example,
21
+ `~:build` can now be written as simply `build`.
22
+
23
+ ##### Generator
24
+
25
+ - Enum variables can now declare an object form for `values`, so that a custom label can be provided
26
+ for each value item.
27
+ - Added JSON schema support for the `template.yml` config.
28
+
29
+ ##### Notifier
30
+
31
+ - Implemented a new service for notifying you about events happening in moon. The first feature in
32
+ this service is webhooks!
33
+ - Added a new `notifier.webhookUrl` setting to `.moon/workspace.yml`, in which the webhooks endpoint
34
+ can be defined.
35
+
36
+ #### ⚡️ Performance
37
+
38
+ - Enabled [mimalloc](https://github.com/microsoft/mimalloc). This reduces memory cost and increases
39
+ runtime performance.
40
+ - Enabled link-time optimization, increases runtime performance.
41
+
3
42
  ## 0.16.1
4
43
 
5
44
  #### 🐞 Fixes
package/README.md CHANGED
@@ -93,6 +93,6 @@ and provide a first-class developer experience.
93
93
 
94
94
  - **Flakiness detection** - Reduce flaky builds with automatic retries and passthrough settings.
95
95
  - **Webhook events** - Receive a webhook for every event in the pipeline. Useful for metrics
96
- gathering.
96
+ gathering and insights.
97
97
  - **Terminal notifications** - Receives notifications in your chosen terminal when builds are
98
98
  successful... or are not.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moonrepo/cli",
3
- "version": "0.16.1",
3
+ "version": "0.17.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.16.1",
33
- "@moonrepo/core-linux-arm64-musl": "^0.16.1",
34
- "@moonrepo/core-linux-x64-gnu": "^0.16.1",
35
- "@moonrepo/core-linux-x64-musl": "^0.16.1",
36
- "@moonrepo/core-macos-arm64": "^0.16.1",
37
- "@moonrepo/core-macos-x64": "^0.16.1",
38
- "@moonrepo/core-windows-x64-msvc": "^0.16.1"
32
+ "@moonrepo/core-linux-arm64-gnu": "^0.17.0",
33
+ "@moonrepo/core-linux-arm64-musl": "^0.17.0",
34
+ "@moonrepo/core-linux-x64-gnu": "^0.17.0",
35
+ "@moonrepo/core-linux-x64-musl": "^0.17.0",
36
+ "@moonrepo/core-macos-arm64": "^0.17.0",
37
+ "@moonrepo/core-macos-x64": "^0.17.0",
38
+ "@moonrepo/core-windows-x64-msvc": "^0.17.0"
39
39
  }
40
40
  }