Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor cli to use clap’s derive. #1228

Merged
merged 25 commits into from
Aug 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
c96cfcd
Refactor cli to use clap’s derive.
partim Jul 25, 2024
b8ea187
Upgrade MSRV to 1.74.
partim Jul 25, 2024
ce41f73
Clippy-suggested improvements.
partim Jul 25, 2024
e164be6
Remove unused things and single use things from src/test.rs.
partim Jul 25, 2024
55f0ac7
Fix issues with --no-default-features.
partim Jul 25, 2024
2574b86
Silence a logging error.
partim Jul 25, 2024
278defc
Fix auth_check.
partim Jul 25, 2024
e8b972a
Log Krill error output in integration tests.
partim Jul 25, 2024
2a0aa14
Enable second signer on second test Krill.
partim Jul 25, 2024
eca6fc4
Add a TA signer setup and exchange test.
partim Jul 26, 2024
91e9fa1
Clippy-suggested improvements.
partim Jul 26, 2024
6183553
Enable second signer for Krill in functional_ta test.
partim Jul 26, 2024
e9c756e
Remove duplicate TA proxy client commands.
partim Jul 26, 2024
a0def81
Add client_coverage test.
partim Jul 26, 2024
97c0f26
Bring back krillup.
partim Jul 29, 2024
f1fbb44
Minor formatting improvements.
partim Jul 29, 2024
1a6d6f0
Use a constant for the default TA config file.
partim Jul 30, 2024
04dad75
Correctly deal with handles that contain slashes.
partim Aug 1, 2024
80dda3e
Percent-decode path elements if necessary in the HTTP server code as …
partim Aug 1, 2024
5d3728c
Switch to main branch of rpki-rs.
partim Aug 1, 2024
96e8987
Clippy-suggested code improvement.s
partim Aug 1, 2024
0919e13
Revert server side of dealing with slashes in handles.
partim Aug 1, 2024
e2a5003
Produce the correct status codes for krillc/krillta.
partim Aug 19, 2024
e820eed
Remove commented out old code.
partim Aug 19, 2024
89b14fb
Various minor improvements from review feedback.
partim Aug 20, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
# Test against the oldest supported version.
# Test against beta Rust to get early warning of any problems that might occur with the upcoming Rust release.
# Order: oldest Rust to newest Rust.
rust: [1.70.0, stable, beta]
rust: [1.74.0, stable, beta]

# Test with no features, default features ("") and all except UI tests.
# Order: fewest features to most features.
Expand All @@ -68,7 +68,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
rust: [1.70.0, stable, beta]
rust: [1.74.0, stable, beta]
features: ["hsm", "hsm,hsm-tests-kmip"]
steps:
- name: Checkout repository
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
rust: [1.70.0, stable, beta]
rust: [1.74.0, stable, beta]
features: ["hsm,hsm-tests-pkcs11"]
steps:
- name: Checkout repository
Expand Down
Loading
Loading