Skip to content

Commit

Permalink
Update azure sdk version to fix #154 (#166)
Browse files Browse the repository at this point in the history
## Purpose
<!-- Describe the intention of the changes being proposed. What problem
does it solve or functionality does it add? -->
* ...

## Does this introduce a breaking change?
<!-- Mark one with an "x". -->
```
[ ] Yes
[ ] No
```

Fix #154 by introducing this update 

https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/identity/Azure.Identity/CHANGELOG.md#1101-2023-09-12

## Pull Request Type
What kind of change does this Pull Request introduce?

<!-- Please check the one that applies to this PR using "x". -->
```
[ ] Bugfix
[ ] Feature
[ ] Code style update (formatting, local variables)
[ ] Refactoring (no functional changes, no api changes)
[ ] Documentation content changes
[ ] Other... Please describe:
```

## How to Test
*  Get the code

```
git clone [repo-address]
cd [repo-name]
git checkout [branch-name]
npm install
```

* Test the code
<!-- Add steps to run the tests suite and/or manually test -->
```
```

## What to Check
Verify that the following are valid
* ...

## Other Information
<!-- Add any other helpful information that may be needed here. -->
  • Loading branch information
LittleLittleCloud authored Oct 12, 2023
1 parent b14d971 commit 3fd7700
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"image": "mcr.microsoft.com/devcontainers/dotnet:0-7.0-bullseye",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/devcontainers/features/azure-cli:1.1.0": {},
"ghcr.io/devcontainers/features/azure-cli:1.2.1": {},
"ghcr.io/devcontainers/features/github-cli:1.0.9": {},
"ghcr.io/azure/azure-dev/azd:latest": {}
},
Expand Down
2 changes: 1 addition & 1 deletion app/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<AzureFormRecognizerVersion>4.1.0</AzureFormRecognizerVersion>
<AzureIdentityVersion>1.10.0</AzureIdentityVersion>
<AzureIdentityVersion>1.10.1</AzureIdentityVersion>
<AzureSearchDocumentsVersion>11.5.0-beta.4</AzureSearchDocumentsVersion>
<AzureStorageBlobsVersion>12.17.0</AzureStorageBlobsVersion>
<SemanticKernelVersion>0.24.230918.1-preview</SemanticKernelVersion>
Expand Down
2 changes: 2 additions & 0 deletions scripts/prepdocs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ if [ -z "$AZD_PREPDOCS_RAN" ] || [ "$AZD_PREPDOCS_RAN" = "false" ]; then
--storageendpoint "$AZURE_STORAGE_BLOB_ENDPOINT" \
--container "$AZURE_STORAGE_CONTAINER" \
--searchendpoint "$AZURE_SEARCH_SERVICE_ENDPOINT" \
--openaiendpoint "$AZURE_OPENAI_ENDPOINT" \
--embeddingmodel "$AZURE_OPENAI_EMBEDDING_DEPLOYMENT" \
--searchindex "$AZURE_SEARCH_INDEX" \
--formrecognizerendpoint "$AZURE_FORMRECOGNIZER_SERVICE_ENDPOINT" \
--tenantid "$AZURE_TENANT_ID" \
Expand Down

0 comments on commit 3fd7700

Please sign in to comment.