-
Notifications
You must be signed in to change notification settings - Fork 68
/
CHANGELOG
148 lines (97 loc) · 4.11 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
2013-10-22 Freedom Dumlao <freeedomdumlao@gmail.com>
Version 0.6.5
- Bugfixes:
* Fixes a bug introduced around certain types of decorators.
Adds more tests for those cases as well.
2013-10-22 Freedom Dumlao <freeedomdumlao@gmail.com>
Version 0.6.4
- Features:
* Added route_prefix, a feature that allows you to
specify a prefix for all the routes generated by
a FlaskView instance.
- Bugfixes:
* Fixes some bugs related to self referential
decorators.
- Thanks:
* Thanks to Stephane Rufer for the idea for
route_prefix.
2013-6-13 Freedom Dumlao <freedomdumlao@gmail.com>
Version 0.6.3
- Features:
* Python 3.3 and Flask 0.10 is now supported.
- Bugfixes
* Fixed a that would cause FlaskViews without route_base
attributes to fail to revert to that state after
having them registered with a route_base in the register
method.
- Thanks:
* Thanks to Ivan Kleshnin, who reported the bug.
2013-6-10 Freedom Dumlao <freedomdumlao@gmail.com>
Version 0.6.1
- Bugfixes
* Fixed a bug when raising the DecoratorCompatibilityError.
- Thanks:
* Thanks to Ivan Kleshnin, who found and fixed the bug.
2013-6-5 Freedom Dumlao <freedomdumlao@gmail.com>
Version 0.6
- **Breaking Changes**
* Classmethods are filtered out when determining which methods
should be routeable.
- Features
* FlaskViews now support a "decorators" attribute which takes a list
of decorators to apply to every method in that view.
* The route_base now supports arguments.
(Thanks to Philip Schleihauf)
- Bugfixes
* Fixed a bug that prevented Flask-Classy from generating routes for
methods that had used a decorator but did not also use the @route
decorator.
(Thanks to Shuhao Wu for reporting)
* view_args dict modifications made before the FlaskView view is called
are now available in the FlaskView.
(Thanks to Philip Schleihauf)
- Thanks:
* Thanks to Max Countryman, Julien Rebetez, Philip Schleihauf, and Shuhao Wu
2012-11-29 Freedom Dumlao <freedomdumlao@gmail.com>
Version 0.5.2
- Bugfixes
* Fixed a SyntaxError that was caused by using a dictionary generator
in Python versions earlier than 2.7.
(Thanks to @maxcountryman)
2012-11-20 Freedom Dumlao <freedomdumlao@gmail.com>
Version 0.5.1
- Bugfixes
* Fixed a bug that caused views that used the @route decorator to
ignore the subdomain keyword parameter specified in the
FlaskView's register method.
(Thanks to Mark Grey for reporting.)
2012-11-18 Freedom Dumlao <freedomdumlao@gmail.com>
Version 0.5
- **Breaking Changes**
* Changed the way routes are generated to match up with Flask
documentation. index, post and custom methods without parameters
are still configured with a trailing slash. put, patch, get,
delete, and custom methods with parameters are configured without
a trailing slash now.
* Changed the way endpoints are generated to accommodate the more
common cases. Methods with a single route are no longer have
endpoints suffixed with an index.
(Thanks to Jesaja Everling for the original patch.)
- Features
* Added support for specifying a custom endpoint using an endpoint
keyword argument in the @route decorator.
- Bugfixes
* Fixed a bug that would not allow you to use any parameter name
but "id" in the special methods.
2012-11-11 Freedom Dumlao <freedomdumlao@gmail.com>
Version 0.4.3
- Features
* Added wrapper methods for views
- Bugfixes
* Fixed a bug that caused blueprint subdomains to be ignored
2012-11-05 Freedom Dumlao <freedomdumlao@gmail.com>
Version 0.4
* Added support for subdomains
2012-11-1 Freedom Dumlao <freedomdumlao@gmail.com>
Version 0.3.4
* Added PATCH support