v1.1.0 #6
maxgrinev-padb
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
This release introduces compact syntax for http_request operations, making configurations more readable with YAML-based table definitions. See updated examples in the readme.
Added
http_request
operation:tables
in YAML instead of in theparser_expression
return statement. Provides better readability and separation of concerns: Python code now handles only data mapping. The original return statement approach is still supported for flexibility (e.g., constructing schemas from response data)columns
directly for table schema definitions without nesting them inmodel
. The model syntax remains supported as models will expand beyond columns in future versions (e.g., data validation rules).columns
can now be defined using object compact syntax, for example,{id: "text", "first_name": "text", "last_name": "text"}
success_status: [...]
support in the response section ofhttp_request
operation. Automatically raises an error if the response status code doesn't match the listed success codes.def evaluate(context ...):
line is now optional in_expression
propertiesThis discussion was created from the release v1.1.0.
Beta Was this translation helpful? Give feedback.
All reactions