forked from apiguy/flask-classy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
64 lines (43 loc) · 1.89 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
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