From 0b98ebd9058becc3b5c7d69172596fb19f6dc23e Mon Sep 17 00:00:00 2001 From: apisecuniversity-dave Date: Fri, 24 Apr 2026 07:20:06 -0700 Subject: [PATCH] Bump cli version from 0.2.2 to 0.3.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Picks up the dotnet_parser name-extraction fix (code-discovery 0.3.1+), which replaces the hardcoded `title="ASP.NET Core API"` in DiscoveryResult with `_extract_app_title()` that reads the real `new OpenApiInfo { Title }` from source and falls back to the repository basename. Customers pointing this action at ASP.NET Core repos were seeing APIsec projects created with the literal "ASP.NET Core Api" placeholder — this bump resolves that for all new APIsec projects created by the action. Existing projects stuck with the old name still need a separate fix in the core package (api_client._reload_spec does not send applicationName on updates); that will ship in a follow-up release. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index e6784a4..ecb4460 100644 --- a/action.yml +++ b/action.yml @@ -57,7 +57,7 @@ runs: shell: bash run: | python3 -m pip install --upgrade pip - pip install code-discovery==0.2.2 + pip install code-discovery==0.3.2 - name: Configure API credentials shell: bash