Skip to content

Commit e3cf1d7

Browse files
committed
chore: release v0.18.1
Fix --exclude ** glob patterns, SARIF truncation safety net, and bump codeql-action to v4.
1 parent 75ee4ee commit e3cf1d7

File tree

13 files changed

+46
-39
lines changed

13 files changed

+46
-39
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.18.1] - 2026-02-06
11+
12+
### Fixed
13+
- `--exclude` patterns with `**` (e.g. `external/**`) now correctly match recursive directories
14+
- SARIF output capped at 5000 results to stay within GitHub Code Scanning limits
15+
- Bumped `github/codeql-action/upload-sarif` from v3 to v4
16+
1017
## [0.18.0] - 2026-02-06
1118

1219
### Added

Cargo.lock

Lines changed: 11 additions & 11 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
@@ -15,7 +15,7 @@ members = [
1515
]
1616

1717
[workspace.package]
18-
version = "0.18.0"
18+
version = "0.18.1"
1919
edition = "2024"
2020
authors = ["Rust Monorepo Analyzer Team"]
2121
license = "MIT OR Apache-2.0"

crates/ai/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ edition.workspace = true
66
license.workspace = true
77

88
[dependencies]
9-
rma-common = { version = "0.18.0", path = "../common" }
10-
rma-parser = { version = "0.18.0", path = "../parser" }
9+
rma-common = { version = "0.18.1", path = "../common" }
10+
rma-parser = { version = "0.18.1", path = "../parser" }
1111
anyhow.workspace = true
1212
thiserror.workspace = true
1313
tracing.workspace = true

crates/analyzer/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ oxc = [
1818
]
1919

2020
[dependencies]
21-
rma-common = { version = "0.18.0", path = "../common" }
22-
rma-parser = { version = "0.18.0", path = "../parser" }
23-
rma-rules = { version = "0.18.0", path = "../rules" }
21+
rma-common = { version = "0.18.1", path = "../common" }
22+
rma-parser = { version = "0.18.1", path = "../parser" }
23+
rma-rules = { version = "0.18.1", path = "../rules" }
2424
anyhow.workspace = true
2525
thiserror.workspace = true
2626
tracing.workspace = true

crates/cli/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ default = ["oxc"]
2020
oxc = ["rma-analyzer/oxc"]
2121

2222
[dependencies]
23-
rma-common = { version = "0.18.0", path = "../common" }
24-
rma-parser = { version = "0.18.0", path = "../parser" }
25-
rma-analyzer = { version = "0.18.0", path = "../analyzer", default-features = false }
26-
rma-indexer = { version = "0.18.0", path = "../indexer" }
27-
rma-ai = { version = "0.18.0", path = "../ai" }
28-
rma-daemon = { version = "0.18.0", path = "../daemon" }
29-
rma-plugins = { version = "0.18.0", path = "../plugins" }
23+
rma-common = { version = "0.18.1", path = "../common" }
24+
rma-parser = { version = "0.18.1", path = "../parser" }
25+
rma-analyzer = { version = "0.18.1", path = "../analyzer", default-features = false }
26+
rma-indexer = { version = "0.18.1", path = "../indexer" }
27+
rma-ai = { version = "0.18.1", path = "../ai" }
28+
rma-daemon = { version = "0.18.1", path = "../daemon" }
29+
rma-plugins = { version = "0.18.1", path = "../plugins" }
3030
anyhow.workspace = true
3131
clap = { workspace = true, features = ["derive", "env", "string"] }
3232
clap_complete = "4.5"

crates/daemon/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ edition.workspace = true
66
license.workspace = true
77

88
[dependencies]
9-
rma-common = { version = "0.18.0", path = "../common" }
10-
rma-parser = { version = "0.18.0", path = "../parser" }
11-
rma-analyzer = { version = "0.18.0", path = "../analyzer" }
12-
rma-indexer = { version = "0.18.0", path = "../indexer" }
9+
rma-common = { version = "0.18.1", path = "../common" }
10+
rma-parser = { version = "0.18.1", path = "../parser" }
11+
rma-analyzer = { version = "0.18.1", path = "../analyzer" }
12+
rma-indexer = { version = "0.18.1", path = "../indexer" }
1313
anyhow.workspace = true
1414
thiserror.workspace = true
1515
tracing.workspace = true

crates/indexer/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ edition.workspace = true
66
license.workspace = true
77

88
[dependencies]
9-
rma-common = { version = "0.18.0", path = "../common" }
10-
rma-parser = { version = "0.18.0", path = "../parser" }
11-
rma-analyzer = { version = "0.18.0", path = "../analyzer" }
9+
rma-common = { version = "0.18.1", path = "../common" }
10+
rma-parser = { version = "0.18.1", path = "../parser" }
11+
rma-analyzer = { version = "0.18.1", path = "../analyzer" }
1212
anyhow.workspace = true
1313
thiserror.workspace = true
1414
tracing.workspace = true

crates/lsp/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ name = "rma-lsp"
1313
path = "src/main.rs"
1414

1515
[dependencies]
16-
rma-common = { version = "0.18.0", path = "../common" }
17-
rma-parser = { version = "0.18.0", path = "../parser" }
18-
rma-analyzer = { version = "0.18.0", path = "../analyzer" }
16+
rma-common = { version = "0.18.1", path = "../common" }
17+
rma-parser = { version = "0.18.1", path = "../parser" }
18+
rma-analyzer = { version = "0.18.1", path = "../analyzer" }
1919
anyhow.workspace = true
2020
thiserror.workspace = true
2121
tracing.workspace = true

crates/parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition.workspace = true
66
license.workspace = true
77

88
[dependencies]
9-
rma-common = { version = "0.18.0", path = "../common" }
9+
rma-common = { version = "0.18.1", path = "../common" }
1010
anyhow.workspace = true
1111
thiserror.workspace = true
1212
tracing.workspace = true

0 commit comments

Comments
 (0)