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
2 changes: 1 addition & 1 deletion .github/workflows/external-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
echo "Created tgz packages:"
ls -la ./tgz-packages/

cd packages/integration-tester
cd core/packages/tsp-integration
npm link

- name: Checkout
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ suites:
pattern: "specification/**/tspconfig.yaml"
entrypoints:
- name: "client.tsp"
options: ["--dry-run"]
options: ["--no-emit"]
- name: "main.tsp"
azure-specs-pr:
repo: https://github.com/Azure/azure-rest-api-specs-pr
branch: typespec-next
pattern: "specification/**/tspconfig.yaml"
entrypoints:
- name: "client.tsp"
options: ["--dry-run"]
options: ["--no-emit"]
- name: "main.tsp"
2 changes: 1 addition & 1 deletion core
Submodule core updated 73 files
+0 −7 .chronus/changes/add-relative-nextlink-page-test-2026-2-11-12-8-10.md
+7 −0 .chronus/changes/copilot-compiler-export-resolve-codefix-2026-02-26-15-20-26.md
+7 −0 .chronus/changes/copilot-playground-codefixes-support-2026-02-26-15-20-26.md
+7 −0 .chronus/changes/copilot-update-init-templates-testing-framework-2026-1-5-20-11-37.md
+7 −0 .chronus/changes/fix-tsp-openapi3-nullable-array-constraints-2026-02-25.md
+0 −7 .chronus/changes/http-client-python-xml-enum-datetime-tests-2026-2-14-5-42-5.md
+0 −7 .chronus/changes/http-client-python_fix-eq-method-in-model-base-2026-2-26-0-0-0.md
+0 −7 .chronus/changes/http-client-python_refactor-regenerate-common-2026-02-13-0-0-0.md
+0 −7 .chronus/changes/http-client-python_update-dependencies-2026-02-13-14-08-00.md
+0 −7 .chronus/changes/python-clientOptionInterface-2026-1-23-17-13-8.md
+0 −7 .chronus/changes/python-extratItemsPylintDisable-2026-1-23-12-3-45.md
+0 −7 .chronus/changes/python-iterBytes-2026-1-23-17-37-6.md
+0 −7 .chronus/changes/remove-conditional-typing-section-2026-1-10-0-0-0.md
+3 −6 .github/workflows/ci.yml
+44 −0 .github/workflows/external-integration.yml
+17 −0 .typespec-integration/config.yaml
+62 −4 CONTRIBUTING.md
+4 −0 eng/common/config/labels.ts
+2 −5 eng/common/scripts/utils/common.ts
+1 −1 eng/tsp-core/pipelines/jobs/build-for-publish.yml
+10 −6 eng/tsp-core/pkg-pr-new.ts
+185 −0 eng/tsp-core/tpm/cli.ts
+43 −0 eng/tsp-core/tpm/packages.ts
+43 −0 eng/tsp-core/utils/packages.ts
+2 −1 package.json
+1 −1 packages/compiler/src/index.ts
+10 −1 packages/compiler/templates/__snapshots__/emitter-ts/eslint.config.js
+1 −2 packages/compiler/templates/__snapshots__/emitter-ts/package.json
+7 −34 packages/compiler/templates/__snapshots__/emitter-ts/test/test-host.ts
+10 −1 packages/compiler/templates/__snapshots__/library-ts/eslint.config.js
+1 −2 packages/compiler/templates/__snapshots__/library-ts/package.json
+18 −23 packages/compiler/templates/__snapshots__/library-ts/test/decorators.test.ts
+5 −15 packages/compiler/templates/__snapshots__/library-ts/test/test-host.ts
+10 −1 packages/compiler/templates/emitter-ts/eslint.config.js
+1 −2 packages/compiler/templates/emitter-ts/package.json
+7 −34 packages/compiler/templates/emitter-ts/test/test-host.ts.mu
+10 −1 packages/compiler/templates/library-ts/eslint.config.js
+1 −2 packages/compiler/templates/library-ts/package.json
+18 −23 packages/compiler/templates/library-ts/test/decorators.test.ts.mu
+5 −15 packages/compiler/templates/library-ts/test/test-host.ts.mu
+9 −9 packages/http-client-csharp/eng/scripts/RegenPreview.ps1
+11 −11 packages/http-client-csharp/eng/scripts/RegenPreview.psm1
+10 −10 packages/http-client-csharp/eng/scripts/Submit-AzureSdkForNetPr.ps1
+3 −3 packages/http-client-csharp/eng/scripts/docs/RegenPreview.md
+14 −0 packages/http-client-python/CHANGELOG.md
+7 −7 packages/http-client-python/package-lock.json
+3 −3 packages/http-client-python/package.json
+7 −0 packages/http/CHANGELOG.md
+1 −1 packages/http/package.json
+9 −3 packages/http/src/http-property.ts
+9 −2 packages/http/src/responses.ts
+16 −0 packages/http/test/responses.test.ts
+16 −0 packages/openapi3/src/cli/actions/convert/utils/decorators.ts
+49 −0 packages/openapi3/test/tsp-openapi3/convert-openapi3-doc.test.ts
+5 −1 packages/playground/src/react/playground.tsx
+97 −11 packages/playground/src/services.ts
+2 −0 packages/tsp-integration/cmd/tsp-integration.js
+44 −0 packages/tsp-integration/package.json
+72 −0 packages/tsp-integration/src/cli.ts
+15 −0 packages/tsp-integration/src/config/types.ts
+157 −0 packages/tsp-integration/src/find-packages.ts
+123 −0 packages/tsp-integration/src/git.ts
+68 −0 packages/tsp-integration/src/keyboard-api.test.ts
+80 −0 packages/tsp-integration/src/keyboard-api.ts
+50 −0 packages/tsp-integration/src/patch-package-json.ts
+75 −0 packages/tsp-integration/src/run.ts
+47 −0 packages/tsp-integration/src/runner.ts
+168 −0 packages/tsp-integration/src/utils.ts
+276 −0 packages/tsp-integration/src/validate.ts
+6 −0 packages/tsp-integration/tsconfig.build.json
+9 −0 packages/tsp-integration/tsconfig.json
+4 −0 packages/tsp-integration/vitest.config.ts
+65 −0 pnpm-lock.yaml
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@
"validate-mock-apis": "pnpm -r --filter=@azure-tools/azure-http-specs run validate-mock-apis",
"generate-scenarios-summary": "pnpm -r --filter=@azure-tools/azure-http-specs run generate-scenarios-summary",
"upload-manifest": "pnpm -r --filter=@azure-tools/azure-http-specs run upload-manifest",
"install-conflict": "git checkout upstream/main -- pnpm-lock.yaml && pnpm install"
"install-conflict": "git checkout upstream/main -- pnpm-lock.yaml && pnpm install",
"tsp-integration": "pnpm --filter @azure-tools/integration-tester exec tsp-integration"
},
"devDependencies": {
"@chronus/chronus": "^1.0.1",
Expand Down
2 changes: 0 additions & 2 deletions packages/integration-tester/cmd/tsp-integration.js

This file was deleted.

44 changes: 0 additions & 44 deletions packages/integration-tester/package.json

This file was deleted.

72 changes: 0 additions & 72 deletions packages/integration-tester/src/cli.ts

This file was deleted.

15 changes: 0 additions & 15 deletions packages/integration-tester/src/config/types.ts

This file was deleted.

157 changes: 0 additions & 157 deletions packages/integration-tester/src/find-packages.ts

This file was deleted.

Loading