Skip to content

Commit

Permalink
Bump core from a5fc2ce to deae32e (#1533)
Browse files Browse the repository at this point in the history
Bumps [core](https://github.com/microsoft/typespec) from `a5fc2ce` to
`deae32e`.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/microsoft/typespec/commit/deae32ea6fa699327310ec7608d65dfba375c0c3"><code>deae32e</code></a>
http-client-java, support client parameter to client (<a
href="https://redirect.github.com/microsoft/typespec/issues/4415">#4415</a>)</li>
<li><a
href="https://github.com/microsoft/typespec/commit/f9ae0a1daf9273c57387c3da4ca7e50b40ebb6c0"><code>f9ae0a1</code></a>
fix the keyCredential issue (<a
href="https://redirect.github.com/microsoft/typespec/issues/4412">#4412</a>)</li>
<li><a
href="https://github.com/microsoft/typespec/commit/e62e58a62e634228f5afd7c9e3ffd23ac9349f24"><code>e62e58a</code></a>
Prepare 0.60.1 hotfix release (<a
href="https://redirect.github.com/microsoft/typespec/issues/4409">#4409</a>)</li>
<li><a
href="https://github.com/microsoft/typespec/commit/32a118dbf66dcbd3e35fa07b54de6eeef3aad073"><code>32a118d</code></a>
Fixes versioning when using versioned named union variants (<a
href="https://redirect.github.com/microsoft/typespec/issues/4408">#4408</a>)</li>
<li><a
href="https://github.com/microsoft/typespec/commit/7d444a4331e777a0ea75478bfbba51d100956d87"><code>7d444a4</code></a>
Support to change the accessibility of a model and change a model to be
struc...</li>
<li>See full diff in <a
href="https://github.com/microsoft/typespec/compare/a5fc2ce6201098d1d7095bb4e7a6109c1dd2fe9a...deae32ea6fa699327310ec7608d65dfba375c0c3">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 merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@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>
  • Loading branch information
dependabot[bot] committed Sep 12, 2024
1 parent 67cdbab commit 95386b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core
Submodule core updated 34 files
+2 −2 ...es/http-client-csharp/generator/Microsoft.Generator.CSharp.ClientModel/src/Primitives/ScmKnownParameters.cs
+1 −1 packages/http-client-csharp/generator/Microsoft.Generator.CSharp.ClientModel/src/Providers/ClientProvider.cs
+5 −2 packages/http-client-csharp/generator/Microsoft.Generator.CSharp.ClientModel/src/ScmTypeFactory.cs
+3 −3 ...-client-csharp/generator/Microsoft.Generator.CSharp.ClientModel/test/OutputTypes/ScmKnownParametersTests.cs
+4 −4 packages/http-client-csharp/generator/Microsoft.Generator.CSharp.ClientModel/test/TestHelpers/MockHelpers.cs
+1 −1 packages/http-client-csharp/generator/Microsoft.Generator.CSharp.Customization/src/CodeGenTypeAttribute.cs
+1 −1 packages/http-client-csharp/generator/Microsoft.Generator.CSharp/src/CodeModelPlugin.cs
+6 −5 packages/http-client-csharp/generator/Microsoft.Generator.CSharp/src/PostProcessing/GeneratedCodeWorkspace.cs
+51 −21 packages/http-client-csharp/generator/Microsoft.Generator.CSharp/src/Providers/ModelProvider.cs
+40 −0 packages/http-client-csharp/generator/Microsoft.Generator.CSharp/src/Providers/NamedTypeSymbolProvider.cs
+25 −14 packages/http-client-csharp/generator/Microsoft.Generator.CSharp/test/Helpers.cs
+62 −9 ...client-csharp/generator/Microsoft.Generator.CSharp/test/Providers/ModelProviders/ModelCustomizationTests.cs
+7 −0 ...arp/test/Providers/ModelProviders/TestData/ModelCustomizationTests/CanChangeAccessibility/MockInputModel.cs
+11 −0 ...CSharp/test/Providers/ModelProviders/TestData/ModelCustomizationTests/CanChangeModelName/CustomizedModel.cs
+11 −0 .../ModelProviders/TestData/ModelCustomizationTests/CanChangeModelNameAndToStructAtSameTime/CustomizedModel.cs
+13 −0 .../Providers/ModelProviders/TestData/ModelCustomizationTests/CanChangePropertyAccessibility/MockInputModel.cs
+13 −0 ...harp/test/Providers/ModelProviders/TestData/ModelCustomizationTests/CanChangePropertyName/MockInputModel.cs
+13 −0 ...harp/test/Providers/ModelProviders/TestData/ModelCustomizationTests/CanChangePropertyType/MockInputModel.cs
+5 −0 ...r.CSharp/test/Providers/ModelProviders/TestData/ModelCustomizationTests/CanChangeToStruct/MockInputModel.cs
+7 −0 ...enerator/Microsoft.Generator.CSharp/test/Providers/NamedTypeSymbolProviders/NamedTypeSymbolProviderTests.cs
+0 −25 ...ft.Generator.CSharp/test/Providers/TestData/ModelCustomizationTests/TestCustomization_CanChangeModelName.cs
+0 −27 ....CSharp/test/Providers/TestData/ModelCustomizationTests/TestCustomization_CanChangePropertyAccessibility.cs
+0 −27 ...Generator.CSharp/test/Providers/TestData/ModelCustomizationTests/TestCustomization_CanChangePropertyName.cs
+0 −27 ...Generator.CSharp/test/Providers/TestData/ModelCustomizationTests/TestCustomization_CanChangePropertyType.cs
+0 −0 ...p-client-csharp/generator/Microsoft.Generator.CSharp/test/TestData/ConfigurationTests/DisableDocsForType.cs
+20 −5 packages/http-client-csharp/generator/Microsoft.Generator.CSharp/test/TestHelpers/MockHelpers.cs
+14 −1 packages/http-client-java/emitter/src/code-model-builder.ts
+6 −1 packages/http-client-java/emitter/src/models.ts
+4 −2 ...erator-core/src/main/java/com/microsoft/typespec/http/client/generator/core/mapper/ServiceClientMapper.java
+1 −1 packages/http-client-java/generator/http-client-generator-test/package.json
+7 −0 packages/versioning/CHANGELOG.md
+1 −1 packages/versioning/package.json
+4 −2 packages/versioning/src/validate.ts
+25 −0 packages/versioning/test/versioning.test.ts

0 comments on commit 95386b0

Please sign in to comment.