Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pk5/fix feature flag bug #7064

Merged
merged 3 commits into from
Dec 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/aosm/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Release History
===============

1.0.0b4
++++++++
* Fixed: Remove check for Allow-2023-09-01 feature flag that is no longer required (Bug #1063964)

1.0.0b3
++++++++
* Move azure-storage-blob dependency to vendored_sdks (on advice from Azure CLI team to avoid 'azure' namespace issues)
Expand Down
1 change: 0 additions & 1 deletion src/aosm/azext_aosm/util/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,5 @@ class SkipSteps(Enum):
# Required features for AOSM publish aka deploy
AOSM_FEATURE_NAMESPACE = "Microsoft.HybridNetwork"
AOSM_REQUIRED_FEATURES = [
"Allow-2023-09-01",
"Allow-Publisher",
]
3 changes: 2 additions & 1 deletion src/aosm/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@

# Confirm this is the right version number you want and it matches your
# HISTORY.rst entry.
VERSION = "1.0.0b3"
VERSION = "1.0.0b4"


# The full list of classifiers is available at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand Down