0.62.0#27
Merged
tmunzer-AIDE merged 3 commits intomainfrom May 1, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Release bump to mistapi 0.62.0, updating the generated API bindings to align with the latest OpenAPI spec and exposing newly added Mist endpoints (E911 exports, SSO admin cleanup, NAC CoA, MX Edge upgrades, site auto-map assignment), plus some query parameter / enum expansions.
Changes:
- Added new API modules/endpoints (org exports E911, SSO admin deletion, NAC CoA, MX Edge upgrade lifecycle, site auto-map assignment, additional site APIs).
- Aligned/expanded query parameters and enum docs (audit logs count/search mapping, inventory count filters, JSI SIRT search filters, band enum additions).
- Bumped package version to 0.62.0 and updated changelog/release metadata.
Reviewed changes
Copilot reviewed 25 out of 26 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| uv.lock | Bumps locked package version to 0.62.0. |
| src/mistapi/__version.py | Bumps library version constant to 0.62.0. |
| pyproject.toml | Bumps project version to 0.62.0. |
| CHANGELOG.md | Adds 0.62.0 release notes. |
| Makefile | Adjusts generate target prerequisites for OpenAPI/codegen workflow. |
| src/mistapi/api/v1/sites/sle.py | Updates deprecation metadata to current version. |
| src/mistapi/api/v1/sites/search.py | Adds site IoT endpoint search wrapper. |
| src/mistapi/api/v1/sites/rrm.py | Adds channel score endpoint + expands documented band enum values. |
| src/mistapi/api/v1/sites/nac_clients.py | Adds Site NAC client CoA trigger endpoint. |
| src/mistapi/api/v1/sites/mxedges.py | Adds Site MX Edge upgrade lifecycle endpoints. |
| src/mistapi/api/v1/sites/devices.py | Adds Zigbee join enable endpoint. |
| src/mistapi/api/v1/sites/clients.py | Expands documented band enum values across wireless client endpoints. |
| src/mistapi/api/v1/sites/auto_map_assignment.py | Adds start/cancel/status APIs for site auto-map assignment. |
| src/mistapi/api/v1/sites/apply_auto_map_assignment.py | Adds “apply auto-map assignment” endpoint. |
| src/mistapi/api/v1/sites/clear_auto_map_assignment.py | Adds “clear auto-map assignment” endpoint. |
| src/mistapi/api/v1/sites/init.py | Exposes new site modules via package exports. |
| src/mistapi/api/v1/orgs/exports.py | Adds org exports E911 report management endpoints. |
| src/mistapi/api/v1/orgs/ssos.py | Adds org SSO admin deletion endpoint. |
| src/mistapi/api/v1/orgs/nac_clients.py | Adds org NAC client CoA trigger endpoint. |
| src/mistapi/api/v1/orgs/mxedges.py | Adds org MX Edge upgrade update/cancel endpoints. |
| src/mistapi/api/v1/orgs/logs.py | Aligns audit log count vs list endpoints to /logs/count and /logs/search. |
| src/mistapi/api/v1/orgs/jsi.py | Expands JSI SIRT search query parameters. |
| src/mistapi/api/v1/orgs/inventory.py | Expands inventory count query parameters (site/model/version/status). |
| src/mistapi/api/v1/orgs/clients.py | Expands documented band enum values across wireless client endpoints. |
| src/mistapi/api/v1/orgs/init.py | Exposes new org exports module via package exports. |
| src/mistapi/api/v1/msps/ssos.py | Adds MSP SSO admin deletion endpoint. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Version 0.62.0 (May 2026)
Released: May 1, 2026
This release updates generated API bindings from the latest OpenAPI spec, adding new endpoints for E911 export, SSO admin management, NAC CoA, Mist Edge upgrades, and site auto-map assignment workflows.
1. NEW FEATURES
Org Exports: E911 Report Management
Added a new org exports module with E911 report controls:
getOrgE911Report()enableOrgE911Report()disableOrgE911Report()SSO Admin Removal APIs
Added explicit SSO admin cleanup endpoints:
deleteOrgSsoAdmins()deleteMspSsoAdmins()NAC Change of Authorization (CoA)
Added NAC CoA trigger functions:
sendOrgNacClientCoA()sendSiteNacClientCoA()Mist Edge Upgrade Lifecycle APIs
Added org and site upgrade lifecycle operations:
updateOrgMxEdgeUpgrade(),cancelOrgMxEdgeUpgrade()listSiteMxEdgeUpgrades(),upgradeSiteMxEdges(),getSiteMxEdgeUpgrade(),updateSiteMxEdgeUpgrade(),cancelSiteMxEdgeUpgrade()Site Auto-Map Assignment APIs
Added new site modules and functions for auto-map assignment workflows:
startSiteAutoMapAssignment(),getSiteAutoMapAssignmentStatus(),cancelSiteAutoMapAssignment()applySiteAutoMapAssignment()clearSiteAutoMapAssignment()Additional Site API Coverage
enableSiteDeviceZigbeeJoin()getSiteChannelScores()searchSiteIotEndpoints()2. IMPROVEMENTS
Expanded Query Parameter Coverage
countOrgInventory()now supportssite_id,model,version, andstatusfilters.searchOrgJsiSirt()now supportsupdated_after,updated_before,published_after,published_before,text, andsort.listOrgSecIntelProfiles()now supportslimitandpage.Audit Log API Alignment
countOrgAuditLogs()now maps to/logs/countwith count-specific filters.listOrgAuditLogs()now maps to/logs/searchwith listing and pagination parameters.Updated Band Enum Support
Expanded band values across org/site wireless client and RRM APIs to include:
5-dedicated,5-selectable,6-dedicated,6-selectableModule Export Updates
exportssearch,apply_auto_map_assignment,auto_map_assignment,clear_auto_map_assignment