Skip to content

Commit 6bbedbe

Browse files
lizk886Release Workflow
andauthored
update core reference, containing e2e test fix (#2206)
* reference feature branch * update core reference, containing e2e test fix * revert a unwanted code change * ignore vs * [CI Pipeline] Released Snapshot version: 5.62.12-alpha-578-SNAPSHOT * upgrade typing_extensions in Azure CLI to fix fialure in create Azure AKS artifacts step * [CI Pipeline] Released Snapshot version: 5.62.13-alpha-579-SNAPSHOT * include gcp fix for a dependency * revert unwanted changes * include google auth dependency fix for gcp failure * [CI Pipeline] Released Snapshot version: 5.62.14-alpha-581-SNAPSHOT * try adding google auth in opeartor configs * [CI Pipeline] Released Snapshot version: 5.62.15-alpha-582-SNAPSHOT * [CI Pipeline] Released Snapshot version: 5.62.16-alpha-583-SNAPSHOT * remove hardcoded optout image version * revert hardcoded? * revert debugging * revert debugging * revert debugging * revert debugging * upate shared * [CI Pipeline] Released Snapshot version: 5.62.17-alpha-592-SNAPSHOT * upate shared * [CI Pipeline] Released Snapshot version: 5.62.23-alpha-593-SNAPSHOT * [CI Pipeline] Released Snapshot version: 5.62.24-alpha-594-SNAPSHOT * ready to merge, revert pom.xl to main --------- Co-authored-by: Release Workflow <[email protected]>
1 parent 625638c commit 6bbedbe

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<enclave-aws.version>2.1.0</enclave-aws.version>
2323
<enclave-azure.version>2.1.19</enclave-azure.version>
2424
<enclave-gcp.version>2.1.9</enclave-gcp.version>
25-
<uid2-shared.version>11.1.108</uid2-shared.version>
25+
<uid2-shared.version>11.1.124</uid2-shared.version>
2626
<image.version>${project.version}</image.version>
2727
<maven.compiler.source>21</maven.compiler.source>
2828
<maven.compiler.target>21</maven.compiler.target>

scripts/azure-aks/deployment/generate-deployment-artifacts.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ for f in ${INPUT_FILES[@]}; do
5252
done
5353

5454
az version
55+
# Upgrade typing_extensions to fix pydantic-core compatibility issue with confcom extension
56+
# The confcom extension requires typing_extensions>=4.10.0 for the Sentinel class
57+
sudo /opt/az/bin/python3 -m pip install --upgrade typing_extensions
58+
5559
# Install confcom extension, az is originally available in GitHub workflow environment
5660
az extension add --name confcom
5761
if [[ $? -ne 0 ]]; then

scripts/azure-cc/deployment/generate-deployment-artifacts.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ for f in ${INPUT_FILES[@]}; do
5555
done
5656

5757
az version
58+
# Upgrade typing_extensions to fix pydantic-core compatibility issue with confcom extension
59+
# The confcom extension requires typing_extensions>=4.10.0 for the Sentinel class
60+
sudo /opt/az/bin/python3 -m pip install --upgrade typing_extensions
61+
5862
# Install confcom extension, az is originally available in GitHub workflow environment
5963
az extension add --name confcom
6064
if [[ $? -ne 0 ]]; then

0 commit comments

Comments
 (0)