-
Notifications
You must be signed in to change notification settings - Fork 0
/
RELEASE_NOTES
144 lines (107 loc) · 4.73 KB
/
RELEASE_NOTES
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
Copyright 2009 by Accense Technology, Inc
Takashi Matsuo <tmatsuo@candit.jp>
All rights reserved.
Kay framework - Release Notes
Kay-1.1.0 - March 7th 2011
=====================================
- Improved exception and error handling.
- Added a new kay.ext.ereporter application for managing error reporting.
- Added a new kay.ext.live_settings application for managing global settings
without having to reploy.
- Added a new AppStatsMiddleware which can be used to enable appstats.
- Added a new Pagination API
- Added the COOKIE_SECURE setting to support secure session cookies (Issue #90)
- Added a new timezone_functions context processor.
- Added a new cron_only view decorator for securing cron views.
- Lazy load jinja2 so that requests that don't require jinja2 can return faster.
- Updated google SDK taskqueue imports to import from the new package name.
- Fixed an issue where the django module could not be loaded.
Kay-1.0.0 - July 7th 2010
=============================
- Model driven RESTful API auto generation
- Model driven CRUD+list auto generation
- A new authentication backend for OpenID, OAuth, Facebook connect
- You can also write apps for Google Apps MarketPlace easily
- A brand new URL mapping syntax which is more intuitable than before
http://kay-docs.shehas.net/urlmapping.html#introducing-a-new-interface-for-urlmapping
- Added some useful properties such as OwnerProperty
- Fully functional test helper
- A new test runner allows you to
- run your tests by web browser
- run your tests on production environment
- Now you can add your own management script
- Nuke is bundled in Kay now.
- Nuke is a small web handler for wiping the datastore completely
- Nuke is hosted at: http://code.google.com/p/jobfeed/wiki/Nuke
- Detailed instructions:
http://kay-docs.shehas.net/extensions.html#module-kay.ext.nuke
- Many small improvements and bug fixes
Kay-0.8.0 - March 31, 2010
=============================
- Added login_box context processor and render_loginbox macro to
kay.auth module.
- Added a media_compressor extension.
- Improved a process for detecting user's preferred language.
- Added a jsonrpc2 extension.
- Improved db_hook feature.
- Added password changing/resetting capabilities.
- Added a capability for changing entire settings according to the
host part of the URL.
- Added a flash (quick indicator, not Adobe's flash) library
- Added a handler for blobstore upload/download.
- Added a registration application.
- Allow defining class based handler as tuple which has
(handler_name, args, kwargs) style.
- Allow disabling automount feature by setting None in
APP_MOUNT_POINTS explicitly.
- Added task_handler for deferred library that corresponds with
kay's rules.
- Moved auth backend classes from kay.auth.backend module to
kay.auth.backends package.
- Various improvements.
- Notice about this release
- kay.auth.backend module is now deprecated. Please use
kay.auth.backends package instead.
Kay-0.3.0 - October 27, 2009
=============================
- Added CacheMiddleware, cache_page decorator and FragmentCache
jinja2 extension.
- Added SecureCookieSessionStore.
- Added handler for InboundMail
- Capability for customizing Jinja2 environ
- Now views can be defined as strings for lazy loading
- Users can migrate data from an appid to another one very easily
- Added kay.auth.GoogleBackend
- More documentations available.
- Added --all option to i18n related scripts.
- Fixed testing environment was partially broken.
- Allow users to choose a xhtml renderer for rendering forms.
- More and more lazy loading of modules.
- Notice about this release
- GoogleAuthenticationMiddleware is obsolete. Please migrate it to
AuthenticationMiddleware and GoogleBackend combination. See URL
bellow for more details:
http://kay-docs.shehas.net/auth.html#using-google-account-authentication
- Changed options of some i18n related scripts. Please refer to
URL bellow for more details:
http://kay-docs.shehas.net/manage_py.html
Kay-0.2.0 - September 23, 2009
==============================
- Added handers for XMPP
- Added clear_datastore action
- Added create_user action
- Added dump_all/restore_all action
- Added a capability for adding custom jinja2 filters
- Added a capability for setting user's preffered language explicitly.
- Documentation sites started.
Kay-0.1.0 - August 27, 2009
===========================
- Added db_hook feature.
- Added zh_TW translations.
- Improved i18n mechanism.
- Implemented authentication backend.
- Fixed many bugs.
- Changed the copyright declaration.
Kay-0.0.0 - July 7, 2009
========================
- First release.