Skip to content

Commit 31a40e5

Browse files
[AutoRelease] t2-fabric-2024-10-14-12348(can only be merged by SDK owner) (Azure#37874)
* code and test * Update CHANGELOG.md * Update _version.py --------- Co-authored-by: azure-sdk <PythonSdkPipelines> Co-authored-by: ChenxiJiang333 <[email protected]>
1 parent 6b4b07b commit 31a40e5

23 files changed

+652
-294
lines changed
Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
# Release History
22

3+
## 1.0.0 (2024-10-21)
4+
5+
### Other Changes
6+
7+
- First GA
8+
39
## 1.0.0b1 (2024-09-22)
410

511
### Other Changes
612

7-
- Initial version
13+
- Initial version
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"commit": "eea7584434f9225cad0327d83d5c6d84257a4d7d",
2+
"commit": "9ce76c4f113368361dac4de5d0a71eb058602756",
33
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
44
"typespec_src": "specification/fabric/Microsoft.Fabric.Management",
5-
"@azure-tools/typespec-python": "0.30.0"
5+
"@azure-tools/typespec-python": "0.36.0"
66
}

sdk/fabric/azure-mgmt-fabric/azure/mgmt/fabric/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
__all__ = [
2222
"FabricMgmtClient",
2323
]
24-
__all__.extend([p for p in _patch_all if p not in __all__])
24+
__all__.extend([p for p in _patch_all if p not in __all__]) # pyright: ignore
2525

2626
_patch_sdk()

sdk/fabric/azure-mgmt-fabric/azure/mgmt/fabric/_client.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,10 @@
2020
from .operations import FabricCapacitiesOperations, Operations
2121

2222
if TYPE_CHECKING:
23-
# pylint: disable=unused-import,ungrouped-imports
2423
from azure.core.credentials import TokenCredential
2524

2625

27-
class FabricMgmtClient: # pylint: disable=client-accepts-api-version-keyword
26+
class FabricMgmtClient:
2827
"""FabricMgmtClient.
2928
3029
:ivar fabric_capacities: FabricCapacitiesOperations operations

sdk/fabric/azure-mgmt-fabric/azure/mgmt/fabric/_configuration.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@
1414
from ._version import VERSION
1515

1616
if TYPE_CHECKING:
17-
# pylint: disable=unused-import,ungrouped-imports
1817
from azure.core.credentials import TokenCredential
1918

2019

21-
class FabricMgmtClientConfiguration: # pylint: disable=too-many-instance-attributes,name-too-long
20+
class FabricMgmtClientConfiguration: # pylint: disable=too-many-instance-attributes
2221
"""Configuration for FabricMgmtClient.
2322
2423
Note that all parameters used to create this instance are saved as instance

0 commit comments

Comments
 (0)