Skip to content

Commit

Permalink
Bump core from 91f0042 to 48099f0 (#1591)
Browse files Browse the repository at this point in the history
Bumps [core](https://github.com/microsoft/typespec) from `91f0042` to
`48099f0`.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/microsoft/typespec/commit/48099f0109c7ec4c21f16eac3b19ce23a3973fca"><code>48099f0</code></a>
Support replacing ctors (<a
href="https://redirect.github.com/microsoft/typespec/issues/4487">#4487</a>)</li>
<li><a
href="https://github.com/microsoft/typespec/commit/063d7ede1dc70a09240df551f0bcede9f110a0d3"><code>063d7ed</code></a>
Add Mutator API to experimental sub export (<a
href="https://redirect.github.com/microsoft/typespec/issues/4290">#4290</a>)</li>
<li>See full diff in <a
href="https://github.com/microsoft/typespec/compare/91f0042a57fff1dc071c6325ff5258271413ab35...48099f0109c7ec4c21f16eac3b19ce23a3973fca">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 23, 2024
1 parent 9ba1509 commit e95629d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core
Submodule core updated 28 files
+7 −0 .chronus/changes/feature-mutators-2024-7-28-15-59-14.md
+2 −0 packages/compiler/src/core/program.ts
+12 −0 packages/compiler/src/experimental/index.ts
+296 −0 packages/compiler/src/experimental/mutators.ts
+167 −0 packages/compiler/src/experimental/realm.ts
+81 −0 packages/compiler/src/experimental/typekit/define-kit.ts
+2 −0 packages/compiler/src/experimental/typekit/index.ts
+8 −0 packages/compiler/src/experimental/typekit/kits/index.ts
+120 −0 packages/compiler/src/experimental/typekit/kits/literal.ts
+70 −0 packages/compiler/src/experimental/typekit/kits/model-property.ts
+79 −0 packages/compiler/src/experimental/typekit/kits/model.ts
+42 −0 packages/compiler/src/experimental/typekit/kits/realm.ts
+506 −0 packages/compiler/src/experimental/typekit/kits/scalar.ts
+81 −0 packages/compiler/src/experimental/typekit/kits/type.ts
+69 −0 packages/compiler/src/experimental/typekit/kits/union-variant.ts
+143 −0 packages/compiler/src/experimental/typekit/kits/union.ts
+36 −0 packages/compiler/src/experimental/typekit/utils.ts
+102 −0 packages/compiler/test/experimental/mutator.test.ts
+12 −0 packages/compiler/test/experimental/typekit/define-kit.test.ts
+17 −0 packages/compiler/test/experimental/typekit/literal.test.ts
+59 −0 packages/compiler/test/experimental/typekit/scalar.test.ts
+18 −0 packages/compiler/test/experimental/typekit/type.test.ts
+43 −0 packages/compiler/test/experimental/typekit/union.test.ts
+41 −0 packages/compiler/test/experimental/typekit/utils.ts
+31 −5 packages/http-client-csharp/generator/Microsoft.Generator.CSharp/src/MemberRemoverVisitor.cs
+3 −0 packages/http-client-csharp/generator/Microsoft.Generator.CSharp/src/Providers/NamedTypeSymbolProvider.cs
+43 −0 ...client-csharp/generator/Microsoft.Generator.CSharp/test/Providers/ModelProviders/ModelCustomizationTests.cs
+10 −0 ...harp/test/Providers/ModelProviders/TestData/ModelCustomizationTests/CanReplaceConstructor/MockInputModel.cs

0 comments on commit e95629d

Please sign in to comment.