Skip to content

Commit d0529d8

Browse files
authored
[python] bump version (#3295)
* Update dependencies * Update dependencies * Add changelog * Update dependencies (2026-01-13 06:48:21) * Regenerate for typespec-python (2026-01-13 06:53:53) * Regenerate for autorest.python (2026-01-13 07:08:36) * bump version --------- Co-authored-by: AutoPrFromHttpClientPython <AutoPrFromHttpClientPython>
1 parent 8276d9c commit d0529d8

File tree

190 files changed

+1889
-1338
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

190 files changed

+1889
-1338
lines changed

.chronus/changes/HEAD-2025-11-22-12-54-15.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.chronus/changes/HEAD-2025-11-29-14-54-18.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.chronus/changes/auto-iscai-msft-python-upgradeCore-2025-11-19-14-42-51.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.chronus/changes/auto-microsoft-copilot-add-test-case-constant-query-2025-11-19-5-18-46.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.chronus/changes/copilot-fix-list-property-name-2025-12-22-05-33-41.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.chronus/changes/copilot-update-http-client-python-dependencies-2025-12-22-06-30-48.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

.chronus/changes/python-discriminated-union-2025-10-18-9-43-10.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

packages/autorest.python/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Release
22

3+
## 6.46.0
4+
5+
### Features
6+
7+
- [#3291](https://github.com/Azure/autorest.python/pull/3291) Support multi-service scenario.
8+
- [#3293](https://github.com/Azure/autorest.python/pull/3293) Support lro-paging operation
9+
10+
### Bump dependencies
11+
12+
- [#3289](https://github.com/Azure/autorest.python/pull/3289) Bump generated code's dependency on `azure-core` to `1.37.0`
13+
14+
### Bug Fixes
15+
16+
- [#3291](https://github.com/Azure/autorest.python/pull/3291) Fix syntax error when model property is named "list" by using type alias to avoid naming conflicts
17+
- [#3291](https://github.com/Azure/autorest.python/pull/3291) Fix import error about apiversion validation for nested operation groups
18+
- [#3265](https://github.com/Azure/autorest.python/pull/3265) Fix import when body parameter is union of models
19+
20+
321
## 6.45.1
422

523
### Bug Fixes

packages/autorest.python/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@autorest/python",
3-
"version": "6.45.1",
3+
"version": "6.46.0",
44
"description": "The Python extension for generators in AutoRest.",
55
"scripts": {
66
"start": "node ./scripts/run-python3.js ./scripts/start.py",
@@ -29,7 +29,7 @@
2929
},
3030
"homepage": "https://github.com/Azure/autorest.python/blob/main/README.md",
3131
"dependencies": {
32-
"@typespec/http-client-python": "https://artprodcus3.artifacts.visualstudio.com/A0fb41ef4-5012-48a9-bf39-4ee3de03ee35/29ec6040-b234-4e31-b139-33dc4287b756/_apis/artifact/cGlwZWxpbmVhcnRpZmFjdDovL2F6dXJlLXNkay9wcm9qZWN0SWQvMjllYzYwNDAtYjIzNC00ZTMxLWIxMzktMzNkYzQyODdiNzU2L2J1aWxkSWQvNTcxNzE3OS9hcnRpZmFjdE5hbWUvYnVpbGRfYXJ0aWZhY3RzX3B5dGhvbg2/content?format=file&subPath=%2Fpackages%2Ftypespec-http-client-python-0.23.1.tgz",
32+
"@typespec/http-client-python": "~0.24.0",
3333
"@autorest/system-requirements": "~1.0.2",
3434
"fs-extra": "~11.2.0",
3535
"tsx": "~4.19.1"
@@ -47,4 +47,4 @@
4747
"requirements.txt",
4848
"generator/"
4949
]
50-
}
50+
}

packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Lro/lro/models/_auto_rest_long_running_operation_test_service_enums.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ class ProductPropertiesProvisioningStateValues(str, Enum, metaclass=CaseInsensit
4242
OK = "OK"
4343

4444

45-
class SubProductPropertiesProvisioningStateValues(str, Enum, metaclass=CaseInsensitiveEnumMeta):
45+
class SubProductPropertiesProvisioningStateValues( # pylint: disable=name-too-long
46+
str, Enum, metaclass=CaseInsensitiveEnumMeta
47+
):
4648
"""SubProductPropertiesProvisioningStateValues."""
4749

4850
SUCCEEDED = "Succeeded"

0 commit comments

Comments
 (0)