Skip to content

Releases: Martlark/flask-serialize

2.2.0

13 Apr 07:08
f8b80eb
Compare
Choose a tag to compare

2.1.3

05 Mar 10:04
e9c72c2
Compare
Choose a tag to compare

Allow sorting by lambda

2.1.2

30 Nov 02:51
b275e12
Compare
Choose a tag to compare

2.1.2 Fix readme formatting, add tests for 3.11 Python and update dependencies

2.1.1

04 Sep 06:13
6d5ff12
Compare
Choose a tag to compare

Improve SQLite JSON handling

2.1.0

10 Aug 09:40
b5bde00
Compare
Choose a tag to compare

Convert readme to markdown. Add support for JSON columns. Withdraw Python 3.6 Support. Use unittest instead of pytest. NOTE: Changes __fs_convert_types__ to a dict.

2.0.3

30 Jan 04:06
b5a2103
Compare
Choose a tag to compare

Allow use of bare column variables rather than quoted strings for _fs field lists. Fix missing import of FlaskSerialize

Merge pull request #40 from Martlark/2.0.2

21 Aug 04:03
3f7111b
Compare
Choose a tag to compare

Version 2.0.2 changes most of the properties, hooks and methods to use a more normal Python naming convention.

  • Regularly called mixin methods now start with fs_.
  • Hook methods start with __fs_ and end with __.
  • Control properties start with __fs_ and end with __.
  • Some hook functions can now return False or True rather than just raise Exceptions
  • fs_get_delete_put_post now returns a HTTP code that is more accurate of the cause

1.5.2 Add fs_after_commit

26 Jun 02:58
2fbd217
Compare
Choose a tag to compare

Add fs_after_commit

Fix for TypeError: unsupported operand type(s) for +=: 'ImmutableColumnCollection' and 'list'

20 Mar 07:59
e47d3c2
Compare
Choose a tag to compare

Fix for TypeError: unsupported operand type(s) for +=: 'ImmutableColumnCollection' and 'list'

1.5.0

26 Feb 06:04
7aa4931
Compare
Choose a tag to compare

Return item from POST/PUT updates. Allow create_fields and update_fields to be specified using the column fields. None values serialize as null/None. Restore previous update_properties behaviour. By default updates/creates using all fields. Exclude primary key from create and update. Improve documentation