-
Notifications
You must be signed in to change notification settings - Fork 13
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
Fixes handling of Custom IOA Rule Group Versioning #216
Fixes handling of Custom IOA Rule Group Versioning #216
Conversation
Adding some details/context on the implemented changes: Updating a rule group, or a rule within a rule group, requires When doing update operations on a rule group or its rules, the API returns the rule group with the updated version. However, when creating or deleting rules, the API also increments the rule group version, but as the rule group isn't returned to us, we can't leverage the API response to track the new rule group version, and need to track that locally. I also changed the ordering of the create, update, and delete operations in
|
I think the linting issues should be fixed @ChristopherHammond13, but seems like the CI workflows need your approval to re-run. |
Thank you so much for your fix here, @hur! I'm happy to get this merged. We'll get this fix into 0.9.1. |
Fixes handling of Custom IOA Rule Group Versioning
Bandit analysis
Added features and functionality
Fixed Issue #212.
Issues resolved
Other
_create_update_delete_rules
was changed to_update_create_delete_rules
after adjusting the order of operations within the function.