Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into add-azure-telemetry-t…
Browse files Browse the repository at this point in the history
…ake-2
  • Loading branch information
Christopher Radek authored and Christopher Radek committed Jan 30, 2025
2 parents 18a8b2b + 63f0404 commit 606eab8
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 11 deletions.
8 changes: 8 additions & 0 deletions .github/policies/issues.triage.generated.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ configuration:
label: lib:azure-core
- hasLabel:
label: lib:azure-resource-manager
- hasLabel:
label: lib:azure-http-specs
- hasLabel:
label: emitter:autorest
- hasLabel:
Expand All @@ -47,6 +49,8 @@ configuration:
label: lib:azure-core
- labelAdded:
label: lib:azure-resource-manager
- labelAdded:
label: lib:azure-http-specs
- labelAdded:
label: emitter:autorest
- labelAdded:
Expand All @@ -72,6 +76,8 @@ configuration:
label: lib:azure-core
- labelRemoved:
label: lib:azure-resource-manager
- labelRemoved:
label: lib:azure-http-specs
- labelRemoved:
label: emitter:autorest
- labelRemoved:
Expand All @@ -88,6 +94,8 @@ configuration:
label: lib:azure-core
- hasLabel:
label: lib:azure-resource-manager
- hasLabel:
label: lib:azure-http-specs
- hasLabel:
label: emitter:autorest
- hasLabel:
Expand Down
7 changes: 7 additions & 0 deletions .github/policies/prs.triage.generated.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,13 @@ configuration:
then:
- addLabel:
label: lib:tcgc
- if:
- includesModifiedFiles:
files:
- packages/typespec-azure-http-specs/**/*
then:
- addLabel:
label: lib:azure-http-specs
- if:
- includesModifiedFiles:
files: []
Expand Down
19 changes: 10 additions & 9 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -306,15 +306,16 @@ TypeSpec repo use labels to help categorize and manage issues and PRs. The follo

Area of the codebase

| Name | Color | Description |
| ---------------------------- | ------- | -------------------------------------------------------------- |
| `lib:tcgc` | #957300 | Issues for @azure-tools/typespec-client-generator-core library |
| `lib:azure-core` | #957300 | Issues for @azure-tools/typespec-azure-core library |
| `lib:azure-resource-manager` | #957300 | Issues for @azure-tools/typespec-azure-core library |
| `emitter:autorest` | #957300 | Issues for @azure-tools/typespec-autorest emitter |
| `eng` | #65bfff | |
| `ide` | #846da1 | Issues for Azure specific ide features |
| `cli/psh` | #9EB120 | Issues for Azure CLI/PSH features |
| Name | Color | Description |
| ---------------------------- | ------- | ---------------------------------------------------------------------------- |
| `lib:tcgc` | #957300 | Issues for @azure-tools/typespec-client-generator-core library |
| `lib:azure-core` | #957300 | Issues for @azure-tools/typespec-azure-core library |
| `lib:azure-resource-manager` | #957300 | Issues for @azure-tools/typespec-azure-core library |
| `lib:azure-http-specs` | #c7aee6 | For issues/prs related to the @azure-tools/typespec-azure-http-specs package |
| `emitter:autorest` | #957300 | Issues for @azure-tools/typespec-autorest emitter |
| `eng` | #65bfff | |
| `ide` | #846da1 | Issues for Azure specific ide features |
| `cli/psh` | #9EB120 | Issues for Azure CLI/PSH features |

#### issue_kinds

Expand Down
2 changes: 1 addition & 1 deletion core
Submodule core updated 53 files
+7 −0 .chronus/changes/fix_serverJSInitTemplate-2025-0-24-16-22-25.md
+7 −0 .chronus/changes/python-indentationErrorLongDocs-2025-0-27-13-1-49.md
+7 −0 .chronus/changes/refine-config-description-2025-0-26-14-13-27.md
+7 −0 .chronus/changes/steverice-createStateSymbol-util-2025-0-25-10-46-13.md
+8 −0 .github/policies/issues.triage.generated.yml
+7 −0 .github/policies/prs.triage.generated.yml
+1 −0 .npmrc
+1 −0 CONTRIBUTING.md
+1 −0 eng/common/config/area.ts
+4 −0 eng/common/config/labels.ts
+1 −3 eng/common/pipelines/ci.yml
+1 −3 eng/tsp-core/pipelines/templates/install.yml
+1 −1 packages/compiler/.scripts/build-init-templates.ts
+1 −4 packages/compiler/src/core/deprecation.ts
+1 −4 packages/compiler/src/core/intrinsic-type-state.ts
+1 −4 packages/compiler/src/core/visibility/core.ts
+1 −4 packages/compiler/src/lib/decorators.ts
+1 −4 packages/compiler/src/lib/encoded-names.ts
+1 −4 packages/compiler/src/lib/key.ts
+1 −4 packages/compiler/src/lib/paging.ts
+8 −0 packages/compiler/src/lib/utils.ts
+1 −5 packages/compiler/src/lib/visibility.ts
+1 −1 packages/compiler/templates/scaffolding.json
+1 −1 packages/http-client-csharp/eng/scripts/Generate.ps1
+1 −1 ...roviders/ClientProviders/TestData/ClientProviderCustomizationTests/CanRenameSubClient/CanRenameSubClient.cs
+1 −1 ...iders/MrwSerializationTypeDefinitions/TestData/ModelCustomizationTests/CanCustomizeModelName/CustomModel.cs
+1 −1 ...roviders/TestData/RestClientProviderCustomizationTests/CanChangeClientNamespace/CanChangeClientNamespace.cs
+0 −19 packages/http-client-csharp/generator/Microsoft.Generator.CSharp.Customization/src/CodeGenClientAttribute.cs
+0 −31 packages/http-client-csharp/generator/Microsoft.Generator.CSharp.Customization/src/CodeGenModelAttribute.cs
+51 −0 packages/http-client-csharp/generator/Microsoft.Generator.CSharp/src/LibraryVisitor.cs
+0 −26 packages/http-client-csharp/generator/Microsoft.Generator.CSharp/src/SourceInput/CodeGenAttributes.cs
+10 −6 packages/http-client-csharp/generator/Microsoft.Generator.CSharp/src/Writers/CSharpProjectWriter.cs
+9 −13 packages/http-client-java/emitter/src/code-model-builder.ts
+0 −4 packages/http-client-java/emitter/src/type-utils.ts
+4 −0 packages/http-client-java/emitter/src/utils.ts
+32 −0 packages/http-client-java/emitter/test/utils.test.ts
+11 −0 packages/http-client-java/emitter/vitest.config.ts
+3 −0 packages/http-client-java/eng/scripts/Test-Packages.ps1
+0 −6 packages/http-client-java/generator/http-client-generator-core/pom.xml
+0 −151 ...ava/com/microsoft/typespec/http/client/generator/core/template/ClientMethodSerializeItemValueCodeTests.java
+6 −1 packages/http-client-java/package.json
+3 −2 packages/http-client-python/generator/pygen/codegen/templates/macros.jinja2
+2 −4 packages/http-client-python/generator/pygen/codegen/templates/model_dpg.py.jinja2
+2 −6 packages/http-client-python/generator/pygen/codegen/templates/model_msrest.py.jinja2
+2 −2 packages/http-client-python/generator/test/azure/tox.ini
+2 −2 packages/http-client-python/generator/test/unbranded/tox.ini
+1 −3 packages/spec-dashboard/src/apis.ts
+3 −3 packages/spec-dashboard/src/components/dashboard-table.tsx
+1 −11 packages/spec-dashboard/src/components/dashboard.tsx
+3 −2 packages/spec-dashboard/src/components/scenario-group-status.tsx
+3 −2 packages/spec-dashboard/src/components/scenario-status.tsx
+5 −3 packages/spec-dashboard/src/constants.ts
+1 −1 packages/typespec-vscode/package.json
6 changes: 5 additions & 1 deletion eng/config/labels.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ export const AreaLabels = defineLabels({
color: "957300",
description: "Issues for @azure-tools/typespec-azure-core library",
},

"lib:azure-http-specs": {
color: "c7aee6",
description: "For issues/prs related to the @azure-tools/typespec-azure-http-specs package",
},
"emitter:autorest": {
color: "957300",
description: "Issues for @azure-tools/typespec-autorest emitter",
Expand Down Expand Up @@ -47,6 +50,7 @@ export const AreaPaths: Record<keyof typeof AreaLabels, string[]> = {
"lib:azure-resource-manager": ["packages/typespec-azure-resource-manager/"],
"emitter:autorest": ["packages/typespec-autorest/"],
"lib:tcgc": ["packages/typespec-client-generator-core/"],
"lib:azure-http-specs": ["packages/typespec-azure-http-specs/"],
ide: [],
"cli/psh": [],
};
Expand Down

0 comments on commit 606eab8

Please sign in to comment.