Uh oh!
There was an error while loading. Please reload this page.
feat(PRO-3285)!: update plugin to use APIs introduced by V8 pipeline work - #28
Merged
Conversation
akashb95
marked this pull request as ready for review
August 22, 2026 06:56
Migrates function matching, function renaming, and portal-linking calls onto the V8 /v3 API surface (functions-list, rename, and the new data-types/signatures architecture), replacing v2 calls that the reai-api v8 branch removes entirely. Adds a locally-generated dev SDK (scripts/gen_dev_sdk.sh) since no published sdk-python release yet exposes the new Data Types API.
akashb95force-pushed
the
pro-3285-binary-ninja-update
branch
from
August 24, 2026 08:56
0b7090f to
9b0dc29Comparerobertmarsal
approved these changes
Aug 24, 2026
Uh oh!
There was an error while loading. Please reload this page.
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 freeto 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.
Context:
We are releasing the "V8 pipeline", which introduces breaking changes to our API. The plugins need to be updated to use the new APIs. No published SDK release exposes the new
/v3/Data Types API yet - this migration generates one fromsdk-pythonagainst the OpenAPI spec.Similar in spirit to RevEngAI/plugin-ghidra#210.
This diff:
AnalysesResultsMetadataApi.get_functions_listtoFunctionsCoreApi.list_analysis_functions, and renaming fromrename_function_id/FunctionRenametorename_function/RenameInputBodyFunctionsDataTypesApisignature flow with a singleDataTypesApi.v3_list_function_signaturescall, and addsbuild_signature_datato resolve the v3data_type_idgraph (structs, unions, enums, typedefs, pointers, arrays) into thelibbsartifact shapeapply_data_typesalready consumes.scripts/gen_dev_sdk.shto generate a gitignored.dev-sdk/SDK build from an OpenAPI spec, for endpoints ahead of the last publishedrevengairelease.Note that
.dev-sdk/andopenapitools.json(both gitignored) are local build artifacts ofgen_dev_sdk.shand are not part of this diff.