Merged
Conversation
kmaranionjc
approved these changes
Mar 30, 2026
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.

Issues
What does this solve?
Some change in our V2 API resulted in queryFilter URLs like:
https://console.jumpcloud.com/api/v2/systeminsights/users?filter[0]=system_id:eq:69835d723217d75a74edeec1&skip=0&limit=100to no longer be supported.This release addresses this issue by removing the number index in queryFilters and instead just writing queryFilter strings like:
filter=something:eq:this&filter=somethingelse:eq:thatBoth the V1 and V2 SDKs support this type filtering so now they should be similar in how multiple (or even single) filters are applied.
Is there anything particularly tricky?
How should this be tested?
Screenshots
Note
Medium Risk
Changes how
Filterarrays are serialized into query strings for generated V1/V2 clients, which can affect request semantics and potentially break consumers relying on the previousfilter[index]=...format. Remaining changes are version bumps and generated metadata/format updates with low functional risk.Overview
Updates the PowerShell SDK build pipeline to rewrite AutoRest-generated C# so multi-value
Filterparameters are sent as repeated query keys (filter=...&filter=...) instead of indexed keys, aligning V1 and V2 behavior and addressing recent V2 API incompatibility.Improves
BuildCustomFunctions.ps1robustness by capturingnpx autorest --versionoutput even when AutoRest exits non-zero due to deprecation notices. Bumps module versions (V1to0.1.3,V2to0.2.1) and updates release notes plus regenerated V1 packaging/format metadata (manifest/nuspec/csproj and*.format.ps1xmlview changes).Written by Cursor Bugbot for commit 58b35ec. This will update automatically on new commits. Configure here.