Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Fix error in deployment steps (#121)
Browse files Browse the repository at this point in the history
* Switches to sync version of DefaultAzureCredential

* Updates changelog

* Updates changelog
  • Loading branch information
desertaxle authored Oct 10, 2023
1 parent 14ed0a2 commit bd8aa49
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
23 changes: 21 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- Updated imports of deprecated Prefect Docker modules, bumping the minimum required Prefect version to 2.10.11 - [#118](https://github.com/PrefectHQ/prefect-azure/pull/118)

### Deprecated

### Removed
Expand All @@ -21,6 +19,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Security

## 0.3.1

Released October 10th, 2023.

### Changed

- Updated imports of deprecated Prefect Docker modules, bumping the minimum required Prefect version to 2.10.11 - [#118](https://github.com/PrefectHQ/prefect-azure/pull/118)

### Fixed

- Fixed errors when using deployment steps with `account_url` - [#121](https://github.com/PrefectHQ/prefect-azure/pull/121)

## 0.3.0

Released October 5th, 2023.

### Changed

- Added conditional import to support operating with pydantic>2 installed - [#119](https://github.com/PrefectHQ/prefect-azure/pull/119)
- Updated subscription ID description to contain the expected format - [#120](https://github.com/PrefectHQ/prefect-azure/pull/120)

## 0.2.12

Released August 21st, 2023.
Expand Down
2 changes: 1 addition & 1 deletion prefect_azure/deployments/steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
from pathlib import Path, PurePosixPath
from typing import Dict, Optional

from azure.identity.aio import DefaultAzureCredential
from azure.identity import DefaultAzureCredential
from azure.storage.blob import ContainerClient
from prefect.utilities.filesystem import filter_files, relative_path_to_current_platform

Expand Down

0 comments on commit bd8aa49

Please sign in to comment.