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
7 changes: 0 additions & 7 deletions .chronus/changes/HEAD-2025-0-23-15-44-58.md

This file was deleted.

7 changes: 0 additions & 7 deletions .chronus/changes/HEAD-2025-0-23-15-45-7.md

This file was deleted.

4 changes: 4 additions & 0 deletions packages/autorest.python/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release

## 6.28.3

No changes, version bump only.


## 6.28.2

Expand Down
6 changes: 3 additions & 3 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.28.2",
"version": "6.28.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.6.9",
"@typespec/http-client-python": "~0.6.10",
"@autorest/system-requirements": "~1.0.2",
"fs-extra": "~11.2.0",
"tsx": "~4.19.1"
Expand All @@ -47,4 +47,4 @@
"requirements.txt",
"generator/"
]
}
}
4 changes: 4 additions & 0 deletions packages/typespec-python/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release

## 0.38.3

- [#3038](https://github.com/Azure/autorest.python/pull/3038) Fix crash when value of `--package-pprint-name` contains space

## 0.38.2

### Bug Fixes
Expand Down
8 changes: 4 additions & 4 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.38.2",
"version": "0.38.3",
"author": "Microsoft Corporation",
"description": "TypeSpec emitter for Python SDKs",
"homepage": "https://github.com/Azure/autorest.python",
Expand Down Expand Up @@ -60,7 +60,7 @@
"js-yaml": "~4.1.0",
"semver": "~7.6.2",
"tsx": "~4.19.1",
"@typespec/http-client-python": "~0.6.9",
"@typespec/http-client-python": "~0.6.10",
"fs-extra": "~11.2.0"
},
"devDependencies": {
Expand All @@ -75,7 +75,7 @@
"@azure-tools/typespec-autorest": "~0.50.0",
"@azure-tools/typespec-client-generator-core": "~0.50.2",
"@azure-tools/azure-http-specs": "0.1.0-alpha.5",
"@typespec/http-specs": "0.1.0-alpha.7",
"@typespec/http-specs": "0.1.0-alpha.8",
"@types/js-yaml": "~4.0.5",
"@types/node": "~22.5.4",
"@types/yargs": "~17.0.33",
Expand All @@ -89,4 +89,4 @@
"chalk": "5.3.0",
"@types/fs-extra": "11.0.4"
}
}
}
3 changes: 2 additions & 1 deletion packages/typespec-python/scripts/eng/regenerate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ const EMITTER_OPTIONS: Record<string, Record<string, string> | Record<string, st
},
"authentication/http/custom": {
"package-name": "authentication-http-custom",
"package-pprint-name": "Authentication Http Custom Service",
},
"authentication/union": {
"package-name": "authentication-union",
Expand Down Expand Up @@ -259,7 +260,7 @@ function addOptions(spec: string, generatedFolder: string, flags: RegenerateFlag
}
options["examples-dir"] = toPosix(join(dirname(spec), "examples"));
const configs = Object.entries(options).flatMap(([k, v]) => {
return `--option @azure-tools/typespec-python.${k}=${v}`;
return `--option @azure-tools/typespec-python.${k}=${typeof v === "string" && v.indexOf(" ") > -1 ? `"${v}"` : v}`;
});
emitterConfigs.push({
optionsStr: configs.join(" "),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


# Authentication Http Custom client library for Python
# Authentication Http Custom Service client library for Python
<!-- write necessary description of service -->

## Getting started
Expand All @@ -15,7 +15,7 @@ python -m pip install authentication-http-custom

- Python 3.8 or later is required to use this package.
- You need an [Azure subscription][azure_sub] to use this package.
- An existing Authentication Http Custom instance.
- An existing Authentication Http Custom Service instance.

## Contributing

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@


PACKAGE_NAME = "authentication-http-custom"
PACKAGE_PPRINT_NAME = "Authentication Http Custom"
PACKAGE_PPRINT_NAME = "Authentication Http Custom Service"

# a-b-c => a/b/c
package_folder_path = PACKAGE_NAME.replace("-", "/")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@


PACKAGE_NAME = "authentication-http-custom"
PACKAGE_PPRINT_NAME = "Authentication Http Custom"
PACKAGE_PPRINT_NAME = "Authentication Http Custom Service"

# a-b-c => a/b/c
package_folder_path = PACKAGE_NAME.replace("-", "/")
Expand Down
24 changes: 12 additions & 12 deletions pnpm-lock.yaml

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

Loading