Skip to content

Commit 36c6f95

Browse files
Bump core from 06dc59a to 73e6694 (#2366)
Bumps [core](https://github.com/microsoft/typespec) from `06dc59a` to `73e6694`. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/microsoft/typespec/commit/73e6694d6e8d0f06aa76640153be87c88b77f37a"><code>73e6694</code></a> replace &quot;cadl&quot; with &quot;tsp&quot; (<a href="https://redirect.github.com/microsoft/typespec/issues/6402">#6402</a>)</li> <li><a href="https://github.com/microsoft/typespec/commit/5bf23662b40892de64181450f350bb021a6a5bb2"><code>5bf2366</code></a> Update &quot;Create TypeSpec Project&quot; flow according to 'tsp init' and bundle with...</li> <li><a href="https://github.com/microsoft/typespec/commit/0a21f10e2501b74c4c929c0a1e5a796df98f25ad"><code>0a21f10</code></a> http-client-java, method override with etag (<a href="https://redirect.github.com/microsoft/typespec/issues/6360">#6360</a>)</li> <li><a href="https://github.com/microsoft/typespec/commit/0a2a048addc169c3f1ef6fe44f3d6ba1231f90cd"><code>0a2a048</code></a> Remove object to value conversion (<a href="https://redirect.github.com/microsoft/typespec/issues/6388">#6388</a>)</li> <li>See full diff in <a href="https://github.com/microsoft/typespec/compare/06dc59adc4382d740708ff50697a09402153008f...73e6694d6e8d0f06aa76640153be87c88b77f37a">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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Timothee Guerin <[email protected]>
1 parent 6605b2a commit 36c6f95

File tree

5 files changed

+12
-36
lines changed

5 files changed

+12
-36
lines changed

core

Submodule core updated 51 files

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@
4747
"c8": "^10.1.3",
4848
"cspell": "^8.17.5",
4949
"eslint": "^9.21.0",
50-
"eslint-plugin-deprecation": "^3.0.0",
5150
"eslint-plugin-import": "^2.31.0",
5251
"eslint-plugin-unicorn": "^57.0.0",
5352
"eslint-plugin-vitest": "^0.5.4",

packages/typespec-autorest/test/parameters.test.ts

-23
Original file line numberDiff line numberDiff line change
@@ -511,29 +511,6 @@ describe("misc", () => {
511511
});
512512
});
513513

514-
it("array of enum is kept inline", async () => {
515-
deepStrictEqual(
516-
await testParameter(
517-
`
518-
#suppress "deprecated" "For tests"
519-
@${kind}({format: "csv"})`,
520-
"Foo[]",
521-
),
522-
{
523-
in: kind,
524-
name: "arg1",
525-
required: true,
526-
collectionFormat: "csv",
527-
type: "array",
528-
items: {
529-
type: "string",
530-
enum: ["one", "two"],
531-
"x-ms-enum": { modelAsString: false, name: "Foo" },
532-
},
533-
},
534-
);
535-
});
536-
537514
it("named union is kept inline", async () => {
538515
deepStrictEqual(await testParameter(`@${kind}`, "NamedUnion"), {
539516
in: kind,

pnpm-lock.yaml

+10-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/astro.config.mjs

+1-4
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,7 @@ export default defineConfig({
4545
// @ts-expect-error wrong type
4646
remarkPlugins: [remarkHeadingID],
4747
rehypePlugins: [
48-
[
49-
rehypeAstroRelativeMarkdownLinks,
50-
{ base, contentPath: "src/content/docs", trailingSlash: "always" },
51-
],
48+
[rehypeAstroRelativeMarkdownLinks, { base, collectionBase: false, trailingSlash: "always" }],
5249
],
5350
shikiConfig: {
5451
langs: [TypeSpecLang],

0 commit comments

Comments
 (0)