Skip to content

Commit

Permalink
Bump core from 97cfa11 to 05c8597 (#205)
Browse files Browse the repository at this point in the history
Bumps [core](https://github.com/microsoft/typespec) from `97cfa11` to
`05c8597`.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/microsoft/typespec/commit/05c8597b96c97f9904c5cc17edb84c89417b8b6b"><code>05c8597</code></a>
Fix circular reference not always inlining array properties (<a
href="https://redirect.github.com/microsoft/typespec/issues/2810">#2810</a>)</li>
<li><a
href="https://github.com/microsoft/typespec/commit/31863054269264dbba0eb8d379089eb97ba86b06"><code>3186305</code></a>
Fix publishing (<a
href="https://redirect.github.com/microsoft/typespec/issues/2865">#2865</a>)</li>
<li>See full diff in <a
href="https://github.com/microsoft/typespec/compare/97cfa1163eac047ad42aa6530efa1a08336168ff...05c8597b96c97f9904c5cc17edb84c89417b8b6b">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]>
  • Loading branch information
dependabot[bot] and timotheeguerin authored Feb 1, 2024
1 parent 091cb14 commit cd41713
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1213,11 +1213,10 @@ components:
type: boolean
description: If true, is context only.
prompts:
allOf:
- type: array
items:
$ref: '#/components/schemas/QnaPrompt'
description: The prompts to display.
type: array
items:
$ref: '#/components/schemas/QnaPrompt'
description: A dialog to be displayed to the user.
QnaDialogUpdate:
type: object
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2118,11 +2118,10 @@ components:
type: string
description: The source context used for selecting recursive inputs.
inputs:
allOf:
- type: array
items:
$ref: '#/components/schemas/InputFieldMappingEntry'
description: The recursive inputs used when creating a complex type.
type: array
items:
$ref: '#/components/schemas/InputFieldMappingEntry'
description: Input field mapping for a skill.
KeepTokenFilter:
type: object
Expand Down Expand Up @@ -3304,11 +3303,10 @@ components:
type: string
description: A list of the names of synonym maps to associate with this field. This option can be used only with searchable fields. Currently only one synonym map per field is supported. Assigning a synonym map to a field ensures that query terms targeting that field are expanded at query-time using the rules in the synonym map. This attribute can be changed on existing fields. Must be null or an empty collection for complex fields.
fields:
allOf:
- type: array
items:
$ref: '#/components/schemas/SearchField'
description: A list of sub-fields if this is a field of type Edm.ComplexType or Collection(Edm.ComplexType). Must be null or empty for simple fields.
type: array
items:
$ref: '#/components/schemas/SearchField'
description: Represents a field in an index definition, which describes the name, data type, and search behavior of a field.
SearchFieldDataType:
type: string
Expand Down

0 comments on commit cd41713

Please sign in to comment.