mirror of https://github.com/tiangolo/fastapi.git
Merge remote-tracking branch 'origin/dev-getquery' into dev-getquery
This commit is contained in:
commit
1b111fb00e
|
|
@ -34,9 +34,12 @@ jobs:
|
|||
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled == 'true' }}
|
||||
with:
|
||||
limit-access-to-actor: true
|
||||
- uses: docker://tiangolo/latest-changes:0.0.3
|
||||
- uses: docker://tiangolo/latest-changes:0.2.0
|
||||
# - uses: tiangolo/latest-changes@main
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
latest_changes_file: docs/en/docs/release-notes.md
|
||||
latest_changes_header: '## Latest Changes\n\n'
|
||||
latest_changes_header: '## Latest Changes'
|
||||
end_regex: '^## '
|
||||
debug_logs: true
|
||||
label_header_prefix: '### '
|
||||
|
|
|
|||
|
|
@ -7,6 +7,10 @@ hide:
|
|||
|
||||
## Latest Changes
|
||||
|
||||
### Internal
|
||||
|
||||
* 📝 Update release notes, move and check latest-changes. PR [#10588](https://github.com/tiangolo/fastapi/pull/10588) by [@tiangolo](https://github.com/tiangolo).
|
||||
* 👷 Upgrade latest-changes GitHub Action. PR [#10587](https://github.com/tiangolo/fastapi/pull/10587) by [@tiangolo](https://github.com/tiangolo).
|
||||
|
||||
## 0.104.1
|
||||
|
||||
|
|
|
|||
|
|
@ -410,7 +410,7 @@ def test_response():
|
|||
}
|
||||
if not PYDANTIC_V2:
|
||||
expected_response.pop("extra_optional_attributes")
|
||||
expected_response["extra_optional_attributes_alias"] = None
|
||||
expected_response["extra_optional_attributes_alias"] = None
|
||||
response = client.get(
|
||||
"/item",
|
||||
params={
|
||||
|
|
@ -440,7 +440,7 @@ def test_response():
|
|||
}
|
||||
if not PYDANTIC_V2:
|
||||
expected_response.pop("extra_optional_attributes")
|
||||
expected_response["extra_optional_attributes_alias"] = None
|
||||
expected_response["extra_optional_attributes_alias"] = None
|
||||
response = client.get(
|
||||
"/item",
|
||||
params={
|
||||
|
|
|
|||
Loading…
Reference in New Issue