Skip to content

Releases: eshaan7/Flask-Shell2HTTP

v1.9.1: Support Flask >=2.1.0

29 Apr 12:32
Compare
Choose a tag to compare

v1.9.0: cancel/delete jobs

22 Dec 15:51
Compare
Choose a tag to compare

v1.8.0: Allow `wait` query param in `GET` requests

22 Sep 13:52
Compare
Choose a tag to compare

v1.7.0: Support flask 2.x and more

20 Sep 09:57
Compare
Choose a tag to compare

Feature: force_unique_key option in POST request

20 Nov 06:26
Compare
Choose a tag to compare

Fix decoding bug in case of cyrillic output

06 Oct 12:12
Compare
Choose a tag to compare

Get it on PyPi

  • Now decodes stdout and stderr to utf-8 and not ascii. Thanks @vBLFTePebWNi6c for the contribution.

(Stable) View Decorators for exposed endpoint

21 Sep 14:00
Compare
Choose a tag to compare

Get it on PyPi

  • Added the ability to apply multiple View Decorators on the exposed endpoint. See Example Code.
  • Useful in case you wish to apply authentication, caching, etc. to the endpoint.
  • Backwards compatible with v1.4.x

(Stable) Bug fixes. Tested for >Python 3.6.

24 Jul 14:44
Compare
Choose a tag to compare

Patch release after v1.4.0.

Fixed Backward compatibility issues.

Bug Fixes in multipart request

23 Jul 21:22
Compare
Choose a tag to compare

Please use v1.4.3 or greater

  • Bug fixes where multipart requests were failing because of nested form data. Because of this the multipart (file containing) POST request now has an updated schema (examples have been updated accordingly).
  • Dropped dataclass for report generation because it causes various bugs in python 3.6.

context passing to callback, added JSON schema

23 Jul 16:32
Compare
Choose a tag to compare
  • Additional context from the POST request's JSON can be passed to the user-defined callback function. This allows for better future's post-completion processing.

Note: Please see Examples section for the relevant code in such use-cases.

  • Updated docs with more examples/ use-cases.
  • Added more type-hinting.