marshmallow 3.25.0__tar.gz → 3.26.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (101) hide show
  1. {marshmallow-3.25.0 → marshmallow-3.26.0}/CHANGELOG.rst +185 -141
  2. {marshmallow-3.25.0 → marshmallow-3.26.0}/CONTRIBUTING.rst +27 -15
  3. {marshmallow-3.25.0 → marshmallow-3.26.0}/PKG-INFO +16 -7
  4. {marshmallow-3.25.0 → marshmallow-3.26.0}/README.rst +10 -3
  5. marshmallow-3.26.0/docs/_static/apple-touch-icon.png +0 -0
  6. marshmallow-3.26.0/docs/_static/custom.css +17 -0
  7. marshmallow-3.26.0/docs/_static/favicon.ico +0 -0
  8. marshmallow-3.26.0/docs/_static/marshmallow-logo-200.png +0 -0
  9. marshmallow-3.26.0/docs/_static/marshmallow-logo-with-title-for-dark-theme.png +0 -0
  10. marshmallow-3.26.0/docs/_static/marshmallow-logo.png +0 -0
  11. {marshmallow-3.25.0 → marshmallow-3.26.0}/docs/api_reference.rst +12 -6
  12. marshmallow-3.26.0/docs/changelog.rst +4 -0
  13. marshmallow-3.26.0/docs/conf.py +70 -0
  14. {marshmallow-3.25.0 → marshmallow-3.26.0}/docs/custom_fields.rst +9 -2
  15. marshmallow-3.26.0/docs/donate.rst +12 -0
  16. marshmallow-3.26.0/docs/examples/index.rst +16 -0
  17. marshmallow-3.26.0/docs/examples/inflection.rst +19 -0
  18. marshmallow-3.26.0/docs/examples/quotes_api.rst +96 -0
  19. marshmallow-3.26.0/docs/examples/validating_package_json.rst +51 -0
  20. marshmallow-3.26.0/docs/extending/custom_error_handling.rst +28 -0
  21. marshmallow-3.26.0/docs/extending/custom_error_messages.rst +31 -0
  22. marshmallow-3.26.0/docs/extending/custom_options.rst +81 -0
  23. marshmallow-3.26.0/docs/extending/index.rst +16 -0
  24. marshmallow-3.26.0/docs/extending/overriding_attribute_access.rst +17 -0
  25. marshmallow-3.26.0/docs/extending/pre_and_post_processing_methods.rst +210 -0
  26. marshmallow-3.26.0/docs/extending/schema_validation.rst +83 -0
  27. marshmallow-3.26.0/docs/extending/using_context.rst +20 -0
  28. marshmallow-3.26.0/docs/extending/using_original_input_data.rst +30 -0
  29. marshmallow-3.26.0/docs/index.rst +94 -0
  30. {marshmallow-3.25.0 → marshmallow-3.26.0}/docs/install.rst +4 -6
  31. {marshmallow-3.25.0 → marshmallow-3.26.0}/docs/marshmallow.class_registry.rst +1 -1
  32. {marshmallow-3.25.0 → marshmallow-3.26.0}/docs/marshmallow.error_store.rst +1 -1
  33. {marshmallow-3.25.0 → marshmallow-3.26.0}/docs/marshmallow.schema.rst +1 -1
  34. marshmallow-3.26.0/docs/marshmallow.types.rst +5 -0
  35. {marshmallow-3.25.0 → marshmallow-3.26.0}/docs/marshmallow.utils.rst +1 -1
  36. {marshmallow-3.25.0 → marshmallow-3.26.0}/docs/nesting.rst +18 -13
  37. {marshmallow-3.25.0 → marshmallow-3.26.0}/docs/quickstart.rst +100 -39
  38. {marshmallow-3.25.0 → marshmallow-3.26.0}/docs/top_level.rst +1 -1
  39. {marshmallow-3.25.0 → marshmallow-3.26.0}/docs/upgrading.rst +142 -9
  40. {marshmallow-3.25.0 → marshmallow-3.26.0}/docs/why.rst +2 -5
  41. marshmallow-3.26.0/pyproject.toml +137 -0
  42. {marshmallow-3.25.0 → marshmallow-3.26.0}/src/marshmallow/class_registry.py +8 -9
  43. {marshmallow-3.25.0 → marshmallow-3.26.0}/src/marshmallow/decorators.py +16 -11
  44. {marshmallow-3.25.0 → marshmallow-3.26.0}/src/marshmallow/error_store.py +3 -3
  45. {marshmallow-3.25.0 → marshmallow-3.26.0}/src/marshmallow/fields.py +98 -81
  46. {marshmallow-3.25.0 → marshmallow-3.26.0}/src/marshmallow/orderedset.py +1 -1
  47. {marshmallow-3.25.0 → marshmallow-3.26.0}/src/marshmallow/schema.py +191 -101
  48. marshmallow-3.26.0/src/marshmallow/types.py +40 -0
  49. {marshmallow-3.25.0 → marshmallow-3.26.0}/src/marshmallow/utils.py +20 -18
  50. {marshmallow-3.25.0 → marshmallow-3.26.0}/src/marshmallow/validate.py +37 -23
  51. {marshmallow-3.25.0 → marshmallow-3.26.0}/tests/base.py +5 -4
  52. {marshmallow-3.25.0 → marshmallow-3.26.0}/tests/test_decorators.py +61 -7
  53. {marshmallow-3.25.0 → marshmallow-3.26.0}/tests/test_deserialization.py +25 -20
  54. {marshmallow-3.25.0 → marshmallow-3.26.0}/tests/test_error_store.py +45 -37
  55. {marshmallow-3.25.0 → marshmallow-3.26.0}/tests/test_fields.py +11 -11
  56. {marshmallow-3.25.0 → marshmallow-3.26.0}/tests/test_options.py +16 -2
  57. {marshmallow-3.25.0 → marshmallow-3.26.0}/tests/test_registry.py +13 -13
  58. {marshmallow-3.25.0 → marshmallow-3.26.0}/tests/test_schema.py +35 -35
  59. {marshmallow-3.25.0 → marshmallow-3.26.0}/tests/test_serialization.py +34 -23
  60. {marshmallow-3.25.0 → marshmallow-3.26.0}/tests/test_utils.py +7 -6
  61. {marshmallow-3.25.0 → marshmallow-3.26.0}/tests/test_validate.py +41 -7
  62. {marshmallow-3.25.0 → marshmallow-3.26.0}/tox.ini +11 -9
  63. marshmallow-3.25.0/docs/_templates/donate.html +0 -34
  64. marshmallow-3.25.0/docs/_templates/useful-links.html +0 -7
  65. marshmallow-3.25.0/docs/about.rst.inc +0 -46
  66. marshmallow-3.25.0/docs/changelog.rst +0 -4
  67. marshmallow-3.25.0/docs/conf.py +0 -76
  68. marshmallow-3.25.0/docs/ecosystem.rst +0 -6
  69. marshmallow-3.25.0/docs/examples.rst +0 -299
  70. marshmallow-3.25.0/docs/extending.rst +0 -500
  71. marshmallow-3.25.0/docs/index.rst +0 -72
  72. marshmallow-3.25.0/pyproject.toml +0 -95
  73. marshmallow-3.25.0/src/marshmallow/types.py +0 -11
  74. {marshmallow-3.25.0 → marshmallow-3.26.0}/LICENSE +0 -0
  75. {marshmallow-3.25.0 → marshmallow-3.26.0}/NOTICE +0 -0
  76. {marshmallow-3.25.0 → marshmallow-3.26.0}/SECURITY.md +0 -0
  77. {marshmallow-3.25.0 → marshmallow-3.26.0}/docs/.gitignore +0 -0
  78. marshmallow-3.25.0/docs/_static/marshmallow-logo.png → marshmallow-3.26.0/docs/_static/marshmallow-logo-with-title.png +0 -0
  79. {marshmallow-3.25.0 → marshmallow-3.26.0}/docs/authors.rst +0 -0
  80. {marshmallow-3.25.0 → marshmallow-3.26.0}/docs/code_of_conduct.rst +0 -0
  81. {marshmallow-3.25.0 → marshmallow-3.26.0}/docs/contributing.rst +0 -0
  82. {marshmallow-3.25.0 → marshmallow-3.26.0}/docs/dashing.json +0 -0
  83. {marshmallow-3.25.0 → marshmallow-3.26.0}/docs/kudos.rst +0 -0
  84. {marshmallow-3.25.0 → marshmallow-3.26.0}/docs/license.rst +0 -0
  85. {marshmallow-3.25.0 → marshmallow-3.26.0}/docs/marshmallow.decorators.rst +0 -0
  86. {marshmallow-3.25.0 → marshmallow-3.26.0}/docs/marshmallow.exceptions.rst +0 -0
  87. {marshmallow-3.25.0 → marshmallow-3.26.0}/docs/marshmallow.fields.rst +0 -0
  88. {marshmallow-3.25.0 → marshmallow-3.26.0}/docs/marshmallow.validate.rst +0 -0
  89. {marshmallow-3.25.0 → marshmallow-3.26.0}/docs/whos_using.rst +0 -0
  90. {marshmallow-3.25.0 → marshmallow-3.26.0}/src/marshmallow/__init__.py +6 -6
  91. {marshmallow-3.25.0 → marshmallow-3.26.0}/src/marshmallow/base.py +0 -0
  92. {marshmallow-3.25.0 → marshmallow-3.26.0}/src/marshmallow/exceptions.py +0 -0
  93. {marshmallow-3.25.0 → marshmallow-3.26.0}/src/marshmallow/py.typed +0 -0
  94. {marshmallow-3.25.0 → marshmallow-3.26.0}/src/marshmallow/warnings.py +0 -0
  95. {marshmallow-3.25.0 → marshmallow-3.26.0}/tests/__init__.py +0 -0
  96. {marshmallow-3.25.0 → marshmallow-3.26.0}/tests/conftest.py +0 -0
  97. {marshmallow-3.25.0 → marshmallow-3.26.0}/tests/foo_serializer.py +0 -0
  98. {marshmallow-3.25.0 → marshmallow-3.26.0}/tests/mypy_test_cases/test_class_registry.py +0 -0
  99. {marshmallow-3.25.0 → marshmallow-3.26.0}/tests/mypy_test_cases/test_validation_error.py +0 -0
  100. {marshmallow-3.25.0 → marshmallow-3.26.0}/tests/test_exceptions.py +0 -0
  101. {marshmallow-3.25.0 → marshmallow-3.26.0}/tests/test_version_attributes.py +0 -0
@@ -1,6 +1,50 @@
1
1
  Changelog
2
2
  ---------
3
3
 
4
+ 3.26.0 (2025-01-22)
5
+ *******************
6
+
7
+ Features:
8
+
9
+ - Typing: Add type annotations and improved documentation for `class Meta <marshmallow.Schema.Meta>` options (:pr:`2760`).
10
+ - Typing: Improve type coverage of `marshmallow.Schema.SchemaMeta` (:pr:`2761`).
11
+ - Typing: `marshmallow.Schema.loads` parameter allows `bytes` and `bytesarray` (:pr:`2769`).
12
+
13
+ Bug fixes:
14
+
15
+ - Respect ``data_key`` when schema validators raise a `ValidationError <marshmallow.exceptions.ValidationError>`
16
+ with a ``field_name`` argument (:issue:`2170`). Thanks :user:`matejsp` for reporting.
17
+ - Correctly handle multiple `@post_load <marshmallow.post_load>` methods where one method appends to
18
+ the data and another passes ``pass_original=True`` (:issue:`1755`).
19
+ Thanks :user:`ghostwheel42` for reporting.
20
+ - ``URL`` fields now properly validate ``file`` paths (:issue:`2249`).
21
+ Thanks :user:`0xDEC0DE` for reporting and fixing.
22
+
23
+ Documentation:
24
+
25
+ - Add :doc:`upgrading guides <upgrading>` for 3.24 and 3.26 (:pr:`2780`).
26
+ - Various documentation improvements (:pr:`2757`, :pr:`2759`, :pr:`2765`, :pr:`2774`, :pr:`2778`, :pr:`2783`, :pr:`2796`).
27
+
28
+ Deprecations:
29
+
30
+ - The ``ordered`` `class Meta <marshmallow.Schema.Meta>` option is deprecated (:issue:`2146`, :pr:`2762`).
31
+ Field order is already preserved by default. Set `marshmallow.Schema.dict_class` to `collections.OrderedDict`
32
+ to maintain the previous behavior.
33
+
34
+ 3.25.1 (2025-01-11)
35
+ *******************
36
+
37
+ Bug fixes:
38
+
39
+ - Typing: Fix type annotations for `Tuple <marshmallow.fields.Tuple>`,
40
+ `Boolean <marshmallow.fields.Boolean>`, and `Pluck <marshmallow.fields.Pluck>`
41
+ constructors (:pr:`2756`).
42
+ - Typing: Fix overload for `marshmallow.class_registry.get_class` (:pr:`2756`).
43
+
44
+ Documentation:
45
+
46
+ - Various documentation improvements (:pr:`2746`, :pr:`2747`, :pr:`2748`, :pr:`2749`, :pr:`2750`, :pr:`2751`).
47
+
4
48
  3.25.0 (2025-01-09)
5
49
  *******************
6
50
 
@@ -581,14 +625,14 @@ Support:
581
625
  - Test against Python 3.8 (:pr:`1431`).
582
626
 
583
627
  3.2.1 (2019-09-30)
584
- ++++++++++++++++++
628
+ ******************
585
629
 
586
630
  Bug fixes:
587
631
 
588
632
  - Fix typing for ``Schema.dump[s]`` (:pr:`1416`).
589
633
 
590
634
  3.2.0 (2019-09-17)
591
- ++++++++++++++++++
635
+ ******************
592
636
 
593
637
  Features:
594
638
 
@@ -603,7 +647,7 @@ Refactoring:
603
647
  - Remove unnecessary ``BaseSchema`` superclass (:pr:`1406`).
604
648
 
605
649
  3.1.1 (2019-09-16)
606
- ++++++++++++++++++
650
+ ******************
607
651
 
608
652
  Bug fixes:
609
653
 
@@ -613,7 +657,7 @@ Bug fixes:
613
657
  Thanks :user:`metheoryt` for reporting.
614
658
 
615
659
  3.1.0 (2019-09-15)
616
- ++++++++++++++++++
660
+ ******************
617
661
 
618
662
  Features:
619
663
 
@@ -626,7 +670,7 @@ Bug fixes:
626
670
  - Includes bug fix from 2.20.5.
627
671
 
628
672
  3.0.5 (2019-09-12)
629
- ++++++++++++++++++
673
+ ******************
630
674
 
631
675
  Bug fixes:
632
676
 
@@ -635,7 +679,7 @@ Bug fixes:
635
679
 
636
680
 
637
681
  3.0.4 (2019-09-11)
638
- ++++++++++++++++++
682
+ ******************
639
683
 
640
684
  Bug fixes:
641
685
 
@@ -643,7 +687,7 @@ Bug fixes:
643
687
  - Includes bug fix from 2.20.4 (:issue:`1160`).
644
688
 
645
689
  3.0.3 (2019-09-04)
646
- ++++++++++++++++++
690
+ ******************
647
691
 
648
692
  Bug fixes:
649
693
 
@@ -651,7 +695,7 @@ Bug fixes:
651
695
  Thanks :user:`jtrakk` for reporting.
652
696
 
653
697
  3.0.2 (2019-09-04)
654
- ++++++++++++++++++
698
+ ******************
655
699
 
656
700
  Bug fixes:
657
701
 
@@ -659,7 +703,7 @@ Bug fixes:
659
703
  - Fix incorrect ``super()`` call in ``SchemaMeta.__init__`` (:pr:`1362`).
660
704
 
661
705
  3.0.1 (2019-08-21)
662
- ++++++++++++++++++
706
+ ******************
663
707
 
664
708
  Bug fixes:
665
709
 
@@ -667,7 +711,7 @@ Bug fixes:
667
711
  This bug was introduced in 3.0.0rc9. Thanks :user:`zblz` for reporting.
668
712
 
669
713
  3.0.0 (2019-08-18)
670
- ++++++++++++++++++
714
+ ******************
671
715
 
672
716
  Features:
673
717
 
@@ -685,7 +729,7 @@ Support:
685
729
  - Various docs improvements (:pr:`1329`).
686
730
 
687
731
  3.0.0rc9 (2019-07-31)
688
- +++++++++++++++++++++
732
+ *********************
689
733
 
690
734
  Features:
691
735
 
@@ -716,7 +760,7 @@ Support:
716
760
  - Document usage of ``validate.Regexp``'s usage ``re.search`` (:issue:`1285`). Thanks :user:`macdonaldezra`.
717
761
 
718
762
  3.0.0rc8 (2019-07-04)
719
- +++++++++++++++++++++
763
+ *********************
720
764
 
721
765
  Features:
722
766
 
@@ -747,7 +791,7 @@ Other changes:
747
791
  - Switch to Azure Pipelines for CI (:issue:`1261`).
748
792
 
749
793
  3.0.0rc7 (2019-06-15)
750
- +++++++++++++++++++++
794
+ *********************
751
795
 
752
796
  Features:
753
797
 
@@ -769,7 +813,7 @@ Other changes:
769
813
  - *Backwards-incompatible*: Use keyword-only arguments (:issue:`1216`).
770
814
 
771
815
  3.0.0rc6 (2019-05-05)
772
- +++++++++++++++++++++
816
+ *********************
773
817
 
774
818
  Support:
775
819
 
@@ -785,7 +829,7 @@ Support:
785
829
  again :user:`hugovk`.
786
830
 
787
831
  3.0.0rc5 (2019-03-30)
788
- +++++++++++++++++++++
832
+ *********************
789
833
 
790
834
  Features:
791
835
 
@@ -805,7 +849,7 @@ Bug fixes:
805
849
  - Includes bug fix from 2.19.2.
806
850
 
807
851
  3.0.0rc4 (2019-02-08)
808
- +++++++++++++++++++++
852
+ *********************
809
853
 
810
854
  Features:
811
855
 
@@ -815,7 +859,7 @@ Features:
815
859
  Thank :user:`sayanarijit` for the suggestion and the PR.
816
860
 
817
861
  3.0.0rc3 (2019-01-13)
818
- +++++++++++++++++++++
862
+ *********************
819
863
 
820
864
  Features:
821
865
 
@@ -837,7 +881,7 @@ Bug fixes:
837
881
  - Includes bug fix from 2.18.0.
838
882
 
839
883
  3.0.0rc2 (2019-01-03)
840
- +++++++++++++++++++++
884
+ *********************
841
885
 
842
886
  Features:
843
887
 
@@ -862,7 +906,7 @@ Other changes:
862
906
  validation completion (:issue:`996`).
863
907
 
864
908
  3.0.0rc1 (2018-11-29)
865
- +++++++++++++++++++++
909
+ *********************
866
910
 
867
911
  Features:
868
912
 
@@ -880,14 +924,14 @@ Bug fixes:
880
924
  Thanks :user:`toffan` for the catch and patch.
881
925
 
882
926
  3.0.0b20 (2018-11-01)
883
- +++++++++++++++++++++
927
+ *********************
884
928
 
885
929
  Bug fixes:
886
930
 
887
931
  - Includes bug fixes from 2.16.2 and 2.16.3.
888
932
 
889
933
  3.0.0b19 (2018-10-24)
890
- +++++++++++++++++++++
934
+ *********************
891
935
 
892
936
  Features:
893
937
 
@@ -907,7 +951,7 @@ Other changes:
907
951
 
908
952
 
909
953
  3.0.0b18 (2018-10-15)
910
- +++++++++++++++++++++
954
+ *********************
911
955
 
912
956
  Bug fixes:
913
957
 
@@ -921,7 +965,7 @@ Deprecations/Removals:
921
965
 
922
966
 
923
967
  3.0.0b17 (2018-10-13)
924
- +++++++++++++++++++++
968
+ *********************
925
969
 
926
970
  Features:
927
971
 
@@ -945,7 +989,7 @@ Bug fixes:
945
989
  - Includes bug fix from 2.16.0.
946
990
 
947
991
  3.0.0b16 (2018-09-20)
948
- +++++++++++++++++++++
992
+ *********************
949
993
 
950
994
  Bug fixes:
951
995
 
@@ -954,7 +998,7 @@ Bug fixes:
954
998
  for reporting.
955
999
 
956
1000
  3.0.0b15 (2018-09-18)
957
- +++++++++++++++++++++
1001
+ *********************
958
1002
 
959
1003
  Bug fixes:
960
1004
 
@@ -968,7 +1012,7 @@ Bug fixes:
968
1012
  Thanks :user:`tuukkamustonen` for implementing these changes.
969
1013
 
970
1014
  3.0.0b14 (2018-09-15)
971
- +++++++++++++++++++++
1015
+ *********************
972
1016
 
973
1017
  Features:
974
1018
 
@@ -992,7 +1036,7 @@ Other changes:
992
1036
  - Tested against Python 3.7.
993
1037
 
994
1038
  3.0.0b13 (2018-08-04)
995
- +++++++++++++++++++++
1039
+ *********************
996
1040
 
997
1041
  Bug fixes:
998
1042
 
@@ -1013,7 +1057,7 @@ Other changes:
1013
1057
  reporting.
1014
1058
 
1015
1059
  3.0.0b12 (2018-07-04)
1016
- +++++++++++++++++++++
1060
+ *********************
1017
1061
 
1018
1062
  Features:
1019
1063
 
@@ -1046,7 +1090,7 @@ Deprecations/Removals:
1046
1090
  instances from ``Schema.fields``.
1047
1091
 
1048
1092
  3.0.0b11 (2018-05-20)
1049
- +++++++++++++++++++++
1093
+ *********************
1050
1094
 
1051
1095
  Features:
1052
1096
 
@@ -1066,14 +1110,14 @@ Bug fixes:
1066
1110
 
1067
1111
 
1068
1112
  3.0.0b10 (2018-05-10)
1069
- +++++++++++++++++++++
1113
+ *********************
1070
1114
 
1071
1115
  Bug fixes:
1072
1116
 
1073
1117
  - Includes bugfixes from 2.15.2.
1074
1118
 
1075
1119
  3.0.0b9 (2018-04-25)
1076
- ++++++++++++++++++++
1120
+ ********************
1077
1121
 
1078
1122
  Features:
1079
1123
 
@@ -1086,7 +1130,7 @@ Bug fixes:
1086
1130
  - Includes the bugfix from 2.15.1.
1087
1131
 
1088
1132
  3.0.0b8 (2018-03-24)
1089
- ++++++++++++++++++++
1133
+ ********************
1090
1134
 
1091
1135
  Features:
1092
1136
 
@@ -1108,7 +1152,7 @@ Features:
1108
1152
  Thanks :user:`shabble` for the report and thanks :user:`lafrech` for the PR.
1109
1153
 
1110
1154
  3.0.0b7 (2018-02-03)
1111
- ++++++++++++++++++++
1155
+ ********************
1112
1156
 
1113
1157
  Features:
1114
1158
 
@@ -1137,7 +1181,7 @@ Support:
1137
1181
 
1138
1182
 
1139
1183
  3.0.0b6 (2018-01-02)
1140
- ++++++++++++++++++++
1184
+ ********************
1141
1185
 
1142
1186
  Bug fixes:
1143
1187
 
@@ -1153,7 +1197,7 @@ Other changes:
1153
1197
  - ``validate.URL`` requires square brackets around IPv6 URLs (:issue:`707`). Thanks :user:`harlov`.
1154
1198
 
1155
1199
  3.0.0b5 (2017-12-30)
1156
- ++++++++++++++++++++
1200
+ ********************
1157
1201
 
1158
1202
  Features:
1159
1203
 
@@ -1167,7 +1211,7 @@ Other changes:
1167
1211
  ``utils.from_iso_datetime`` (:issue:`694`). Thanks :user:`sklarsa`.
1168
1212
 
1169
1213
  3.0.0b4 (2017-10-23)
1170
- ++++++++++++++++++++
1214
+ ********************
1171
1215
 
1172
1216
  Features:
1173
1217
 
@@ -1186,7 +1230,7 @@ Support:
1186
1230
  for reporting and thanks :user:`yoichi` for the PR.
1187
1231
 
1188
1232
  3.0.0b3 (2017-08-20)
1189
- ++++++++++++++++++++
1233
+ ********************
1190
1234
 
1191
1235
  Features:
1192
1236
 
@@ -1208,7 +1252,7 @@ Support:
1208
1252
  - Add benchmark script. Thanks :user:`rowillia`.
1209
1253
 
1210
1254
  3.0.0b2 (2017-03-19)
1211
- ++++++++++++++++++++
1255
+ ********************
1212
1256
 
1213
1257
  Features:
1214
1258
 
@@ -1223,7 +1267,7 @@ Bug fixes:
1223
1267
  - Includes bug fixes from release 2.13.4.
1224
1268
 
1225
1269
  3.0.0b1 (2017-03-10)
1226
- ++++++++++++++++++++
1270
+ ********************
1227
1271
 
1228
1272
  Features:
1229
1273
 
@@ -1237,7 +1281,7 @@ Other changes:
1237
1281
  - *Backwards-incompatible*: ``skip_on_field_errors`` defaults to ``True`` for ``validates_schema`` (:issue:`352`).
1238
1282
 
1239
1283
  3.0.0a1 (2017-02-26)
1240
- ++++++++++++++++++++
1284
+ ********************
1241
1285
 
1242
1286
  Features:
1243
1287
 
@@ -1259,7 +1303,7 @@ Deprecation/Removals:
1259
1303
  - Remove ``extra`` parameter from ``Schema``. Use a ``@post_dump`` method to add additional data.
1260
1304
 
1261
1305
  2.21.0 (2020-03-05)
1262
- +++++++++++++++++++
1306
+ *******************
1263
1307
 
1264
1308
  Bug fixes:
1265
1309
 
@@ -1271,14 +1315,14 @@ Other changes:
1271
1315
  - Drop support for Python 3.4 (:pr:`1525`).
1272
1316
 
1273
1317
  2.20.5 (2019-09-15)
1274
- +++++++++++++++++++
1318
+ *******************
1275
1319
 
1276
1320
  Bug fixes:
1277
1321
 
1278
1322
  - Fix behavior when a non-list collection is passed to the ``validate`` argument of ``fields.Email`` and ``fields.URL`` (:issue:`1400`).
1279
1323
 
1280
1324
  2.20.4 (2019-09-11)
1281
- +++++++++++++++++++
1325
+ *******************
1282
1326
 
1283
1327
  Bug fixes:
1284
1328
 
@@ -1286,14 +1330,14 @@ Bug fixes:
1286
1330
  Thanks :user:`Kamforka` for reporting.
1287
1331
 
1288
1332
  2.20.3 (2019-09-04)
1289
- +++++++++++++++++++
1333
+ *******************
1290
1334
 
1291
1335
  Bug fixes:
1292
1336
 
1293
1337
  - Don't swallow ``TypeError`` exceptions raised by ``Field._bind_to_schema`` or ``Schema.on_bind_field`` (:pr:`1376`).
1294
1338
 
1295
1339
  2.20.2 (2019-08-20)
1296
- +++++++++++++++++++
1340
+ *******************
1297
1341
 
1298
1342
  Bug fixes:
1299
1343
 
@@ -1301,7 +1345,7 @@ Bug fixes:
1301
1345
  (:pr:`1354`). Thanks :user:`nicktimko` for the PR.
1302
1346
 
1303
1347
  2.20.1 (2019-08-13)
1304
- +++++++++++++++++++
1348
+ *******************
1305
1349
 
1306
1350
  Bug fixes:
1307
1351
 
@@ -1309,7 +1353,7 @@ Bug fixes:
1309
1353
  passed to a nested schema with ``@validates`` (:issue:`1342`).
1310
1354
 
1311
1355
  2.20.0 (2019-08-10)
1312
- +++++++++++++++++++
1356
+ *******************
1313
1357
 
1314
1358
  Bug fixes:
1315
1359
 
@@ -1324,7 +1368,7 @@ Deprecation/Removals:
1324
1368
  - Python 2.6 is no longer officially supported (:issue:`1274`).
1325
1369
 
1326
1370
  2.19.5 (2019-06-18)
1327
- +++++++++++++++++++
1371
+ *******************
1328
1372
 
1329
1373
  Bug fixes:
1330
1374
 
@@ -1332,7 +1376,7 @@ Bug fixes:
1332
1376
  miroseconds (:issue:`1251`). Thanks :user:`diego-plan9` for reporting.
1333
1377
 
1334
1378
  2.19.4 (2019-06-16)
1335
- +++++++++++++++++++
1379
+ *******************
1336
1380
 
1337
1381
  Bug fixes:
1338
1382
 
@@ -1340,7 +1384,7 @@ Bug fixes:
1340
1384
  installed (:issue:`1147`).
1341
1385
 
1342
1386
  2.19.3 (2019-06-15)
1343
- +++++++++++++++++++
1387
+ *******************
1344
1388
 
1345
1389
  Bug fixes:
1346
1390
 
@@ -1349,7 +1393,7 @@ Bug fixes:
1349
1393
  reporting.
1350
1394
 
1351
1395
  2.19.2 (2019-03-30)
1352
- +++++++++++++++++++
1396
+ *******************
1353
1397
 
1354
1398
  Bug fixes:
1355
1399
 
@@ -1357,7 +1401,7 @@ Bug fixes:
1357
1401
  ``fields.Float`` (:pr:`1177`). Thanks :user:`brycedrennan` for the PR.
1358
1402
 
1359
1403
  2.19.1 (2019-03-16)
1360
- +++++++++++++++++++
1404
+ *******************
1361
1405
 
1362
1406
  Bug fixes:
1363
1407
 
@@ -1366,7 +1410,7 @@ Bug fixes:
1366
1410
  catch and patch.
1367
1411
 
1368
1412
  2.19.0 (2019-03-07)
1369
- +++++++++++++++++++
1413
+ *******************
1370
1414
 
1371
1415
  Deprecation/Removal:
1372
1416
 
@@ -1375,7 +1419,7 @@ Deprecation/Removal:
1375
1419
  instead (:issue:`1141`).
1376
1420
 
1377
1421
  2.18.1 (2019-02-15)
1378
- +++++++++++++++++++
1422
+ *******************
1379
1423
 
1380
1424
  Bug fixes:
1381
1425
 
@@ -1384,7 +1428,7 @@ Bug fixes:
1384
1428
  reporting.
1385
1429
 
1386
1430
  2.18.0 (2019-01-13)
1387
- +++++++++++++++++++
1431
+ *******************
1388
1432
 
1389
1433
  Features:
1390
1434
 
@@ -1397,7 +1441,7 @@ Bug fixes:
1397
1441
  duplicate it (:pr:`1099`).
1398
1442
 
1399
1443
  2.17.0 (2018-12-26)
1400
- +++++++++++++++++++
1444
+ *******************
1401
1445
 
1402
1446
  Features:
1403
1447
 
@@ -1406,7 +1450,7 @@ Features:
1406
1450
  prepare for marshmallow 3 (:pr:`1075`).
1407
1451
 
1408
1452
  2.16.3 (2018-11-01)
1409
- +++++++++++++++++++
1453
+ *******************
1410
1454
 
1411
1455
  Bug fixes:
1412
1456
 
@@ -1415,7 +1459,7 @@ Bug fixes:
1415
1459
  reproduce this issue.
1416
1460
 
1417
1461
  2.16.2 (2018-10-30)
1418
- +++++++++++++++++++
1462
+ *******************
1419
1463
 
1420
1464
  Bug fixes:
1421
1465
 
@@ -1424,7 +1468,7 @@ Bug fixes:
1424
1468
  :user:`jmargeta` for the PR.
1425
1469
 
1426
1470
  2.16.1 (2018-10-17)
1427
- +++++++++++++++++++
1471
+ *******************
1428
1472
 
1429
1473
  Bug fixes:
1430
1474
 
@@ -1432,7 +1476,7 @@ Bug fixes:
1432
1476
  (:issue:`998`). Thanks :user:`lalvarezguillen` for reporting.
1433
1477
 
1434
1478
  2.16.0 (2018-10-10)
1435
- +++++++++++++++++++
1479
+ *******************
1436
1480
 
1437
1481
  Bug fixes:
1438
1482
 
@@ -1444,7 +1488,7 @@ Other changes:
1444
1488
  - Drop support for Python 3.3 (:pr:`987`).
1445
1489
 
1446
1490
  2.15.6 (2018-09-20)
1447
- +++++++++++++++++++
1491
+ *******************
1448
1492
 
1449
1493
  Bug fixes:
1450
1494
 
@@ -1458,7 +1502,7 @@ These fixes were backported from 3.0.0b15 and 3.0.0b16.
1458
1502
 
1459
1503
 
1460
1504
  2.15.5 (2018-09-15)
1461
- +++++++++++++++++++
1505
+ *******************
1462
1506
 
1463
1507
  Bug fixes:
1464
1508
 
@@ -1466,7 +1510,7 @@ Bug fixes:
1466
1510
  Thanks :user:`vke-code` for the catch and :user:`YuriHeupa` for the patch.
1467
1511
 
1468
1512
  2.15.4 (2018-08-04)
1469
- +++++++++++++++++++
1513
+ *******************
1470
1514
 
1471
1515
  Bug fixes:
1472
1516
 
@@ -1474,7 +1518,7 @@ Bug fixes:
1474
1518
  (:issue:`748`). Thanks :user:`m-novikov` for the catch and patch.
1475
1519
 
1476
1520
  2.15.3 (2018-05-20)
1477
- +++++++++++++++++++
1521
+ *******************
1478
1522
 
1479
1523
  Bug fixes:
1480
1524
 
@@ -1483,7 +1527,7 @@ Bug fixes:
1483
1527
  :user:`deckar01` for the catch and patch.
1484
1528
 
1485
1529
  2.15.2 (2018-05-10)
1486
- +++++++++++++++++++
1530
+ *******************
1487
1531
 
1488
1532
  Bug fixes:
1489
1533
 
@@ -1498,7 +1542,7 @@ Bug fixes:
1498
1542
  :user:`deckar01` for the fix.
1499
1543
 
1500
1544
  2.15.1 (2018-04-25)
1501
- +++++++++++++++++++
1545
+ *******************
1502
1546
 
1503
1547
  Bug fixes:
1504
1548
 
@@ -1507,7 +1551,7 @@ Bug fixes:
1507
1551
  :user:`lafrech` for the fix.
1508
1552
 
1509
1553
  2.15.0 (2017-12-02)
1510
- +++++++++++++++++++
1554
+ *******************
1511
1555
 
1512
1556
  Bug fixes:
1513
1557
 
@@ -1516,7 +1560,7 @@ Bug fixes:
1516
1560
  suggestion and thanks :user:`4lissonsilveira` for the PR.
1517
1561
 
1518
1562
  2.14.0 (2017-10-23)
1519
- +++++++++++++++++++
1563
+ *******************
1520
1564
 
1521
1565
  Features:
1522
1566
 
@@ -1524,7 +1568,7 @@ Features:
1524
1568
  Thanks :user:`sduthil` for the suggestion and the PR.
1525
1569
 
1526
1570
  2.13.6 (2017-08-16)
1527
- +++++++++++++++++++
1571
+ *******************
1528
1572
 
1529
1573
  Bug fixes:
1530
1574
 
@@ -1532,28 +1576,28 @@ Bug fixes:
1532
1576
  (:issue:`669`). Thanks :user:`MichalKononenko`.
1533
1577
 
1534
1578
  2.13.5 (2017-04-12)
1535
- +++++++++++++++++++
1579
+ *******************
1536
1580
 
1537
1581
  Bug fixes:
1538
1582
 
1539
1583
  - Fix validation of iso8601-formatted dates (:issue:`556`). Thanks :user:`lafrech` for reporting.
1540
1584
 
1541
1585
  2.13.4 (2017-03-19)
1542
- +++++++++++++++++++
1586
+ *******************
1543
1587
 
1544
1588
  Bug fixes:
1545
1589
 
1546
1590
  - Fix symmetry of serialization and deserialization behavior when passing a dot-delimited path to the ``attribute`` parameter of fields (:issue:`450`). Thanks :user:`itajaja` for reporting.
1547
1591
 
1548
1592
  2.13.3 (2017-03-11)
1549
- +++++++++++++++++++
1593
+ *******************
1550
1594
 
1551
1595
  Bug fixes:
1552
1596
 
1553
1597
  - Restore backwards-compatibility of ``SchemaOpts`` constructor (:issue:`597`). Thanks :user:`Wesmania` for reporting and thanks :user:`frol` for the fix.
1554
1598
 
1555
1599
  2.13.2 (2017-03-10)
1556
- +++++++++++++++++++
1600
+ *******************
1557
1601
 
1558
1602
  Bug fixes:
1559
1603
 
@@ -1564,35 +1608,35 @@ Support:
1564
1608
  - Update contributing docs.
1565
1609
 
1566
1610
  2.13.1 (2017-03-04)
1567
- +++++++++++++++++++
1611
+ *******************
1568
1612
 
1569
1613
  Bug fixes:
1570
1614
 
1571
1615
  - Fix sorting on Schema subclasses when ``ordered=True`` (:issue:`592`). Thanks :user:`frol`.
1572
1616
 
1573
1617
  2.13.0 (2017-02-18)
1574
- +++++++++++++++++++
1618
+ *******************
1575
1619
 
1576
1620
  Features:
1577
1621
 
1578
1622
  - Minor optimizations (:issue:`577`). Thanks :user:`rowillia` for the PR.
1579
1623
 
1580
1624
  2.12.2 (2017-01-30)
1581
- +++++++++++++++++++
1625
+ *******************
1582
1626
 
1583
1627
  Bug fixes:
1584
1628
 
1585
1629
  - Unbound fields return `None` rather returning the field itself. This fixes a corner case introduced in :issue:`572`. Thanks :user:`touilleMan` for reporting and :user:`YuriHeupa` for the fix.
1586
1630
 
1587
1631
  2.12.1 (2017-01-23)
1588
- +++++++++++++++++++
1632
+ *******************
1589
1633
 
1590
1634
  Bug fixes:
1591
1635
 
1592
1636
  - Fix behavior when a ``Nested`` field is composed within a ``List`` field (:issue:`572`). Thanks :user:`avish` for reporting and :user:`YuriHeupa` for the PR.
1593
1637
 
1594
1638
  2.12.0 (2017-01-22)
1595
- +++++++++++++++++++
1639
+ *******************
1596
1640
 
1597
1641
  Features:
1598
1642
 
@@ -1600,14 +1644,14 @@ Features:
1600
1644
  - Add ``schemes`` parameter to ``fields.URL`` (:issue:`574`). Thanks :user:`mosquito` for the PR.
1601
1645
 
1602
1646
  2.11.1 (2017-01-08)
1603
- +++++++++++++++++++
1647
+ *******************
1604
1648
 
1605
1649
  Bug fixes:
1606
1650
 
1607
1651
  - Allow ``strict`` class Meta option to be overridden by constructor (:issue:`550`). Thanks :user:`douglas-treadwell` for reporting and thanks :user:`podhmo` for the PR.
1608
1652
 
1609
1653
  2.11.0 (2017-01-08)
1610
- +++++++++++++++++++
1654
+ *******************
1611
1655
 
1612
1656
  Features:
1613
1657
 
@@ -1619,7 +1663,7 @@ Support:
1619
1663
  - Test against Python 3.6.
1620
1664
 
1621
1665
  2.10.5 (2016-12-19)
1622
- +++++++++++++++++++
1666
+ *******************
1623
1667
 
1624
1668
  Bug fixes:
1625
1669
 
@@ -1630,21 +1674,21 @@ Support:
1630
1674
  - Tests: Fix redefinition of ``test_utils.test_get_value()`` (:issue:`562`). Thanks :user:`nelfin`.
1631
1675
 
1632
1676
  2.10.4 (2016-11-18)
1633
- +++++++++++++++++++
1677
+ *******************
1634
1678
 
1635
1679
  Bug fixes:
1636
1680
 
1637
1681
  - `Function` field works with callables that use Python 3 type annotations (:issue:`540`). Thanks :user:`martinstein` for reporting and thanks :user:`sabinem`, :user:`lafrech`, and :user:`maximkulkin` for the work on the PR.
1638
1682
 
1639
1683
  2.10.3 (2016-10-02)
1640
- +++++++++++++++++++
1684
+ *******************
1641
1685
 
1642
1686
  Bug fixes:
1643
1687
 
1644
1688
  - Fix behavior for serializing missing data with ``Number`` fields when ``as_string=True`` is passed (:issue:`538`). Thanks :user:`jessemyers` for reporting.
1645
1689
 
1646
1690
  2.10.2 (2016-09-25)
1647
- +++++++++++++++++++
1691
+ *******************
1648
1692
 
1649
1693
  Bug fixes:
1650
1694
 
@@ -1652,7 +1696,7 @@ Bug fixes:
1652
1696
  - Fix UUID validation on serialization and deserialization of ``uuid.UUID`` objects (:issue:`532`). Thanks :user:`pauljz`.
1653
1697
 
1654
1698
  2.10.1 (2016-09-14)
1655
- +++++++++++++++++++
1699
+ *******************
1656
1700
 
1657
1701
  Bug fixes:
1658
1702
 
@@ -1661,14 +1705,14 @@ Bug fixes:
1661
1705
  - Fix validation of nested fields on dumping (:issue:`528`). Thanks again :user:`tvuotila`.
1662
1706
 
1663
1707
  2.10.0 (2016-09-05)
1664
- +++++++++++++++++++
1708
+ *******************
1665
1709
 
1666
1710
  Features:
1667
1711
 
1668
1712
  - Errors raised by pre/post-load/dump methods will be added to a schema's errors dictionary (:issue:`472`). Thanks :user:`dbertouille` for the suggestion and for the PR.
1669
1713
 
1670
1714
  2.9.1 (2016-07-21)
1671
- ++++++++++++++++++
1715
+ ******************
1672
1716
 
1673
1717
  Bug fixes:
1674
1718
 
@@ -1676,12 +1720,12 @@ Bug fixes:
1676
1720
  - Make ``@validates`` consistent with field validator behavior: if validation fails, the field will not be included in the deserialized output (:issue:`391`). Thanks :user:`martinstein` for reporting and thanks :user:`vuonghv` for the fix.
1677
1721
 
1678
1722
  2.9.0 (2016-07-06)
1679
- ++++++++++++++++++
1723
+ ******************
1680
1724
 
1681
1725
  - ``Decimal`` field coerces input values to a string before deserializing to a `decimal.Decimal` object in order to avoid transformation of float values under 12 significant digits (:issue:`434`, :issue:`435`). Thanks :user:`davidthornton` for the PR.
1682
1726
 
1683
1727
  2.8.0 (2016-06-23)
1684
- ++++++++++++++++++
1728
+ ******************
1685
1729
 
1686
1730
  Features:
1687
1731
 
@@ -1692,12 +1736,12 @@ Support:
1692
1736
  - Update tasks.py for compatibility with invoke>=0.13.0. Thanks :user:`deckar01`.
1693
1737
 
1694
1738
  2.7.3 (2016-05-05)
1695
- ++++++++++++++++++
1739
+ ******************
1696
1740
 
1697
1741
  - Make ``field.parent`` and ``field.name`` accessible to ``on_bind_field`` (:issue:`449`). Thanks :user:`immerrr`.
1698
1742
 
1699
1743
  2.7.2 (2016-04-27)
1700
- ++++++++++++++++++
1744
+ ******************
1701
1745
 
1702
1746
  No code changes in this release. This is a reupload in order to distribute an sdist for the last hotfix release. See :issue:`443`.
1703
1747
 
@@ -1706,7 +1750,7 @@ Support:
1706
1750
  - Update license entry in setup.py to fix RPM distributions (:issue:`433`). Thanks :user:`rrajaravi` for reporting.
1707
1751
 
1708
1752
  2.7.1 (2016-04-08)
1709
- ++++++++++++++++++
1753
+ ******************
1710
1754
 
1711
1755
  Bug fixes:
1712
1756
 
@@ -1714,7 +1758,7 @@ Bug fixes:
1714
1758
  constructed dynamically using the ``type`` constructor without getting added to the class registry (which is useful for saving memory).
1715
1759
 
1716
1760
  2.7.0 (2016-04-04)
1717
- ++++++++++++++++++
1761
+ ******************
1718
1762
 
1719
1763
  Features:
1720
1764
 
@@ -1726,14 +1770,14 @@ Other changes:
1726
1770
  - Remove unused attributes ``root``, ``parent``, and ``name`` from ``SchemaABC`` (:issue:`410`). Thanks :user:`Tim-Erwin` for the PR.
1727
1771
 
1728
1772
  2.6.1 (2016-03-17)
1729
- ++++++++++++++++++
1773
+ ******************
1730
1774
 
1731
1775
  Bug fixes:
1732
1776
 
1733
1777
  - Respect ``load_from`` when reporting errors for nested required fields (:issue:`414`). Thanks :user:`yumike`.
1734
1778
 
1735
1779
  2.6.0 (2016-02-01)
1736
- ++++++++++++++++++
1780
+ ******************
1737
1781
 
1738
1782
  Features:
1739
1783
 
@@ -1742,7 +1786,7 @@ Features:
1742
1786
  - Collect all validation errors for each item deserialized by a ``List`` field (:issue:`345`). Thanks :user:`maximkulkin` for the report and the PR.
1743
1787
 
1744
1788
  2.5.0 (2016-01-16)
1745
- ++++++++++++++++++
1789
+ ******************
1746
1790
 
1747
1791
  Features:
1748
1792
 
@@ -1750,21 +1794,21 @@ Features:
1750
1794
  - Add ``schemes`` argument to ``validate.URL`` (:issue:`356`).
1751
1795
 
1752
1796
  2.4.2 (2015-12-08)
1753
- ++++++++++++++++++
1797
+ ******************
1754
1798
 
1755
1799
  Bug fixes:
1756
1800
 
1757
1801
  - Prevent duplicate error messages when validating nested collections (:issue:`360`). Thanks :user:`alexmorken` for the catch and patch.
1758
1802
 
1759
1803
  2.4.1 (2015-12-07)
1760
- ++++++++++++++++++
1804
+ ******************
1761
1805
 
1762
1806
  Bug fixes:
1763
1807
 
1764
1808
  - Serializing an iterator will not drop the first item (:issue:`343`, :issue:`353`). Thanks :user:`jmcarp` for the patch. Thanks :user:`edgarallang` and :user:`jmcarp` for reporting.
1765
1809
 
1766
1810
  2.4.0 (2015-12-06)
1767
- ++++++++++++++++++
1811
+ ******************
1768
1812
 
1769
1813
  Features:
1770
1814
 
@@ -1776,7 +1820,7 @@ Bug fixes:
1776
1820
  - Fix ``@validates`` behavior when used when ``attribute`` is specified and ``strict=True`` (:issue:`350`). Thanks :user:`density` for reporting.
1777
1821
 
1778
1822
  2.3.0 (2015-11-22)
1779
- ++++++++++++++++++
1823
+ ******************
1780
1824
 
1781
1825
  Features:
1782
1826
 
@@ -1793,14 +1837,14 @@ Deprecation/Removal:
1793
1837
  ``func`` and ``method_name`` are still present for backwards-compatibility, but they will both be removed in marshmallow 3.0.
1794
1838
 
1795
1839
  2.2.1 (2015-11-11)
1796
- ++++++++++++++++++
1840
+ ******************
1797
1841
 
1798
1842
  Bug fixes:
1799
1843
 
1800
1844
  - Skip field validators for fields that aren't included in ``only`` (:issue:`320`). Thanks :user:`carlos-alberto` for reporting and :user:`eprikazc` for the PR.
1801
1845
 
1802
1846
  2.2.0 (2015-10-26)
1803
- ++++++++++++++++++
1847
+ ******************
1804
1848
 
1805
1849
  Features:
1806
1850
 
@@ -1817,14 +1861,14 @@ Support:
1817
1861
  - Add "Customizing Error Messages" section to custom fields docs.
1818
1862
 
1819
1863
  2.1.3 (2015-10-18)
1820
- ++++++++++++++++++
1864
+ ******************
1821
1865
 
1822
1866
  Bug fixes:
1823
1867
 
1824
1868
  - Fix serialization of collections for which ``iter`` will modify position, e.g. Pymongo cursors (:issue:`303`). Thanks :user:`Mise` for the catch and patch.
1825
1869
 
1826
1870
  2.1.2 (2015-10-14)
1827
- ++++++++++++++++++
1871
+ ******************
1828
1872
 
1829
1873
  Bug fixes:
1830
1874
 
@@ -1832,14 +1876,14 @@ Bug fixes:
1832
1876
  - Fix usage of ``@validates`` with a nested field when ``many=True`` (:issue:`298`). Thanks :user:`nelfin` for the catch and patch.
1833
1877
 
1834
1878
  2.1.1 (2015-10-07)
1835
- ++++++++++++++++++
1879
+ ******************
1836
1880
 
1837
1881
  Bug fixes:
1838
1882
 
1839
1883
  - ``Constant`` field deserializes to its value regardless of whether its field name is present in input data (:issue:`291`). Thanks :user:`fayazkhan` for reporting.
1840
1884
 
1841
1885
  2.1.0 (2015-09-30)
1842
- ++++++++++++++++++
1886
+ ******************
1843
1887
 
1844
1888
  Features:
1845
1889
 
@@ -1861,7 +1905,7 @@ Other changes:
1861
1905
  - A ``List's`` inner field will have the list field set as its parent. Use ``root`` to access the ``Schema``.
1862
1906
 
1863
1907
  2.0.0 (2015-09-25)
1864
- ++++++++++++++++++
1908
+ ******************
1865
1909
 
1866
1910
  Features:
1867
1911
 
@@ -1890,7 +1934,7 @@ Changes from 2.0.0rc2:
1890
1934
  - Bug fix: Prevent infinite loop when validating a required, self-nested field. Thanks :user:`Bachmann1234` for the fix.
1891
1935
 
1892
1936
  2.0.0rc2 (2015-09-16)
1893
- +++++++++++++++++++++
1937
+ *********************
1894
1938
 
1895
1939
  Deprecation/Removals:
1896
1940
 
@@ -1908,7 +1952,7 @@ Changes from 2.0.0rc1:
1908
1952
  - Methods decorated with the ``pre_*``, ``post_*``, and ``validates_*`` decorators must be instance methods. Class methods and instance methods are not supported at this time.
1909
1953
 
1910
1954
  2.0.0rc1 (2015-09-13)
1911
- +++++++++++++++++++++
1955
+ *********************
1912
1956
 
1913
1957
  Features:
1914
1958
 
@@ -1936,7 +1980,7 @@ Support:
1936
1980
  - Test against Python 3.5.
1937
1981
 
1938
1982
  2.0.0b5 (2015-08-23)
1939
- ++++++++++++++++++++
1983
+ ********************
1940
1984
 
1941
1985
  Features:
1942
1986
 
@@ -1957,7 +2001,7 @@ Other changes:
1957
2001
  - ``Email`` validator permits email addresses with non-ASCII characters, as per RFC 6530 (:issue:`221`). Thanks :user:`lextoumbourou` for reporting and :user:`mwstobo` for sending the patch.
1958
2002
 
1959
2003
  2.0.0b4 (2015-07-07)
1960
- ++++++++++++++++++++
2004
+ ********************
1961
2005
 
1962
2006
  Features:
1963
2007
 
@@ -1977,7 +2021,7 @@ Changes from 2.0.0b3:
1977
2021
  - If ``load_from`` is used on deserialization, the value of ``load_from`` is used as the key in the errors dict (:issue:`232`). Thanks :user:`alexmorken`.
1978
2022
 
1979
2023
  2.0.0b3 (2015-06-14)
1980
- +++++++++++++++++++++
2024
+ *********************
1981
2025
 
1982
2026
  Features:
1983
2027
 
@@ -2014,7 +2058,7 @@ Changes from 2.0.0b2:
2014
2058
  - Implicit passing of original, raw data to Schema validators is removed. Use ``@marshmallow.validates_schema(pass_original=True)`` instead.
2015
2059
 
2016
2060
  2.0.0b2 (2015-05-03)
2017
- ++++++++++++++++++++
2061
+ ********************
2018
2062
 
2019
2063
  Features:
2020
2064
 
@@ -2028,7 +2072,7 @@ Changes from 2.0.0b1:
2028
2072
  Includes bug fixes from 1.2.6.
2029
2073
 
2030
2074
  2.0.0b1 (2015-04-26)
2031
- ++++++++++++++++++++
2075
+ ********************
2032
2076
 
2033
2077
  Features:
2034
2078
 
@@ -2045,7 +2089,7 @@ Changes from 2.0.0a1:
2045
2089
  - Fix serialization of `None` for ``fields.Email``.
2046
2090
 
2047
2091
  2.0.0a1 (2015-04-25)
2048
- ++++++++++++++++++++
2092
+ ********************
2049
2093
 
2050
2094
  Features:
2051
2095
 
@@ -2084,7 +2128,7 @@ Other changes:
2084
2128
  - Make ``allow_null=True`` the default for ``Nested`` fields. This will make ``None`` serialize to ``None`` rather than a dictionary with empty values (:issue:`132`). Thanks :user:`nickrellack` for the suggestion.
2085
2129
 
2086
2130
  1.2.6 (2015-05-03)
2087
- ++++++++++++++++++
2131
+ ******************
2088
2132
 
2089
2133
  Bug fixes:
2090
2134
 
@@ -2092,7 +2136,7 @@ Bug fixes:
2092
2136
  - Allow error message for ``fields.Boolean`` to be customized with the ``error`` parameter (like other fields).
2093
2137
 
2094
2138
  1.2.5 (2015-04-25)
2095
- ++++++++++++++++++
2139
+ ******************
2096
2140
 
2097
2141
  Bug fixes:
2098
2142
 
@@ -2103,7 +2147,7 @@ Support:
2103
2147
  - Fix pep8 dev dependency for flake8. Thanks :user:`taion`.
2104
2148
 
2105
2149
  1.2.4 (2015-03-22)
2106
- ++++++++++++++++++
2150
+ ******************
2107
2151
 
2108
2152
  Bug fixes:
2109
2153
 
@@ -2118,14 +2162,14 @@ Support:
2118
2162
  - Correction to ``_postprocess`` method in docs. Thanks again :user:`taion`.
2119
2163
 
2120
2164
  1.2.3 (2015-03-15)
2121
- ++++++++++++++++++
2165
+ ******************
2122
2166
 
2123
2167
  Bug fixes:
2124
2168
 
2125
2169
  - Fix inheritance of ``ordered`` class Meta option (:issue:`162`). Thanks :user:`stephenfin` for reporting.
2126
2170
 
2127
2171
  1.2.2 (2015-02-23)
2128
- ++++++++++++++++++
2172
+ ******************
2129
2173
 
2130
2174
  Bug fixes:
2131
2175
 
@@ -2133,7 +2177,7 @@ Bug fixes:
2133
2177
  - Fix bug that could cause an ``AttributeError`` when nesting schemas with schema-level validators (:issue:`144`). Thanks :user:`vovanbo` for reporting.
2134
2178
 
2135
2179
  1.2.1 (2015-01-11)
2136
- ++++++++++++++++++
2180
+ ******************
2137
2181
 
2138
2182
  Bug fixes:
2139
2183
 
@@ -2141,7 +2185,7 @@ Bug fixes:
2141
2185
  - Deserializing `None` returns `None` rather than raising an ``AttributeError`` (:issue:`123`). Thanks :user:`RealSalmon` for the catch and patch.
2142
2186
 
2143
2187
  1.2.0 (2014-12-22)
2144
- ++++++++++++++++++
2188
+ ******************
2145
2189
 
2146
2190
  Features:
2147
2191
 
@@ -2176,7 +2220,7 @@ Support:
2176
2220
 
2177
2221
 
2178
2222
  1.1.0 (2014-12-02)
2179
- ++++++++++++++++++
2223
+ ******************
2180
2224
 
2181
2225
  Features:
2182
2226
 
@@ -2198,14 +2242,14 @@ Support:
2198
2242
  - Update Flask and Peewee examples.
2199
2243
 
2200
2244
  1.0.1 (2014-11-18)
2201
- ++++++++++++++++++
2245
+ ******************
2202
2246
 
2203
2247
  Hotfix release.
2204
2248
 
2205
2249
  - Ensure that errors dictionary is correctly cleared on each call to ``Schema.dump`` and ``Schema.load``.
2206
2250
 
2207
2251
  1.0.0 (2014-11-16)
2208
- ++++++++++++++++++
2252
+ ******************
2209
2253
 
2210
2254
  Adds new features, speed improvements, better error handling, and updated documentation.
2211
2255
 
@@ -2224,7 +2268,7 @@ Adds new features, speed improvements, better error handling, and updated docume
2224
2268
  - Updated docs.
2225
2269
 
2226
2270
  1.0.0-a (2014-10-19)
2227
- ++++++++++++++++++++
2271
+ ********************
2228
2272
 
2229
2273
  Major reworking and simplification of the public API, centered around support for deserialization, improved validation, and a less stateful ``Schema`` class.
2230
2274
 
@@ -2254,7 +2298,7 @@ Major reworking and simplification of the public API, centered around support fo
2254
2298
  * Add ``Str``, ``Bool``, and ``Int`` field class aliases.
2255
2299
 
2256
2300
  0.7.0 (2014-06-22)
2257
- ++++++++++++++++++
2301
+ ******************
2258
2302
 
2259
2303
  * Add ``Serializer.error_handler`` decorator that registers a custom error handler.
2260
2304
  * Add ``Serializer.data_handler`` decorator that registers data post-processing callbacks.
@@ -2265,14 +2309,14 @@ Major reworking and simplification of the public API, centered around support fo
2265
2309
  * ``validated`` decorator should only wrap a ``Field`` class's ``output`` method.
2266
2310
 
2267
2311
  0.6.0 (2014-06-03)
2268
- ++++++++++++++++++
2312
+ ******************
2269
2313
 
2270
2314
  * Fix bug in serializing keyed tuple types, e.g. ``namedtuple`` and ``KeyedTuple``.
2271
2315
  * Nested field can load a serializer by its class name as a string. This makes it easier to implement 2-way nesting.
2272
2316
  * Make ``Serializer.data`` override-able.
2273
2317
 
2274
2318
  0.5.5 (2014-05-02)
2275
- ++++++++++++++++++
2319
+ ******************
2276
2320
 
2277
2321
  * Add ``Serializer.factory`` for creating a factory function that returns a Serializer instance.
2278
2322
  * ``MarshallingError`` stores its underlying exception as an instance variable. This is useful for inspecting errors.
@@ -2282,14 +2326,14 @@ Major reworking and simplification of the public API, centered around support fo
2282
2326
  * Add ``Serializer.process_data`` hook that allows subclasses to manipulate the final output data.
2283
2327
 
2284
2328
  0.5.4 (2014-04-17)
2285
- ++++++++++++++++++
2329
+ ******************
2286
2330
 
2287
2331
  * Add ``json_module`` class Meta option.
2288
2332
  * Add ``required`` option to fields . Thanks :user:`DeaconDesperado`.
2289
2333
  * Tested on Python 3.4 and PyPy.
2290
2334
 
2291
2335
  0.5.3 (2014-03-02)
2292
- ++++++++++++++++++
2336
+ ******************
2293
2337
 
2294
2338
  * Fix ``Integer`` field default. It is now ``0`` instead of ``0.0``. Thanks :user:`kalasjocke`.
2295
2339
  * Add ``context`` param to ``Serializer``. Allows accessing arbitrary objects in ``Function`` and ``Method`` fields.
@@ -2297,19 +2341,19 @@ Major reworking and simplification of the public API, centered around support fo
2297
2341
 
2298
2342
 
2299
2343
  0.5.2 (2014-02-10)
2300
- ++++++++++++++++++
2344
+ ******************
2301
2345
 
2302
2346
  * Enable custom field validation via the ``validate`` parameter.
2303
2347
  * Add ``utils.from_rfc`` for parsing RFC datestring to Python datetime object.
2304
2348
 
2305
2349
  0.5.1 (2014-02-02)
2306
- ++++++++++++++++++
2350
+ ******************
2307
2351
 
2308
2352
  * Avoid unnecessary attribute access in ``utils.to_marshallable_type`` for improved performance.
2309
2353
  * Fix RFC822 formatting for localized datetimes.
2310
2354
 
2311
2355
  0.5.0 (2013-12-29)
2312
- ++++++++++++++++++
2356
+ ******************
2313
2357
 
2314
2358
  * Can customize validation error messages by passing the ``error`` parameter to a field.
2315
2359
  * *Backwards-incompatible*: Rename ``fields.NumberField`` -> ``fields.Number``.
@@ -2320,7 +2364,7 @@ Major reworking and simplification of the public API, centered around support fo
2320
2364
  * Improved performance and stability.
2321
2365
 
2322
2366
  0.4.1 (2013-12-01)
2323
- ++++++++++++++++++
2367
+ ******************
2324
2368
 
2325
2369
  * An object's ``__marshallable__`` method, if defined, takes precedence over ``__getitem__``.
2326
2370
  * Generator expressions can be passed to a serializer.
@@ -2328,7 +2372,7 @@ Major reworking and simplification of the public API, centered around support fo
2328
2372
  * Other minor bugfixes.
2329
2373
 
2330
2374
  0.4.0 (2013-11-24)
2331
- ++++++++++++++++++
2375
+ ******************
2332
2376
 
2333
2377
  * Add ``additional`` `class Meta` option.
2334
2378
  * Add ``dateformat`` `class Meta` option.
@@ -2344,7 +2388,7 @@ Major reworking and simplification of the public API, centered around support fo
2344
2388
  * Fix bug with passing ``None`` to a serializer.
2345
2389
 
2346
2390
  0.3.1 (2013-11-16)
2347
- ++++++++++++++++++
2391
+ ******************
2348
2392
 
2349
2393
  * Fix bug with serializing dictionaries.
2350
2394
  * Fix error raised when serializing empty list.
@@ -2353,7 +2397,7 @@ Major reworking and simplification of the public API, centered around support fo
2353
2397
  * Updated Flask + SQLA example in docs.
2354
2398
 
2355
2399
  0.3.0 (2013-11-14)
2356
- ++++++++++++++++++
2400
+ ******************
2357
2401
 
2358
2402
  * Declaring Serializers just got easier. The ``class Meta`` paradigm allows you to specify fields more concisely. Can specify ``fields`` and ``exclude`` options.
2359
2403
  * Allow date formats to be changed by passing ``format`` parameter to ``DateTime`` field constructor. Can either be ``"rfc"`` (default), ``"iso"``, or a date format string.
@@ -2362,14 +2406,14 @@ Major reworking and simplification of the public API, centered around support fo
2362
2406
  * Rename ``marshmallow.core`` -> ``marshmallow.serializer``.
2363
2407
 
2364
2408
  0.2.1 (2013-11-12)
2365
- ++++++++++++++++++
2409
+ ******************
2366
2410
 
2367
2411
  * Allow prefixing field names.
2368
2412
  * Fix storing errors on Nested Serializers.
2369
2413
  * Python 2.6 support.
2370
2414
 
2371
2415
  0.2.0 (2013-11-11)
2372
- ++++++++++++++++++
2416
+ ******************
2373
2417
 
2374
2418
  * Field-level validation.
2375
2419
  * Add ``fields.Method``.
@@ -2378,6 +2422,6 @@ Major reworking and simplification of the public API, centered around support fo
2378
2422
  * Add ``relative`` parameter to ``fields.Url`` that allows for relative URLs.
2379
2423
 
2380
2424
  0.1.0 (2013-11-10)
2381
- ++++++++++++++++++
2425
+ ******************
2382
2426
 
2383
2427
  * First release.