@moonrepo/cli 0.24.2 → 0.25.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 +42 -1
- package/LICENSE +1 -1
- package/README.md +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,46 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.25.0
|
|
4
|
+
|
|
5
|
+
#### 💥 Breaking
|
|
6
|
+
|
|
7
|
+
- Updated `node.version` and `node.<packageManager>.version` to no longer default to a hard-coded
|
|
8
|
+
version. When not defined, will fallback to the binary available on `PATH`.
|
|
9
|
+
- Updated touched files (in context and queries) to be workspace relative paths instead of absolute.
|
|
10
|
+
|
|
11
|
+
#### 🚀 Updates
|
|
12
|
+
|
|
13
|
+
- Added experimental Deno tier 2 support.
|
|
14
|
+
- Added offline (no internet connection) support.
|
|
15
|
+
- Added project-level TypeScript settings via `toolchain.typescript` in `moon.yml`.
|
|
16
|
+
- Updated `language` setting in `moon.yml` to support any custom language.
|
|
17
|
+
- Updated project, task, and target identifiers to support periods (`.`).
|
|
18
|
+
|
|
19
|
+
##### Moonbase
|
|
20
|
+
|
|
21
|
+
- CI runs can now be tracked in moonbase to gather insights and metrics.
|
|
22
|
+
|
|
23
|
+
#### 🐞 Fixes
|
|
24
|
+
|
|
25
|
+
- Fixed an issue where task outputs were considered as input sources when hashing, causing
|
|
26
|
+
unnecessary cache misses.
|
|
27
|
+
|
|
28
|
+
#### ⚙️ Internal
|
|
29
|
+
|
|
30
|
+
- Updated Rust to v1.67.
|
|
31
|
+
- Updated local development to support BSD based unix distros.
|
|
32
|
+
- Added `context` to `pipeline.started` and `pipeline.finished` events.
|
|
33
|
+
- Refactored glob matching to use workspace relative paths instead of absolute. Please report an
|
|
34
|
+
issue if hashing or affected detection is now inaccurate.
|
|
35
|
+
- We now build against older operating systems in an attempt to solve GLIBC version errors.
|
|
36
|
+
|
|
37
|
+
## 0.24.3
|
|
38
|
+
|
|
39
|
+
#### 🐞 Fixes
|
|
40
|
+
|
|
41
|
+
- Fixed an issue where `moon query projects --affected` would hang indefinitely waiting for stdin.
|
|
42
|
+
- Fixed an issue where changing `projects` globs wouldn't immediately invalidate the cache.
|
|
43
|
+
|
|
3
44
|
## 0.24.2
|
|
4
45
|
|
|
5
46
|
#### 🚀 Updates
|
|
@@ -158,7 +199,7 @@ immediately see the benefits in your CI pipelines.
|
|
|
158
199
|
|
|
159
200
|
##### Toolchain
|
|
160
201
|
|
|
161
|
-
- Added Bun as a
|
|
202
|
+
- Added Bun as a tier 1 language (doesn't do much at the moment).
|
|
162
203
|
- Our toolchain now creates shims for all installed tools, and also utilizes these shims when
|
|
163
204
|
executing commands in the pipeline. (Unix only)
|
|
164
205
|
|
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2021 moonrepo
|
|
3
|
+
Copyright (c) 2021 moonrepo, Inc., 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/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @moonrepo/cli
|
|
2
2
|
|
|
3
|
-
The official CLI for [moon](https://moonrepo.dev), a
|
|
3
|
+
The official CLI for [moon](https://moonrepo.dev), a task runner and repo management tool for the
|
|
4
4
|
web ecosystem, written in Rust! Supports JavaScript, TypeScript, Bash, and Batch.
|
|
5
5
|
|
|
6
6
|
- [Documentation](https://moonrepo.dev/docs)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moonrepo/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.25.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.
|
|
33
|
-
"@moonrepo/core-linux-arm64-musl": "^0.
|
|
34
|
-
"@moonrepo/core-linux-x64-gnu": "^0.
|
|
35
|
-
"@moonrepo/core-linux-x64-musl": "^0.
|
|
36
|
-
"@moonrepo/core-macos-arm64": "^0.
|
|
37
|
-
"@moonrepo/core-macos-x64": "^0.
|
|
38
|
-
"@moonrepo/core-windows-x64-msvc": "^0.
|
|
32
|
+
"@moonrepo/core-linux-arm64-gnu": "^0.25.0",
|
|
33
|
+
"@moonrepo/core-linux-arm64-musl": "^0.25.0",
|
|
34
|
+
"@moonrepo/core-linux-x64-gnu": "^0.25.0",
|
|
35
|
+
"@moonrepo/core-linux-x64-musl": "^0.25.0",
|
|
36
|
+
"@moonrepo/core-macos-arm64": "^0.25.0",
|
|
37
|
+
"@moonrepo/core-macos-x64": "^0.25.0",
|
|
38
|
+
"@moonrepo/core-windows-x64-msvc": "^0.25.0"
|
|
39
39
|
}
|
|
40
40
|
}
|