@moonrepo/cli 0.12.1 → 0.14.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 (3) hide show
  1. package/CHANGELOG.md +54 -1
  2. package/LICENSE +1 -1
  3. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,57 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.14.0
4
+
5
+ #### 🎉 Release
6
+
7
+ - Released a new GitHub action,
8
+ [`moonrepo/run-report-action`](https://github.com/marketplace/actions/moon-ci-run-reports)!
9
+
10
+ #### 💥 Breaking
11
+
12
+ - Reworked how caching/hashing works when running in a Docker container/image. If the VCS root
13
+ cannot be found, we disable caching. This removes the requirement of mounting a `.git` volume for
14
+ Docker.
15
+
16
+ #### 🚀 Updates
17
+
18
+ - Added a new `moon generate` command, for code generation and scaffolding.
19
+ - Added a `generator` setting to `.moon/workspace.yml`, for controlling aspects of the generator and
20
+ its templates.
21
+ - Updated the project graph to scan and find implicit dependencies based on language specific
22
+ semantics. For example, will determine moon project relationships based on `package.json` names
23
+ and dependencies.
24
+ - Updated `moon setup` to also install Node.js dependencies.
25
+
26
+ #### 🐞 Fixes
27
+
28
+ - Fixed an issue where project and task names were not being cleaned/formatted properly.
29
+
30
+ ## 0.13.0
31
+
32
+ #### 💥 Breaking
33
+
34
+ - The `node` setting in `.moon/workspace.yml` is now optional, allowing repos to opt-out of Node.js
35
+ support (in preparation for future languages support). This shouldn't affect you if the setting is
36
+ already explicitly defined.
37
+ - Renamed `actionRunner` setting to `runner` in `.moon/workspace.yml`.
38
+
39
+ #### 🚀 Updates
40
+
41
+ - Added a new `moon check` command, for running all build/test tasks for a project(s).
42
+ - Added a `hasher` setting to `.moon/workspace.yml`, for controlling aspects of smart hashing.
43
+ - Updated hashing to utilize the resolved version from the lockfile when applicable.
44
+ - Updated the action runner to fail when an output is defined and the output does not exist after
45
+ being ran.
46
+ - Released a new `@moonrepo/types` npm package.
47
+
48
+ #### ⚙️ Internal
49
+
50
+ - The `SetupToolchain` action has been updated to be language/platform aware, and as such, was split
51
+ into `SetupNodeToolchain` and `SetupSystemToolchain`.
52
+ - Output is now buffered when running a target. This should reduce tearing and increase performance.
53
+ - Upgraded all Cargo dependencies.
54
+
3
55
  ## 0.12.1
4
56
 
5
57
  #### 🐞 Fixes
@@ -18,7 +70,8 @@
18
70
 
19
71
  - Added support for Linux ARM GNU (`aarch64-unknown-linux-gnu`).
20
72
  - Added support for Linux ARM musl (`aarch64-unknown-linux-musl`).
21
- - Added a `typescript` setting to `moon.yml`, allowing TypeScript support to be toggled per project.
73
+ - Added a `workspace.typescript` setting to `moon.yml`, allowing TypeScript support to be toggled
74
+ per project.
22
75
  - Added a `--report` option to the `moon run` command, for generating run reports for debugging.
23
76
  - Added an `--affected` option to the `moon query projects` command.
24
77
  - Updated the task `command` to also support inline arguments. You can now merge `command` and
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2021 moon, Miles Johnson
3
+ Copyright (c) 2021 moonrepo LLC, Miles Johnson
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
6
6
  associated documentation files (the "Software"), to deal in the Software without restriction,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moonrepo/cli",
3
- "version": "0.12.1",
3
+ "version": "0.14.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.12.1",
33
- "@moonrepo/core-linux-arm64-musl": "^0.12.1",
34
- "@moonrepo/core-linux-x64-gnu": "^0.12.1",
35
- "@moonrepo/core-linux-x64-musl": "^0.12.1",
36
- "@moonrepo/core-macos-arm64": "^0.12.1",
37
- "@moonrepo/core-macos-x64": "^0.12.1",
38
- "@moonrepo/core-windows-x64-msvc": "^0.12.1"
32
+ "@moonrepo/core-linux-arm64-gnu": "^0.14.0",
33
+ "@moonrepo/core-linux-arm64-musl": "^0.14.0",
34
+ "@moonrepo/core-linux-x64-gnu": "^0.14.0",
35
+ "@moonrepo/core-linux-x64-musl": "^0.14.0",
36
+ "@moonrepo/core-macos-arm64": "^0.14.0",
37
+ "@moonrepo/core-macos-x64": "^0.14.0",
38
+ "@moonrepo/core-windows-x64-msvc": "^0.14.0"
39
39
  }
40
40
  }