@moonrepo/cli 0.24.3 → 0.25.1

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 +46 -1
  2. package/LICENSE +1 -1
  3. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,50 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.25.1
4
+
5
+ #### 🚀 Updates
6
+
7
+ - Added a `--force` flag to `moon run` that will bypass affected checks. Useful for always forcing a
8
+ run in CI.
9
+
10
+ #### 🐞 Fixes
11
+
12
+ - Fixed an issue where `moon init` would panic while checking for a newer version.
13
+
14
+ ## 0.25.0
15
+
16
+ #### 💥 Breaking
17
+
18
+ - Updated `node.version` and `node.<packageManager>.version` to no longer default to a hard-coded
19
+ version. When not defined, will fallback to the binary available on `PATH`.
20
+ - Updated touched files (in context and queries) to be workspace relative paths instead of absolute.
21
+
22
+ #### 🚀 Updates
23
+
24
+ - Added experimental Deno tier 2 support.
25
+ - Added offline (no internet connection) support.
26
+ - Added project-level TypeScript settings via `toolchain.typescript` in `moon.yml`.
27
+ - Updated `language` setting in `moon.yml` to support any custom language.
28
+ - Updated project, task, and target identifiers to support periods (`.`).
29
+
30
+ ##### Moonbase
31
+
32
+ - CI runs can now be tracked in moonbase to gather insights and metrics.
33
+
34
+ #### 🐞 Fixes
35
+
36
+ - Fixed an issue where task outputs were considered as input sources when hashing, causing
37
+ unnecessary cache misses.
38
+
39
+ #### ⚙️ Internal
40
+
41
+ - Updated Rust to v1.67.
42
+ - Updated local development to support BSD based unix distros.
43
+ - Added `context` to `pipeline.started` and `pipeline.finished` events.
44
+ - Refactored glob matching to use workspace relative paths instead of absolute. Please report an
45
+ issue if hashing or affected detection is now inaccurate.
46
+ - We now build against older operating systems in an attempt to solve GLIBC version errors.
47
+
3
48
  ## 0.24.3
4
49
 
5
50
  #### 🐞 Fixes
@@ -165,7 +210,7 @@ immediately see the benefits in your CI pipelines.
165
210
 
166
211
  ##### Toolchain
167
212
 
168
- - Added Bun as a Tier 1 language (doesn't do much at the moment).
213
+ - Added Bun as a tier 1 language (doesn't do much at the moment).
169
214
  - Our toolchain now creates shims for all installed tools, and also utilizes these shims when
170
215
  executing commands in the pipeline. (Unix only)
171
216
 
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2021 moonrepo LLC, Miles Johnson
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.24.3",
3
+ "version": "0.25.1",
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.24.3",
33
- "@moonrepo/core-linux-arm64-musl": "^0.24.3",
34
- "@moonrepo/core-linux-x64-gnu": "^0.24.3",
35
- "@moonrepo/core-linux-x64-musl": "^0.24.3",
36
- "@moonrepo/core-macos-arm64": "^0.24.3",
37
- "@moonrepo/core-macos-x64": "^0.24.3",
38
- "@moonrepo/core-windows-x64-msvc": "^0.24.3"
32
+ "@moonrepo/core-linux-arm64-gnu": "^0.25.1",
33
+ "@moonrepo/core-linux-arm64-musl": "^0.25.1",
34
+ "@moonrepo/core-linux-x64-gnu": "^0.25.1",
35
+ "@moonrepo/core-linux-x64-musl": "^0.25.1",
36
+ "@moonrepo/core-macos-arm64": "^0.25.1",
37
+ "@moonrepo/core-macos-x64": "^0.25.1",
38
+ "@moonrepo/core-windows-x64-msvc": "^0.25.1"
39
39
  }
40
40
  }