Sentinel Split Query fix
This is a minor release mainly to add a warning for Kusto/Sentinel queries that return partial results.
A close friend of MSTICPy (thx @Cyb3r-Monk) had spotted that MSTICPy does not report partial results when doing split queries so it's possible to lose data from the query range silently.
Due to an unfortunate admin error, the fix for this was committed direct to main, so no PR for this is available. :-(
If you want the query to fail (throw an exception) rather than just warn you can supply a new parameter fail_if_partial
.
This only affects the Sentinel query provider and works for standard as well as split queries.
NOTE: the documentation has a typo and calls this fail_on_commit
- we'll fix that in the next release to support both fail_if_partial
and fail_on_partial
Example
qry_prov.exec_query(query_string, fail_if_partial=True)
What's Changed
- Missing PR for partial query warning and fixes for pandas deprecation warnings See the diff for changes
- Fixing group.apply for pandas < 2.2.1 by @ianhelle in #759
- Added missing quotation in code block by @ryan-aus in #753
- Bump httpx from 0.25.2 to 0.27.0 by @dependabot in #754
- Bump readthedocs-sphinx-ext from 2.2.3 to 2.2.5 by @dependabot in #743
- Updated conda reqs files for new packages by @ianhelle in #758
- Build break fix for splunk SDK by @ianhelle in #760
New Contributors
Full Changelog: v2.10.0...v2.11.0