From 2009f73f3201e426fd9d7a28e074d81c7bb00dfe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Jul 2026 00:16:43 +0000 Subject: [PATCH 1/2] Bump Sarif.Sdk from 5.4.3 to 5.5.0 --- updated-dependencies: - dependency-name: Sarif.Sdk dependency-version: 5.5.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- src/Directory.Packages.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Directory.Packages.props b/src/Directory.Packages.props index 1d878bff84a..3c99694d303 100644 --- a/src/Directory.Packages.props +++ b/src/Directory.Packages.props @@ -88,7 +88,7 @@ - + From fac2078ba4cb216a536175f63fb563b1ada0c8a4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 13 Jul 2026 19:22:39 +0000 Subject: [PATCH 2/2] Stabilize jsonrpc CLI e2e setup timeout --- src/Bicep.Cli.E2eTests/src/local/jsonrpc.test.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Bicep.Cli.E2eTests/src/local/jsonrpc.test.ts b/src/Bicep.Cli.E2eTests/src/local/jsonrpc.test.ts index 08af3933548..fc1289cea6f 100644 --- a/src/Bicep.Cli.E2eTests/src/local/jsonrpc.test.ts +++ b/src/Bicep.Cli.E2eTests/src/local/jsonrpc.test.ts @@ -18,10 +18,11 @@ import { describe("bicep jsonrpc", () => { let connection: MessageConnection; + const connectionSetupTimeoutMs = 60000; - beforeAll(async () => (connection = await openConnection())); + beforeAll(async () => (connection = await openConnection()), connectionSetupTimeoutMs); - afterAll(() => connection.dispose()); + afterAll(() => connection?.dispose()); it("should return a version number", async () => { const result = await version(connection);