@moonrepo/cli 0.24.3 → 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 +35 -1
- package/LICENSE +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
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
|
+
|
|
3
37
|
## 0.24.3
|
|
4
38
|
|
|
5
39
|
#### 🐞 Fixes
|
|
@@ -165,7 +199,7 @@ immediately see the benefits in your CI pipelines.
|
|
|
165
199
|
|
|
166
200
|
##### Toolchain
|
|
167
201
|
|
|
168
|
-
- Added Bun as a
|
|
202
|
+
- Added Bun as a tier 1 language (doesn't do much at the moment).
|
|
169
203
|
- Our toolchain now creates shims for all installed tools, and also utilizes these shims when
|
|
170
204
|
executing commands in the pipeline. (Unix only)
|
|
171
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/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
|
}
|