Skip to content

Releases: eshaan7/Flask-Shell2HTTP

v1.9.1: Support Flask >=2.1.0

Choose a tag to compare

@eshaan7 eshaan7 released this 29 Apr 12:32

v1.9.0: cancel/delete jobs

Choose a tag to compare

@eshaan7 eshaan7 released this 22 Dec 15:51

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

Choose a tag to compare

@eshaan7 eshaan7 released this 22 Sep 13:52

v1.7.0: Support flask 2.x and more

Choose a tag to compare

@eshaan7 eshaan7 released this 20 Sep 09:57

Feature: force_unique_key option in POST request

Choose a tag to compare

@eshaan7 eshaan7 released this 20 Nov 06:26

Fix decoding bug in case of cyrillic output

Choose a tag to compare

@eshaan7 eshaan7 released this 06 Oct 12:12

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

Choose a tag to compare

@eshaan7 eshaan7 released this 21 Sep 14:00

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.

Choose a tag to compare

@eshaan7 eshaan7 released this 24 Jul 14:44

Patch release after v1.4.0.

Fixed Backward compatibility issues.

Bug Fixes in multipart request

Choose a tag to compare

@eshaan7 eshaan7 released this 23 Jul 21:22

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

Choose a tag to compare

@eshaan7 eshaan7 released this 23 Jul 16:32
  • 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.