Commit 4563d09
Bumps [core](https://github.com/microsoft/typespec) from `33761fc` to
`14c73cc`.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/microsoft/typespec/commit/14c73cc53c6b21e29ed620178eb2aba7221039e6"><code>14c73cc</code></a>
build(deps): bump the testing group across 1 directory with 2 updates
(<a
href="https://redirect.github.com/microsoft/typespec/issues/10449">#10449</a>)</li>
<li><a
href="https://github.com/microsoft/typespec/commit/26d217c92f88618a9482fe01323710446c805c88"><code>26d217c</code></a>
build(deps): bump the actions group with 4 updates (<a
href="https://redirect.github.com/microsoft/typespec/issues/10450">#10450</a>)</li>
<li><a
href="https://github.com/microsoft/typespec/commit/991dd2493b402efe5b5fd9d5cfd269b35267f73e"><code>991dd24</code></a>
fix: add repos toolset to issue-triage agent to fix workflow failure (<a
href="https://redirect.github.com/microsoft/typespec/issues/10441">#10441</a>)</li>
<li><a
href="https://github.com/microsoft/typespec/commit/3e5df3423061bb7d1f5fe84ed38ce25fdb760351"><code>3e5df34</code></a>
feat: enable C# emitter in playground with backend server (<a
href="https://redirect.github.com/microsoft/typespec/issues/10346">#10346</a>)</li>
<li><a
href="https://github.com/microsoft/typespec/commit/ef146dd11e19201edb614ff033c6a3518ae4305f"><code>ef146dd</code></a>
test: add missing xml spector test (<a
href="https://redirect.github.com/microsoft/typespec/issues/10436">#10436</a>)</li>
<li><a
href="https://github.com/microsoft/typespec/commit/e9b579c6a901a6c97003c7e70c0ad0ed717a5d6a"><code>e9b579c</code></a>
[http-client-python] Fix enum member names with hyphens generating
invalid Py...</li>
<li><a
href="https://github.com/microsoft/typespec/commit/f1750faacad441066f7ec28ae17408c10eb5b09a"><code>f1750fa</code></a>
[python] add back api view sphinx (<a
href="https://redirect.github.com/microsoft/typespec/issues/10323">#10323</a>)</li>
<li><a
href="https://github.com/microsoft/typespec/commit/182e3a3753ca48cfbef52e7349114435926fd5b0"><code>182e3a3</code></a>
website: blog format release notes for 1.11 (<a
href="https://redirect.github.com/microsoft/typespec/issues/10434">#10434</a>)</li>
<li>See full diff in <a
href="https://github.com/microsoft/typespec/compare/33761fc87f52b91353ff3ebed13e898eec78c699...14c73cc53c6b21e29ed620178eb2aba7221039e6">compare
view</a></li>
</ul>
</details>
<br />
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
</details>
---------
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 6aff6b9 commit 4563d09
3 files changed
Lines changed: 72 additions & 72 deletions
- .chronus/changes/copilot-fix-enum-name-compile-error-2026-3-16-5-51-48.md+7
- .chronus/changes/python-addBackApiViewSphinx-2026-3-9-12-35-1.md+7
- .github/skills/emitter-prep-for-pr/SKILL.md+51-206
- .github/workflows/copilot-setup-steps.yml+2-2
- .github/workflows/issue-triage.md+1-1
- .github/workflows/python-integration.yml+5-5
- .gitignore+3
- cspell.yaml+2
- eng/emitters/pipelines/templates/stages/emitter-stages.yml+71-1
- packages/http-client-csharp/.dockerignore+8
- packages/http-client-csharp/emitter/src/code-model-writer.ts+11-1
- packages/http-client-csharp/emitter/src/emit-generate.browser.ts+61
- packages/http-client-csharp/emitter/src/emit-generate.ts+195
- packages/http-client-csharp/emitter/src/emitter.ts+18-196
- packages/http-client-csharp/emitter/test/Unit/emit-generate-browser.test.ts+130
- packages/http-client-csharp/emitter/test/Unit/emitter.test.ts+39-166
- packages/http-client-csharp/emitter/test/Unit/validate-dotnet-sdk.test.ts+118
- packages/http-client-csharp/eng/pipeline/publish.yml+4
- packages/http-client-csharp/generator/Microsoft.TypeSpec.Generator.ClientModel/src/Providers/ScmMethodProviderCollection.cs+1-1
- packages/http-client-csharp/generator/Microsoft.TypeSpec.Generator/src/Expressions/ValueExpression.cs+2-1
- packages/http-client-csharp/generator/TestProjects/Spector.Tests/Http/Payload/Xml/XmlTests.cs+12
- packages/http-client-csharp/package.json+5
- packages/http-client-csharp/playground-server/.gitignore+2
- packages/http-client-csharp/playground-server/Dockerfile+29
- packages/http-client-csharp/playground-server/Program.cs+263
- packages/http-client-csharp/playground-server/playground-server.csproj+10
- packages/http-client-python/emitter/src/emitter.ts+25-7
- packages/http-client-python/emitter/src/lib.ts+7
- packages/http-client-python/emitter/src/types.ts-3
- packages/http-client-python/emitter/test/utils.test.ts+3
- packages/http-client-python/eng/scripts/Test-Packages.ps1-11
- packages/http-client-python/eng/scripts/ci/config/eslint-ci.config.mjs+10
- packages/http-client-python/eng/scripts/ci/dev_requirements.txt+1-1
- packages/http-client-python/eng/scripts/ci/lint.ts+10-3
- packages/http-client-python/eng/scripts/ci/regenerate.ts+141-15
- packages/http-client-python/eng/scripts/ci/run-tests.ts+105-46
- packages/http-client-python/eng/scripts/ci/run_apiview.py+22-16
- packages/http-client-python/eng/scripts/ci/run_mypy.py+5-4
- packages/http-client-python/eng/scripts/ci/run_pylint.py+5-6
- packages/http-client-python/eng/scripts/ci/run_pyright.py+5-2
- packages/http-client-python/eng/scripts/ci/run_sphinx_build.py+24-9
- packages/http-client-python/eng/scripts/ci/util.py+60-25
- packages/http-client-python/eng/scripts/setup/run_batch.py+186
- packages/http-client-python/eng/scripts/setup/venvtools.py-1
- packages/http-client-python/generator/pygen/__init__.py-1
- packages/http-client-python/generator/pygen/codegen/__init__.py-1
- packages/http-client-python/generator/pygen/codegen/models/base.py-1
- packages/http-client-python/generator/pygen/codegen/models/enum_type.py-1
- packages/http-client-python/generator/pygen/codegen/serializers/__init__.py+10-1
- packages/http-client-python/generator/pygen/codegen/serializers/general_serializer.py+4-1
- packages/http-client-python/generator/pygen/codegen/templates/packaging_templates/pyproject.toml.jinja2+1-1
- packages/http-client-python/generator/setup.py+1-1
- packages/http-client-python/package.json+1-1
- packages/http-client-python/tests/conftest.py+36-101
- packages/http-client-python/tests/install_packages.py+115-31
- packages/http-client-python/tests/mock_api/azure/conftest.py-32
- packages/http-client-python/tests/mock_api/shared/conftest.py-36
- packages/http-client-python/tests/mock_api/unbranded/conftest.py-32
- packages/http-client-python/tests/mock_api/unbranded/test_unbranded.py+1-1
- packages/http-client-python/tests/requirements/docs.txt+2
- packages/http-client-python/tests/requirements/lint.txt+1-1
- packages/http-client-python/tests/tox.ini+31-39
- pnpm-lock.yaml+236-111
- pnpm-workspace.yaml+2-2
- website/src/components/react-pages/playground.tsx+4-1
- website/src/content/docs/release-notes/typespec-1-11-0.md-33
- website/src/content/docs/release-notes/typespec-1-11-0.mdx+210
0 commit comments