Skip to content
Draft
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
9ace4dc
bootstrap schemas resolver
Nementon Feb 5, 2021
5aecd27
__init__ / _get_document: use SchemaResolver
Nementon Feb 5, 2021
035fc21
resolver / wip resolve remote ref to local ones
Nementon Feb 6, 2021
16a2314
correct tests breaking changes
Nementon Feb 10, 2021
9dcd09e
resolver / refactor (squash me)
Nementon Feb 11, 2021
b4131d4
resolver / add reference tests
Nementon Feb 11, 2021
b5cff0f
resolver / add data_loader tests
Nementon Feb 11, 2021
505019f
resolver / add schema_resolver tests (wip)
Nementon Feb 11, 2021
ad86939
resovler / add pointer tests
Nementon Feb 12, 2021
cd04d26
resolver / refactor (squash me)
Nementon Feb 14, 2021
ed0d63c
resolver / add schema_resolver tests (squash me)
Nementon Feb 14, 2021
4e8e514
fix absolute paths feature bugs
p1-alexandrevaney Mar 8, 2021
aabd520
add collision_resolver
p1-alexandrevaney Mar 12, 2021
b5b649a
fix collision issues with same schema in two different filesé
p1-alexandrevaney Mar 15, 2021
d43b2ea
do not crash on retry of key modification
p1-alexandrevaney Mar 15, 2021
b171260
find collision of 2 same object at different place
p1-alexandrevaney Mar 15, 2021
c487879
use tokens instead of splitting paths
p1-alexandrevaney Mar 15, 2021
e0d1bd8
remove ref key when replacing it
p1-alexandrevaney Mar 16, 2021
5c4b502
fix build_schema bug when model points to loaded ref
p1-alexandrevaney Mar 18, 2021
f2a1d15
add json loading to data_loader
p1-alexandrevaney Mar 18, 2021
b551b04
dont use resolved schema in collision resolver
p1-alexandrevaney Mar 18, 2021
6a45966
improve collision resolver and resolved schema tests
p1-alexandrevaney Mar 19, 2021
8f0d947
fix data_load json test
p1-alexandrevaney Mar 19, 2021
4bfab76
add new tests for coverage purposes
p1-alexandrevaney Mar 22, 2021
2157ccc
remove remote reference error test in parser properties init
p1-alexandrevaney Mar 29, 2021
8adc9d0
fix recursive ref lookup when original ref has already been incremented
p1-alexandrevaney Apr 13, 2021
7733882
various fix for 5gc api gen
p1-alexandrevaney Apr 7, 2021
9cffa10
task regen && task check
p1-ra May 14, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix build_schema bug when model points to loaded ref
  • Loading branch information
p1-alexandrevaney authored and p1-ra committed May 19, 2021
commit 5c4b5024f05e1c48c7124eb861d223d43c08d621
1 change: 1 addition & 0 deletions openapi_python_client/parser/responses.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ class Response:

_SOURCE_BY_CONTENT_TYPE = {
"application/json": "response.json()",
"application/problem+json": "response.json()",
"application/vnd.api+json": "response.json()",
"application/octet-stream": "response.content",
"text/html": "response.text",
Expand Down