Skip to content
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
10 changes: 10 additions & 0 deletions packages/autorest.python/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Release

## 6.32.3

### Bug Fixes

- [#3071](https://github.com/Azure/autorest.python/pull/3071) Allow `_` in namespaces

### Other Changes

- [#3065](https://github.com/Azure/autorest.python/pull/3065) Drop support for python3.8

## 6.32.2

No changes, version bump only.
Expand Down
4 changes: 2 additions & 2 deletions packages/autorest.python/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@autorest/python",
"version": "6.32.2",
"version": "6.32.3",
"description": "The Python extension for generators in AutoRest.",
"scripts": {
"start": "node ./scripts/run-python3.js ./scripts/start.py",
Expand Down Expand Up @@ -29,7 +29,7 @@
},
"homepage": "https://github.com/Azure/autorest.python/blob/main/README.md",
"dependencies": {
"@typespec/http-client-python": "~0.9.2-dev.1",
"@typespec/http-client-python": "~0.9.2",
"@autorest/system-requirements": "~1.0.2",
"fs-extra": "~11.2.0",
"tsx": "~4.19.1"
Expand Down
10 changes: 10 additions & 0 deletions packages/typespec-python/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Release

## 0.42.3

### Bug Fixes

- [#3071](https://github.com/Azure/autorest.python/pull/3071) Allow `_` in namespaces

### Other Changes

- [#3065](https://github.com/Azure/autorest.python/pull/3065) Drop support for python3.8

## 0.42.2

No changes, version bump only.
Expand Down
4 changes: 2 additions & 2 deletions packages/typespec-python/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@azure-tools/typespec-python",
"version": "0.42.2",
"version": "0.42.3",
"author": "Microsoft Corporation",
"description": "TypeSpec emitter for Python SDKs",
"homepage": "https://github.com/Azure/autorest.python",
Expand Down Expand Up @@ -64,7 +64,7 @@
"js-yaml": "~4.1.0",
"semver": "~7.6.2",
"tsx": "~4.19.1",
"@typespec/http-client-python": "~0.9.2-dev.1",
"@typespec/http-client-python": "~0.9.2",
"fs-extra": "~11.2.0"
},
"devDependencies": {
Expand Down
42 changes: 39 additions & 3 deletions packages/typespec-python/scripts/eng/regenerate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,51 @@ interface TspCommand {
}

const AZURE_EMITTER_OPTIONS: Record<string, Record<string, string> | Record<string, string>[]> = {
"azure/example/basic": {
namespace: "specs.azure.example.basic",
},
"azure/client-generator-core/access": {
namespace: "specs.azure.clientgenerator.core.access",
},
"azure/client-generator-core/api-version": {
namespace: "specs.azure.clientgenerator.core.apiversion",
},
"azure/client-generator-core/client-initialization": {
namespace: "specs.azure.clientgenerator.core.clientinitialization",
},
"azure/client-generator-core/flatten-property": {
namespace: "specs.azure.clientgenerator.core.flattenproperty",
},
"azure/client-generator-core/usage": {
namespace: "specs.azure.clientgenerator.core.usage",
},
"azure/core/basic": {
namespace: "specs.azure.core.basic",
},
"azure/core/lro/rpc": {
namespace: "specs.azure.core.lro.rpc",
},
"azure/core/lro/standard": {
namespace: "specs.azure.core.lro.standard",
},
"azure/core/model": {
namespace: "specs.azure.core.model",
},
"azure/core/page": {
namespace: "specs.azure.core.page",
},
"azure/core/scalar": {
namespace: "specs.azure.core.scalar",
},
"azure/core/traits": {
namespace: "specs.azure.core.traits",
},
"azure/encode/duration": {
namespace: "specs.azure.encode.duration",
},
"azure/example/basic": {
namespace: "specs.azure.example.basic",
},
"azure/payload/pageable": {
namespace: "specs.azure.payload.pageable",
},
"client/structure/default": {
namespace: "client.structure.service",
},
Expand Down
14 changes: 7 additions & 7 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading