Skip to content

Commit bcb2452

Browse files
authored
fix: Audit 07/27 (#2643)
* Fixes. * Bump. * Undo toolchain.
1 parent 50d91a0 commit bcb2452

4 files changed

Lines changed: 13 additions & 5 deletions

File tree

CHANGELOG.md

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

3+
## Unreleased
4+
5+
#### 🚀 Updates
6+
7+
- Updated `MOON_BASE` and `MOON_HEAD` to no 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+
313
## 2.4.5
414

515
#### 🐞 Fixes

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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)