From 7bd8d94c601ca6a2f47c48e4bcf73d03be456927 Mon Sep 17 00:00:00 2001 From: AxonFlow Team Date: Sat, 11 Apr 2026 01:19:09 +0000 Subject: [PATCH] chore: bump Go SDK to v5.3.1 in examples Go SDK v5.3.1 fixes missing auth headers on ListConnectors, GetConnector, GetConnectorHealth, GetPlanStatus, and all 6 execution replay methods. Previously those methods returned 401 against authenticated servers. Source Commits: 32ba63a5 --- examples/audit-logging/go/go.mod | 2 +- examples/code-governance/go/go.mod | 2 +- examples/cost-controls/enforcement/go/go.mod | 2 +- examples/cost-controls/go/go.mod | 2 +- examples/cost-estimation/go/go.mod | 2 +- examples/dynamic-policies/compliance/go/go.mod | 4 +--- examples/dynamic-policies/go/go.mod | 4 +--- examples/evaluation-tier/go/go.mod | 2 +- examples/execution-replay/go/go.mod | 4 +--- examples/execution-tracking/go/go.mod | 2 +- examples/gateway-policy-config/go/go.mod | 2 +- examples/health-check/go/go.mod | 2 +- examples/hello-world/go/go.mod | 2 +- examples/hitl-queue/go/go.mod | 2 +- examples/hitl/go/go.mod | 4 +--- examples/integrations/dspy/go/go.mod | 4 +--- examples/integrations/gateway-mode/go/go.mod | 2 +- examples/integrations/governed-tools/go/go.mod | 2 +- examples/integrations/langgraph/go/go.mod | 4 +--- examples/integrations/proxy-mode/go/go.mod | 2 +- examples/interceptors/go/go.mod | 2 +- examples/llm-providers/azure-openai/proxy-mode/go/go.mod | 2 +- examples/llm-providers/mistral/hello-world/go/go.mod | 2 +- examples/llm-routing/e2e-tests/go/go.mod | 4 +--- examples/llm-routing/go/go.mod | 4 +--- examples/map-confirm-mode/go/go.mod | 2 +- examples/map-lifecycle/go/go.mod | 2 +- examples/map/go/go.mod | 2 +- examples/mcp-audit/go/go.mod | 2 +- examples/mcp-connectors/cloud-storage/go/go.mod | 2 +- examples/mcp-connectors/http/go/go.mod | 2 +- examples/mcp-connectors/http/go/go.sum | 2 ++ examples/mcp-policies/check-endpoints/go/go.mod | 2 +- examples/mcp-policies/go/go.mod | 2 +- examples/mcp-policies/pii-redaction/go/go.mod | 4 +--- examples/media-governance-policies/go/go.mod | 2 +- examples/media-governance/go/go.mod | 2 +- examples/pii-detection/go/go.mod | 2 +- examples/policies/go/create-custom-policy/go.mod | 2 +- examples/policies/go/list-and-filter/go.mod | 4 +--- examples/policies/go/test-pattern/go.mod | 4 +--- examples/policy-configuration/go/go.mod | 2 +- examples/sdk-audit/go/go.mod | 4 +--- examples/singapore-pii/go/go.mod | 4 +--- examples/sqli-detection/go/go.mod | 2 +- examples/static-policies/go/go.mod | 4 +--- examples/support-demo/backend/go.mod | 4 +--- examples/version-check/go/go.mod | 2 +- examples/webhooks/go/go.mod | 2 +- examples/workflow-control/go/go.mod | 2 +- examples/workflow-fail/go/go.mod | 2 +- examples/workflow-policy/go/go.mod | 4 +--- examples/workflows/01-simple-sequential/go.mod | 4 +--- examples/workflows/02-parallel-execution/go.mod | 4 +--- examples/workflows/03-conditional-logic/go.mod | 4 +--- examples/workflows/04-travel-booking-fallbacks/go.mod | 4 +--- examples/workflows/05-data-pipeline/go.mod | 4 +--- examples/workflows/06-multi-step-approval/go.mod | 4 +--- 58 files changed, 59 insertions(+), 101 deletions(-) diff --git a/examples/audit-logging/go/go.mod b/examples/audit-logging/go/go.mod index 544e05b3..5da9f16f 100644 --- a/examples/audit-logging/go/go.mod +++ b/examples/audit-logging/go/go.mod @@ -3,6 +3,6 @@ module github.com/getaxonflow/axonflow/examples/audit-logging/go go 1.21 require ( - github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 + github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 github.com/sashabaranov/go-openai v1.17.9 ) diff --git a/examples/code-governance/go/go.mod b/examples/code-governance/go/go.mod index 7586c10c..fffe96e5 100644 --- a/examples/code-governance/go/go.mod +++ b/examples/code-governance/go/go.mod @@ -2,4 +2,4 @@ module github.com/axonflow/examples/code-governance go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/cost-controls/enforcement/go/go.mod b/examples/cost-controls/enforcement/go/go.mod index 2da42258..103fabf3 100644 --- a/examples/cost-controls/enforcement/go/go.mod +++ b/examples/cost-controls/enforcement/go/go.mod @@ -2,4 +2,4 @@ module cost-controls-enforcement go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/cost-controls/go/go.mod b/examples/cost-controls/go/go.mod index 277cd1ca..17f499d1 100644 --- a/examples/cost-controls/go/go.mod +++ b/examples/cost-controls/go/go.mod @@ -2,4 +2,4 @@ module github.com/getaxonflow/axonflow/examples/cost-controls/go go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/cost-estimation/go/go.mod b/examples/cost-estimation/go/go.mod index f8a65b1e..0b2493ea 100644 --- a/examples/cost-estimation/go/go.mod +++ b/examples/cost-estimation/go/go.mod @@ -2,4 +2,4 @@ module cost-estimation go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/dynamic-policies/compliance/go/go.mod b/examples/dynamic-policies/compliance/go/go.mod index 3e6abbbe..54cc8b35 100644 --- a/examples/dynamic-policies/compliance/go/go.mod +++ b/examples/dynamic-policies/compliance/go/go.mod @@ -2,6 +2,4 @@ module compliance-example go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 - - +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/dynamic-policies/go/go.mod b/examples/dynamic-policies/go/go.mod index 6deeaa7b..9bf7aa4e 100644 --- a/examples/dynamic-policies/go/go.mod +++ b/examples/dynamic-policies/go/go.mod @@ -2,6 +2,4 @@ module github.com/getaxonflow/axonflow/examples/dynamic-policies/go go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 - - +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/evaluation-tier/go/go.mod b/examples/evaluation-tier/go/go.mod index 8f686880..d81a5c4c 100644 --- a/examples/evaluation-tier/go/go.mod +++ b/examples/evaluation-tier/go/go.mod @@ -2,4 +2,4 @@ module github.com/getaxonflow/axonflow/examples/evaluation-tier/go go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/execution-replay/go/go.mod b/examples/execution-replay/go/go.mod index 3ad8d5dc..15cf4fa7 100644 --- a/examples/execution-replay/go/go.mod +++ b/examples/execution-replay/go/go.mod @@ -2,6 +2,4 @@ module github.com/getaxonflow/axonflow/examples/execution-replay/go go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 - - +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/execution-tracking/go/go.mod b/examples/execution-tracking/go/go.mod index 03b7d1c2..dd060533 100644 --- a/examples/execution-tracking/go/go.mod +++ b/examples/execution-tracking/go/go.mod @@ -2,4 +2,4 @@ module github.com/getaxonflow/axonflow-enterprise/examples/execution-tracking go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/gateway-policy-config/go/go.mod b/examples/gateway-policy-config/go/go.mod index 931049f3..a64698d3 100644 --- a/examples/gateway-policy-config/go/go.mod +++ b/examples/gateway-policy-config/go/go.mod @@ -2,4 +2,4 @@ module examples/gateway-policy-config/go go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/health-check/go/go.mod b/examples/health-check/go/go.mod index f1709b4f..11ba0ba7 100644 --- a/examples/health-check/go/go.mod +++ b/examples/health-check/go/go.mod @@ -2,4 +2,4 @@ module health-check go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/hello-world/go/go.mod b/examples/hello-world/go/go.mod index a990470d..c67dbfb1 100644 --- a/examples/hello-world/go/go.mod +++ b/examples/hello-world/go/go.mod @@ -2,4 +2,4 @@ module github.com/axonflow/examples/hello-world go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/hitl-queue/go/go.mod b/examples/hitl-queue/go/go.mod index b595153c..9a05385d 100644 --- a/examples/hitl-queue/go/go.mod +++ b/examples/hitl-queue/go/go.mod @@ -2,4 +2,4 @@ module github.com/axonflow/examples/hitl-queue go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/hitl/go/go.mod b/examples/hitl/go/go.mod index edc6021e..47dce00e 100644 --- a/examples/hitl/go/go.mod +++ b/examples/hitl/go/go.mod @@ -2,6 +2,4 @@ module axonflow-hitl-example go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 - - +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/integrations/dspy/go/go.mod b/examples/integrations/dspy/go/go.mod index 554338e3..d3464886 100644 --- a/examples/integrations/dspy/go/go.mod +++ b/examples/integrations/dspy/go/go.mod @@ -2,6 +2,4 @@ module dspy-axonflow-example go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 - - +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/integrations/gateway-mode/go/go.mod b/examples/integrations/gateway-mode/go/go.mod index 0e997d48..d29763c1 100644 --- a/examples/integrations/gateway-mode/go/go.mod +++ b/examples/integrations/gateway-mode/go/go.mod @@ -3,6 +3,6 @@ module github.com/getaxonflow/axonflow/examples/integrations/gateway-mode/go go 1.21 require ( - github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 + github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 github.com/sashabaranov/go-openai v1.17.9 ) diff --git a/examples/integrations/governed-tools/go/go.mod b/examples/integrations/governed-tools/go/go.mod index 6be7440a..40c80cc5 100644 --- a/examples/integrations/governed-tools/go/go.mod +++ b/examples/integrations/governed-tools/go/go.mod @@ -2,4 +2,4 @@ module github.com/axonflow/examples/governed-tools go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/integrations/langgraph/go/go.mod b/examples/integrations/langgraph/go/go.mod index bd22c473..10f411eb 100644 --- a/examples/integrations/langgraph/go/go.mod +++ b/examples/integrations/langgraph/go/go.mod @@ -2,6 +2,4 @@ module langgraph-axonflow-example go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 - - +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/integrations/proxy-mode/go/go.mod b/examples/integrations/proxy-mode/go/go.mod index 6b953f52..896a66cb 100644 --- a/examples/integrations/proxy-mode/go/go.mod +++ b/examples/integrations/proxy-mode/go/go.mod @@ -2,4 +2,4 @@ module github.com/getaxonflow/axonflow/examples/integrations/proxy-mode/go go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/interceptors/go/go.mod b/examples/interceptors/go/go.mod index 33c5de80..497ed678 100644 --- a/examples/interceptors/go/go.mod +++ b/examples/interceptors/go/go.mod @@ -2,4 +2,4 @@ module github.com/getaxonflow/axonflow/examples/interceptors/go go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/llm-providers/azure-openai/proxy-mode/go/go.mod b/examples/llm-providers/azure-openai/proxy-mode/go/go.mod index 54dacf7b..a765c093 100644 --- a/examples/llm-providers/azure-openai/proxy-mode/go/go.mod +++ b/examples/llm-providers/azure-openai/proxy-mode/go/go.mod @@ -2,4 +2,4 @@ module github.com/getaxonflow/axonflow/examples/llm-providers/azure-openai/proxy go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/llm-providers/mistral/hello-world/go/go.mod b/examples/llm-providers/mistral/hello-world/go/go.mod index 58b781fb..bc6be595 100644 --- a/examples/llm-providers/mistral/hello-world/go/go.mod +++ b/examples/llm-providers/mistral/hello-world/go/go.mod @@ -2,4 +2,4 @@ module mistral-hello-world go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/llm-routing/e2e-tests/go/go.mod b/examples/llm-routing/e2e-tests/go/go.mod index 96318e1c..fd585d5b 100644 --- a/examples/llm-routing/e2e-tests/go/go.mod +++ b/examples/llm-routing/e2e-tests/go/go.mod @@ -2,6 +2,4 @@ module llm-provider-tests go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 - - +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/llm-routing/go/go.mod b/examples/llm-routing/go/go.mod index 5988dbfc..696cfd2f 100644 --- a/examples/llm-routing/go/go.mod +++ b/examples/llm-routing/go/go.mod @@ -2,6 +2,4 @@ module github.com/getaxonflow/axonflow/examples/llm-routing/go go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 - - +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/map-confirm-mode/go/go.mod b/examples/map-confirm-mode/go/go.mod index 0ebac008..625d1abe 100644 --- a/examples/map-confirm-mode/go/go.mod +++ b/examples/map-confirm-mode/go/go.mod @@ -2,4 +2,4 @@ module github.com/getaxonflow/axonflow/examples/map-confirm-mode/go go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/map-lifecycle/go/go.mod b/examples/map-lifecycle/go/go.mod index e1442e4a..cb4c1461 100644 --- a/examples/map-lifecycle/go/go.mod +++ b/examples/map-lifecycle/go/go.mod @@ -2,4 +2,4 @@ module github.com/getaxonflow/axonflow/examples/map-lifecycle/go go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/map/go/go.mod b/examples/map/go/go.mod index 6e698027..c6f98fd7 100644 --- a/examples/map/go/go.mod +++ b/examples/map/go/go.mod @@ -2,4 +2,4 @@ module github.com/getaxonflow/axonflow/examples/map/go go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/mcp-audit/go/go.mod b/examples/mcp-audit/go/go.mod index 93e0dba4..d01f3168 100644 --- a/examples/mcp-audit/go/go.mod +++ b/examples/mcp-audit/go/go.mod @@ -2,4 +2,4 @@ module mcp-audit-example go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/mcp-connectors/cloud-storage/go/go.mod b/examples/mcp-connectors/cloud-storage/go/go.mod index d12e88ee..ff572dd4 100644 --- a/examples/mcp-connectors/cloud-storage/go/go.mod +++ b/examples/mcp-connectors/cloud-storage/go/go.mod @@ -2,4 +2,4 @@ module github.com/getaxonflow/axonflow/examples/mcp-connectors/cloud-storage/go go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/mcp-connectors/http/go/go.mod b/examples/mcp-connectors/http/go/go.mod index 8d2f96c1..44fef0b2 100644 --- a/examples/mcp-connectors/http/go/go.mod +++ b/examples/mcp-connectors/http/go/go.mod @@ -2,4 +2,4 @@ module github.com/getaxonflow/axonflow-enterprise/examples/mcp-connectors/http/g go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/mcp-connectors/http/go/go.sum b/examples/mcp-connectors/http/go/go.sum index e69de29b..9f7ca5be 100644 --- a/examples/mcp-connectors/http/go/go.sum +++ b/examples/mcp-connectors/http/go/go.sum @@ -0,0 +1,2 @@ +github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 h1:G1HL1e1jcrSDhFS9vPiQeLModRsicBq/WrXVyWpZQVk= +github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1/go.mod h1:V3UDfEkKe48HHW8L1GNv39plObmSn3P0NgXNsNQ83SY= diff --git a/examples/mcp-policies/check-endpoints/go/go.mod b/examples/mcp-policies/check-endpoints/go/go.mod index d48d587c..6f4b50c5 100644 --- a/examples/mcp-policies/check-endpoints/go/go.mod +++ b/examples/mcp-policies/check-endpoints/go/go.mod @@ -2,4 +2,4 @@ module mcp-check-endpoints-example go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/mcp-policies/go/go.mod b/examples/mcp-policies/go/go.mod index bd97ae84..5bb81440 100644 --- a/examples/mcp-policies/go/go.mod +++ b/examples/mcp-policies/go/go.mod @@ -2,4 +2,4 @@ module mcp-policies-example go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/mcp-policies/pii-redaction/go/go.mod b/examples/mcp-policies/pii-redaction/go/go.mod index 977372dd..43355c22 100644 --- a/examples/mcp-policies/pii-redaction/go/go.mod +++ b/examples/mcp-policies/pii-redaction/go/go.mod @@ -2,6 +2,4 @@ module mcp-pii-redaction-example go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 - - +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/media-governance-policies/go/go.mod b/examples/media-governance-policies/go/go.mod index f13133e1..137eedbb 100644 --- a/examples/media-governance-policies/go/go.mod +++ b/examples/media-governance-policies/go/go.mod @@ -2,4 +2,4 @@ module github.com/axonflow/examples/media-governance-policies go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/media-governance/go/go.mod b/examples/media-governance/go/go.mod index 357b86f7..63b0523a 100644 --- a/examples/media-governance/go/go.mod +++ b/examples/media-governance/go/go.mod @@ -2,4 +2,4 @@ module github.com/axonflow/examples/media-governance go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/pii-detection/go/go.mod b/examples/pii-detection/go/go.mod index 622686b6..750b087f 100644 --- a/examples/pii-detection/go/go.mod +++ b/examples/pii-detection/go/go.mod @@ -2,4 +2,4 @@ module github.com/getaxonflow/axonflow/examples/pii-detection/go go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/policies/go/create-custom-policy/go.mod b/examples/policies/go/create-custom-policy/go.mod index ec92e29a..85c388ee 100644 --- a/examples/policies/go/create-custom-policy/go.mod +++ b/examples/policies/go/create-custom-policy/go.mod @@ -2,4 +2,4 @@ module github.com/getaxonflow/axonflow-enterprise/examples/policies/go go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/policies/go/list-and-filter/go.mod b/examples/policies/go/list-and-filter/go.mod index fb9cefc9..85c388ee 100644 --- a/examples/policies/go/list-and-filter/go.mod +++ b/examples/policies/go/list-and-filter/go.mod @@ -2,6 +2,4 @@ module github.com/getaxonflow/axonflow-enterprise/examples/policies/go go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 - - +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/policies/go/test-pattern/go.mod b/examples/policies/go/test-pattern/go.mod index fb9cefc9..85c388ee 100644 --- a/examples/policies/go/test-pattern/go.mod +++ b/examples/policies/go/test-pattern/go.mod @@ -2,6 +2,4 @@ module github.com/getaxonflow/axonflow-enterprise/examples/policies/go go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 - - +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/policy-configuration/go/go.mod b/examples/policy-configuration/go/go.mod index 03d4ea68..051ed025 100644 --- a/examples/policy-configuration/go/go.mod +++ b/examples/policy-configuration/go/go.mod @@ -2,4 +2,4 @@ module examples/policy-configuration/go go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/sdk-audit/go/go.mod b/examples/sdk-audit/go/go.mod index 0a041aed..028d6179 100644 --- a/examples/sdk-audit/go/go.mod +++ b/examples/sdk-audit/go/go.mod @@ -2,6 +2,4 @@ module github.com/axonflow/examples/sdk-audit go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 - - +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/singapore-pii/go/go.mod b/examples/singapore-pii/go/go.mod index 8b04f3cc..acafba87 100644 --- a/examples/singapore-pii/go/go.mod +++ b/examples/singapore-pii/go/go.mod @@ -2,6 +2,4 @@ module singapore-pii-example go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 - - +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/sqli-detection/go/go.mod b/examples/sqli-detection/go/go.mod index 0a76a1b9..c5b55224 100644 --- a/examples/sqli-detection/go/go.mod +++ b/examples/sqli-detection/go/go.mod @@ -2,4 +2,4 @@ module github.com/getaxonflow/axonflow/examples/sqli-detection/go go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/static-policies/go/go.mod b/examples/static-policies/go/go.mod index 5d907e3f..1316ba77 100644 --- a/examples/static-policies/go/go.mod +++ b/examples/static-policies/go/go.mod @@ -2,6 +2,4 @@ module static-policies-example go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 - - +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/support-demo/backend/go.mod b/examples/support-demo/backend/go.mod index dea294f6..6a858355 100644 --- a/examples/support-demo/backend/go.mod +++ b/examples/support-demo/backend/go.mod @@ -3,11 +3,9 @@ module axonflow-support-demo go 1.21 require ( - github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 + github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 github.com/golang-jwt/jwt/v5 v5.3.0 github.com/gorilla/mux v1.8.1 github.com/lib/pq v1.10.9 github.com/rs/cors v1.11.1 ) - - diff --git a/examples/version-check/go/go.mod b/examples/version-check/go/go.mod index 90f49f80..b11895e2 100644 --- a/examples/version-check/go/go.mod +++ b/examples/version-check/go/go.mod @@ -2,4 +2,4 @@ module version-check-example go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/webhooks/go/go.mod b/examples/webhooks/go/go.mod index fdb79d9a..d8b797b7 100644 --- a/examples/webhooks/go/go.mod +++ b/examples/webhooks/go/go.mod @@ -2,4 +2,4 @@ module webhooks go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/workflow-control/go/go.mod b/examples/workflow-control/go/go.mod index 0d826851..e820da8c 100644 --- a/examples/workflow-control/go/go.mod +++ b/examples/workflow-control/go/go.mod @@ -2,4 +2,4 @@ module workflow-control go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/workflow-fail/go/go.mod b/examples/workflow-fail/go/go.mod index 1777dec7..58b59b67 100644 --- a/examples/workflow-fail/go/go.mod +++ b/examples/workflow-fail/go/go.mod @@ -2,4 +2,4 @@ module workflow-fail go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/workflow-policy/go/go.mod b/examples/workflow-policy/go/go.mod index 6cbb2665..77b274ae 100644 --- a/examples/workflow-policy/go/go.mod +++ b/examples/workflow-policy/go/go.mod @@ -2,6 +2,4 @@ module workflow-policy-example go 1.21 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 - - +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/workflows/01-simple-sequential/go.mod b/examples/workflows/01-simple-sequential/go.mod index 4063e354..1eb223a8 100644 --- a/examples/workflows/01-simple-sequential/go.mod +++ b/examples/workflows/01-simple-sequential/go.mod @@ -2,6 +2,4 @@ module github.com/getaxonflow/axonflow/examples/workflows/01-simple-sequential go 1.23 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 - - +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/workflows/02-parallel-execution/go.mod b/examples/workflows/02-parallel-execution/go.mod index e4d62ec3..97b1e401 100644 --- a/examples/workflows/02-parallel-execution/go.mod +++ b/examples/workflows/02-parallel-execution/go.mod @@ -2,6 +2,4 @@ module github.com/getaxonflow/axonflow/examples/workflows/02-parallel-execution go 1.23 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 - - +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/workflows/03-conditional-logic/go.mod b/examples/workflows/03-conditional-logic/go.mod index 571d4405..a6e3e43c 100644 --- a/examples/workflows/03-conditional-logic/go.mod +++ b/examples/workflows/03-conditional-logic/go.mod @@ -2,6 +2,4 @@ module github.com/getaxonflow/axonflow/examples/workflows/03-conditional-logic go 1.23 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 - - +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/workflows/04-travel-booking-fallbacks/go.mod b/examples/workflows/04-travel-booking-fallbacks/go.mod index 0379de9b..8798650b 100644 --- a/examples/workflows/04-travel-booking-fallbacks/go.mod +++ b/examples/workflows/04-travel-booking-fallbacks/go.mod @@ -2,6 +2,4 @@ module github.com/getaxonflow/axonflow/examples/workflows/04-travel-booking-fall go 1.23 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 - - +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/workflows/05-data-pipeline/go.mod b/examples/workflows/05-data-pipeline/go.mod index 9fc6dd5f..1774ce00 100644 --- a/examples/workflows/05-data-pipeline/go.mod +++ b/examples/workflows/05-data-pipeline/go.mod @@ -2,6 +2,4 @@ module github.com/getaxonflow/axonflow/examples/workflows/05-data-pipeline go 1.23 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 - - +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1 diff --git a/examples/workflows/06-multi-step-approval/go.mod b/examples/workflows/06-multi-step-approval/go.mod index f585b023..da8f87a6 100644 --- a/examples/workflows/06-multi-step-approval/go.mod +++ b/examples/workflows/06-multi-step-approval/go.mod @@ -2,6 +2,4 @@ module github.com/getaxonflow/axonflow/examples/workflows/06-multi-step-approval go 1.23 -require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.0 - - +require github.com/getaxonflow/axonflow-sdk-go/v5 v5.3.1