Commit 90ca8eb
authored
Bump version to 0.5.0, update dependencies, and pin Rust 1.91 in CI (#12)
* Bump version to 0.5.0, update dependencies, and pin Rust 1.91 in CI
- Update all crate dependencies to latest compatible versions (46 packages)
- Sync package version to 0.5.0 across Cargo.toml, VERSION, and Helm charts
- Pin CI workflow to Rust 1.91 for consistent builds
* Improve CI workflow with separate lint/test/build jobs
- Split monolithic build job into lint, test, and build stages
- Add pull_request trigger for PR validation
- Docker push only on main branch (DO_PUSH condition)
- Use GitHub Actions cache (type=gha) for non-main builds
- Add explicit permissions (contents: read)
- Improve clippy check with --all-targets flag
- Include Rust version in cache key for consistency
* Sync lint commands and fix clippy warnings
- Split Makefile lint into lint (check) and lint_fix (auto-fix)
- Update dev_check to use lint_fix for convenience
- CI workflow now uses make lint for consistency
- Fix collapsible_if warnings using let chains (Rust 2024)
- Fix bool_assert_comparison: use assert!(!expr) instead of assert_eq!(expr, false)
- Fix assertions_on_constants: remove useless assert!(true)
- Fix len_zero: use !is_empty() instead of len() >= 11 parent 44cab02 commit 90ca8eb
File tree
11 files changed
+184
-135
lines changed- .github/workflows
- helm/logfowd2
- src
- domain
- infrastructure/metrics
- transport/bridge
11 files changed
+184
-135
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
4 | 12 | | |
5 | 13 | | |
6 | | - | |
| 14 | + | |
7 | 15 | | |
8 | | - | |
9 | 16 | | |
10 | 17 | | |
11 | 18 | | |
12 | 19 | | |
13 | | - | |
| 20 | + | |
14 | 21 | | |
15 | 22 | | |
16 | 23 | | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
17 | 38 | | |
18 | 39 | | |
19 | 40 | | |
20 | 41 | | |
21 | 42 | | |
22 | 43 | | |
23 | 44 | | |
24 | | - | |
| 45 | + | |
25 | 46 | | |
26 | | - | |
27 | | - | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
28 | 55 | | |
29 | 56 | | |
30 | 57 | | |
31 | 58 | | |
32 | 59 | | |
33 | 60 | | |
| 61 | + | |
34 | 62 | | |
35 | 63 | | |
36 | 64 | | |
| |||
39 | 67 | | |
40 | 68 | | |
41 | 69 | | |
42 | | - | |
43 | | - | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
44 | 83 | | |
45 | 84 | | |
46 | 85 | | |
| |||
51 | 90 | | |
52 | 91 | | |
53 | 92 | | |
54 | | - | |
55 | | - | |
56 | | - | |
| |||
0 commit comments