Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.

Add a GetExpand trait for initializing Expand objects in our tasks #3553

Merged
merged 36 commits into from
Oct 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
6a2ad0f
Release 8.7.1 (hotfix) (#3459)
AdamL-Microsoft Aug 29, 2023
bab4256
Revert "Release 8.7.1 (hotfix) (#3459)" (#3468)
AdamL-Microsoft Aug 30, 2023
6c5f985
Add a ToExpand trait
kananb Sep 26, 2023
5e61ac5
Implement ToExpand for CommonConfig
kananb Sep 26, 2023
f1dbd8a
Rename to GetExpand and implement for all task configs
kananb Sep 27, 2023
f553c0c
Add proptest to the crate and a simple test function (broken)
kananb Oct 4, 2023
aa7415f
Fix import issues
kananb Oct 4, 2023
c0ac5e3
Add config tests for analysis task
kananb Oct 5, 2023
5a83b09
Implement tests for merge task
kananb Oct 5, 2023
d15ab70
Return Result from get_expand() and implement for the rest of the con…
kananb Oct 5, 2023
66ef8a3
Resolve merge conflict
kananb Oct 5, 2023
5925b97
Undo comment
kananb Oct 5, 2023
19715c0
Update comments
kananb Oct 5, 2023
27792f4
Undo unintentional changes
kananb Oct 5, 2023
c3ca50e
Add missing newline
kananb Oct 5, 2023
245117a
Fix build checks
kananb Oct 6, 2023
d35e767
Fix build checks - lifetime elision
kananb Oct 6, 2023
de995b6
Fix linux test imports
kananb Oct 6, 2023
b0e4163
Fix indented line
kananb Oct 9, 2023
63b36cb
Fix build checks
kananb Oct 9, 2023
367a3e3
Replace common test code with a declarative macro
kananb Oct 10, 2023
3fe1098
Format code
kananb Oct 10, 2023
7f0a510
Simplify URL arbitrary even further to guarantee that it's parseable
kananb Oct 11, 2023
6c8d936
Merge branch 'main' into kanan/expand-all
kananb Oct 17, 2023
fecaee4
Upgrade proptest version
kananb Oct 18, 2023
aa30c68
Implement Default for CommonConfig
kananb Oct 18, 2023
9337a78
Remove the GetExpand trait
kananb Oct 18, 2023
fc00e56
Return Expand instead of Result<Expand>
kananb Oct 18, 2023
d907473
cargo fmt
kananb Oct 18, 2023
304c737
Remove unused import
kananb Oct 18, 2023
d9a86b6
Fix PR comments (see full message for details)
kananb Oct 18, 2023
7d63377
Merge branch 'main' into kanan/expand-all
kananb Oct 18, 2023
a0743dc
Update dotnet coverage task Expander tests
kananb Oct 19, 2023
b9f8b22
Merge branch 'main' into kanan/expand-all
kananb Oct 19, 2023
cbd6f26
Remove incorrect expansion variable from generic merge task
kananb Oct 19, 2023
d859cbb
Merge branch 'kanan/expand-all' of https://github.com/microsoft/onefu…
kananb Oct 19, 2023
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
2 changes: 1 addition & 1 deletion CURRENT_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.9.0
8.9.0
86 changes: 86 additions & 0 deletions src/agent/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions src/agent/onefuzz-task/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,4 +85,6 @@ schemars = { version = "0.8.12", features = ["uuid1"] }

[dev-dependencies]
pretty_assertions = "1.4"
proptest = "1.3.1"
tempfile = "3.8"
dunce = "1.0"
Loading
Loading