From c94a4afe50543b2a945f11396d7cdd7f76effa74 Mon Sep 17 00:00:00 2001 From: Paymaun Date: Tue, 2 Jul 2024 13:57:13 -0700 Subject: [PATCH 1/2] chore: Increment default AKV CSI driver extension version (#255) --- azext_edge/edge/providers/orchestration/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azext_edge/edge/providers/orchestration/common.py b/azext_edge/edge/providers/orchestration/common.py index bd9be04c1..f25451428 100644 --- a/azext_edge/edge/providers/orchestration/common.py +++ b/azext_edge/edge/providers/orchestration/common.py @@ -23,7 +23,7 @@ ARC_NAMESPACE = "azure-arc" # Key Vault KPIs -KEYVAULT_ARC_EXTENSION_VERSION = "1.5.3" +KEYVAULT_ARC_EXTENSION_VERSION = "1.5.5" KEYVAULT_DATAPLANE_API_VERSION = "7.4" KEYVAULT_CLOUD_API_VERSION = "2022-07-01" From 7a735b6d6d4a9e05f63104b1a9184e7dde1bc3de Mon Sep 17 00:00:00 2001 From: Ryan K Date: Wed, 3 Jul 2024 10:49:59 -0700 Subject: [PATCH 2/2] fix(ci): Support breaking change indicator in PR title checks (#260) Co-authored-by: Ryan Kelly --- .github/workflows/conventional_pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/conventional_pr.yml b/.github/workflows/conventional_pr.yml index f2707b116..feba190e9 100644 --- a/.github/workflows/conventional_pr.yml +++ b/.github/workflows/conventional_pr.yml @@ -15,7 +15,7 @@ jobs: env: TITLE: ${{ github.event.pull_request.title }} run: | - conventional_regex='^(build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test)(\(.*\))?: .*$' + conventional_regex='^(build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test)(\(.*\))?!?: .*$' if [[ "$TITLE" =~ $conventional_regex ]]; then echo "Success!" else