Skip to content

Commit bed2d60

Browse files
committed
Fixes.
1 parent 50d91a0 commit bed2d60

3 files changed

Lines changed: 16 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## Unreleased
4+
5+
#### 🚀 Updates
6+
7+
- Updated `MOON_BASE` and `MOON_HEAD` to longer require also passing `--affected`.
8+
9+
#### 🐞 Fixes
10+
11+
- Fixed an issue in GitLab CI where the wrong `HEAD` would be used for merge request pipelines.
12+
13+
#### 🧰 Toolchains
14+
15+
- **Rust**
16+
- Fixed an issue where Docker scaffolding would leave behind empty `lib.rs` or `main.rs` files.
17+
318
## 2.4.5
419

520
#### 🐞 Fixes

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ bytes = "1.12.0"
1414
async-trait = "0.1.89"
1515
chrono = { version = "0.4.44", features = ["serde"] }
1616
cd_env = "0.4.1"
17-
ci_env = "0.5.1"
17+
ci_env = "0.5.3"
1818
clap = { version = "4.6.1", default-features = false, features = [
1919
"derive",
2020
"std",

crates/app-macros/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,6 @@ pub fn with_affected_args(attr: TokenStream, item: TokenStream) -> TokenStream {
226226
env = "MOON_BASE",
227227
help = "Base branch, commit, or revision to compare against",
228228
help_heading = super::HEADING_AFFECTED,
229-
requires = "affected-args",
230229
)]
231230
pub base: Option<String>
232231
},
@@ -236,7 +235,6 @@ pub fn with_affected_args(attr: TokenStream, item: TokenStream) -> TokenStream {
236235
env = "MOON_HEAD",
237236
help = "Current branch, commit, or revision to compare with",
238237
help_heading = super::HEADING_AFFECTED,
239-
requires = "affected-args",
240238
)]
241239
pub head: Option<String>
242240
},

0 commit comments

Comments
 (0)