Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
01feef5
WIP - support list of categories
Oct 6, 2025
5569542
migrate data from deprecated field to list field
Oct 7, 2025
f8e8ab0
formatter/linter
Oct 7, 2025
e8b238a
Add TODO markers to track needed cleanup after migration
Oct 7, 2025
31b9a32
Replicate data between deprecated and new field
Oct 7, 2025
6edd87a
load adverse action data to get categories
Oct 7, 2025
8da5fb4
update smoke tests to use new field
Oct 8, 2025
1ff2538
Update api model test snapshots to match new contracts
Oct 8, 2025
b438b81
Update provider user api model test snapshot
Oct 8, 2025
005eb01
Move provider management lambdas into api lambda stack
Oct 8, 2025
4146d34
formatting
Oct 8, 2025
2d8f4a3
Add feature flag for gating new behavior
Oct 9, 2025
deeed86
Add feature flag for gating new behavior on POST
Oct 10, 2025
f9397f4
Add encumbrance type to smoke test requests
Oct 13, 2025
aec1e50
update smoke tests to check status from DB directly
Oct 14, 2025
77bf06e
Add env var for feature flag client
Oct 15, 2025
139204a
Update smoke tests to check for matching adverse action record
Oct 15, 2025
edeec5b
Formatting / linter
Oct 15, 2025
01fdebe
PR feedback - doc string fix
Oct 15, 2025
6d84880
Update test defaults to only include new field
Oct 16, 2025
28d66d7
PR feedback - clean comments/patches
Oct 16, 2025
d64d0ff
move api log assignment to lambda stack
Oct 20, 2025
1880cdf
Retain all lambda layer versions for all environments
Oct 21, 2025
40eca54
Update API spec to latest after rebase
Oct 21, 2025
d473e16
Formatting/linter
Oct 21, 2025
866e00f
PR feedback
Oct 21, 2025
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
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,7 @@ def __init__(
# we will likely need to add a custom resource to track these versions, and clean up versions that are
# older than a certain date. That is out of scope for our current effort, but we're leaving this comment
# here to remind us that this will need to be addressed at a later date.
removal_policy=RemovalPolicy.RETAIN
if not self.node.try_get_context('sandbox')
else RemovalPolicy.DESTROY,
removal_policy=RemovalPolicy.RETAIN,
**kwargs,
)

Expand Down
Loading