Add API Framework Revel Source Files
[iec.git] / src / foundation / api / revel / CHANGELOG.md
1 # CHANGELOG
2
3 ## v0.19.0
4 # Release 0.19.0
5
6 # Maintenance Release
7
8 This release is focused on improving the security and resolving some issues. 
9
10 **There are no breaking changes from version 0.18**
11
12 [[revel/cmd](https://github.com/revel/cmd)]
13 * Improved vendor folder detection revel/cmd#117
14 * Added ordering of controllers so order remains consistent in main.go revel/cmd#112
15 * Generate same value of `AppVersion` regardless of where Revel is run revel/cmd#108
16 * Added referrer policy security header revel/cmd#114
17
18 [[revel/modules](https://github.com/revel/modules)]
19 * Added directory representation to static module revel/modules#46
20 * Gorp enhancements (added abstraction layer for transactions and database connection so both can be used), Added security fix for CSRF module revel/modules#68
21 * Added authorization configuration options to job page revel/modules#44
22
23 [[revel/examples](https://github.com/revel/examples)]
24 * General improvements and examples added revel/examples#39  revel/examples#40
25
26 ## v0.18
27 # Release 0.18
28
29 ## Upgrade path
30 The main breaking change is the removal of `http.Request` from the `revel.Request` object.
31 Everything else should just work....
32
33 ## New items
34 * Server Engine revel/revel#998
35 The server engine implementation is described in the [docs](http://revel.github.io/manual/server-engine.html)
36 * Allow binding to a structured map. revel/revel#998 
37 Have a structure inside a map object which will be realized properly from params
38 * Gorm module revel/modules/#51
39 Added transaction controller
40 * Gorp module revel/modules/#52
41 * Autorun on startup in develop mode revel/cmd#95
42 Start the application without doing a request first using revel run ....
43 * Logger update revel/revel#1213
44 Configurable logger and added context logging on controller via controller.Log
45 * Before after finally panic controller method detection revel/revel#1211 
46 Controller methods will be automatically detected and called - similar to interceptors but without the extra code
47 * Float validation revel/revel#1209
48 Added validation for floats
49 * Timeago template function revel/revel#1207
50 Added timeago function to Revel template functions
51 * Authorization to jobs module revel/module#44
52 Added ability to specify authorization to access the jobs module routes
53 * Add MessageKey, ErrorKey methods to ValidationResult object revel/revel#1215
54 This allows the message translator to translate the keys added. So model objects can send out validation codes
55 * Vendor friendlier - Revel recognizes and uses `deps` (to checkout go libraries) if a vendor folder exists in the project root. 
56 * Updated examples to use Gorp modules and new loggers
57
58
59 ### Breaking Changes
60
61 * `http.Request` is no longer contained in `revel.Request` revel.Request remains functionally the same but 
62 you cannot extract the `http.Request` from it. You can get the `http.Request` from `revel.Controller.Request.In.GetRaw().(*http.Request)`
63 * `http.Response.Out` Is not the http.Response and is deprecated, you can get the output writer by doing `http.Response.GetWriter()`. You can get the `http.Response` from revel.Controller.Response.Out.Server.GetRaw().(*http.Response)`
64
65 * `Websocket` changes. `revel.ServerWebsocket` is the new type of object you need to declare for controllers 
66 which should need to attach to websockets. Implementation of these objects have been simplified
67
68 Old
69 ```
70
71 func (c WebSocket) RoomSocket(user string, ws *websocket.Conn) revel.Result {
72         // Join the room.
73         subscription := chatroom.Subscribe()
74         defer subscription.Cancel()
75
76         chatroom.Join(user)
77         defer chatroom.Leave(user)
78
79         // Send down the archive.
80         for _, event := range subscription.Archive {
81                 if websocket.JSON.Send(ws, &event) != nil {
82                         // They disconnected
83                         return nil
84                 }
85         }
86
87         // In order to select between websocket messages and subscription events, we
88         // need to stuff websocket events into a channel.
89         newMessages := make(chan string)
90         go func() {
91                 var msg string
92                 for {
93                         err := websocket.Message.Receive(ws, &msg)
94                         if err != nil {
95                                 close(newMessages)
96                                 return
97                         }
98                         newMessages <- msg
99                 }
100         }()
101 ```
102 New
103 ```
104 func (c WebSocket) RoomSocket(user string, ws revel.ServerWebSocket) revel.Result {
105         // Join the room.
106         subscription := chatroom.Subscribe()
107         defer subscription.Cancel()
108
109         chatroom.Join(user)
110         defer chatroom.Leave(user)
111
112         // Send down the archive.
113         for _, event := range subscription.Archive {
114                 if ws.MessageSendJSON(&event) != nil {
115                         // They disconnected
116                         return nil
117                 }
118         }
119
120         // In order to select between websocket messages and subscription events, we
121         // need to stuff websocket events into a channel.
122         newMessages := make(chan string)
123         go func() {
124                 var msg string
125                 for {
126                         err := ws.MessageReceiveJSON(&msg)
127                         if err != nil {
128                                 close(newMessages)
129                                 return
130                         }
131                         newMessages <- msg
132                 }
133         }()
134 ```
135 * GORM module has been refactored into modules/orm/gorm 
136
137
138 ### Deprecated methods
139 * `revel.Request.FormValue()` Is deprecated, you should use methods in the controller.Params to access this data
140 * `revel.Request.PostFormValue()` Is deprecated, you should use methods in the controller.Params.Form to access this data
141 * `revel.Request.ParseForm()` Is deprecated - not needed
142 * `revel.Request.ParseMultipartForm()` Is deprecated - not needed
143 * `revel.Request.Form` Is deprecated, you should use the controller.Params.Form to access this data
144 * `revel.Request.MultipartForm` Is deprecated, you should use the controller.Params.Form to access this data
145 * `revel.TRACE`, `revel.INFO` `revel.WARN` `revel.ERROR` are deprecated. Use new application logger `revel.AppLog` and the controller logger `controller.Log`. See [logging](http://revel.github.io/manual/logging.html) for more details.
146
147 ### Features
148
149 * Pluggable server engine support. You can now implement **your own server engine**. This means if you need to listen to more then 1 IP address or port you can implement a custom server engine to do this. By default Revel uses GO http server, but also available is fasthttp server in the revel/modules repository. See the docs for more information on how to implement your own engine.
150
151 ### Enhancements
152 * Controller instances are cached for reuse. This speeds up the request response time and prevents unnecessary garbage collection cycles.  
153
154 ### Bug fixes
155
156
157
158
159 ## v0.17
160
161 [[revel/revel](https://github.com/revel/revel)]
162
163 * add-validation
164 * i18-lang-by-param
165 * Added namespace to routes, controllers
166 * Added go 1.6 to testing
167 * Adds the ability to set the language by a url parameter. The route file will need to specify the parameter so that it will be picked up
168 * Changed url validation logic to regex
169 * Added new validation mehtods (IPAddr,MacAddr,Domain,URL,PureText)
170
171 [[revel/cmd](https://github.com/revel/cmd)]
172
173 * no changes
174
175 [[revel/config](https://github.com/revel/config)]
176
177 * no changes
178
179 [[revel/modules](https://github.com/revel/modules)]
180
181 * Added Gorm module
182
183 [[revel/cron](https://github.com/revel/cron)]
184
185 * Updated cron task manager
186 * Added ability to run a specific job, reschedules job if cron is running.
187
188 [[revel/examples](https://github.com/revel/examples)]
189
190 * Gorm module (Example)
191
192 # v0.16.0
193
194 Deprecating support for golang versions prior to 1.6
195 ### Breaking Changes
196
197 * `CurrentLocaleRenderArg` to `CurrentLocaleViewArg` for consistency
198 * JSON requests are now parsed by Revel, if the content type is `text/json` or `application/json`. The raw data is available in `Revel.Controller.Params.JSON`. But you can also use the automatic controller operation to load the data like you would any structure or map. See [here](http://revel.github.io/manual/parameters.html) for more details
199
200 ### Features
201
202 * Modular Template Engine #1170 
203 * Pongo2 engine driver added revel/modules#39
204 * Ace engine driver added revel/modules#40
205 * Added i18n template support #746 
206
207 ### Enhancements
208
209 * JSON request binding #1161 
210 * revel.SetSecretKey function added #1127 
211 * ResolveFormat now looks at the extension as well (this sets the content type) #936 
212 * Updated command to run tests using the configuration revel/cmd#61
213
214 ### Bug fixes
215
216 * Updated documentation typos revel/modules#37
217 * Updated order of parameter map assignment #1155 
218 * Updated cookie lifetime for firefox #1174 
219 * Added test path for modules, so modules will run tests as well #1162 
220 * Fixed go profiler module revel/modules#20
221
222
223 # v0.15.0
224 @shawncatz released this on 2017-05-11
225
226 Deprecating support for golang versions prior to 1.7
227
228 ### Breaking Changes
229
230 * None
231
232 ### Features
233
234 * None
235
236 ### Enhancements
237
238 * Update and improve docs revel/examples#17 revel/cmd#85
239
240 ### Bug fixes
241
242 * Prevent XSS revel/revel#1153
243 * Improve error checking for go version detection revel/cmd#86
244
245 # v0.14.0
246 @notzippy released this on 2017-03-24
247
248 ## Changes since v0.13.0
249
250 #### Breaking Changes
251 - `revel/revel`:
252   - change RenderArgs to ViewArgs PR #1135
253   - change RenderJson to RenderJSON PR #1057
254   - change RenderHtml to RenderHTML PR #1057
255   - change RenderXml to RenderXML PR #1057
256
257 #### Features
258 - `revel/revel`:
259
260 #### Enhancements
261 - `revel/revel`:
262
263
264 #### Bug Fixes
265 - `revel/revel`:
266
267
268 # v0.13.1
269 @jeevatkm released this on 2016-06-07
270
271 **Bug fix:**
272 - Windows path fix #1064
273
274
275 # v0.13.0
276 @jeevatkm released this on 2016-06-06
277
278 ## Changes since v0.12.0
279
280 #### Breaking Changes
281 - `revel/revel`:
282   - Application Config name changed from `watcher.*` to `watch.*`  PR #992, PR #991
283
284 #### Features
285 - `revel/revel`:
286   - Request access log PR #1059, PR #913, #1055
287   - Messages loaded from modules too PR #828
288 - `revel/cmd`:
289   - Added `revel version` command emits the revel version and go version revel/cmd#19
290
291 #### Enhancements
292 - `revel/revel`:
293   - Creates log directory if missing PR #1039
294   - Added `application/javascript` to accepted headers PR #1022
295   - You can change `Server.Addr` value via hook function PR #999
296   - Improved deflate/gzip compressor PR #995
297   - Consistent config name `watch.*` PR #992, PR #991
298   - Defaults to HttpOnly and always secure cookies for non-dev mode #942, PR #943
299   - Configurable server Read and Write Timeout via app config #936, PR #940
300   - `OnAppStart` hook now supports order param too PR #935
301   - Added `PutForm` and `PutFormCustom` helper method in `testing.TestSuite` #898
302   - Validator supports UTF-8 string too PR #891, #841
303   - Added `InitServer` method that returns `http.HandlerFunc` PR #879
304   - Symlink aware processing Views, Messages and Watch mode PR #867, #673
305   - Added i18n settings support unknown format PR #852
306   - i18n: Make Message Translation pluggable PR #768
307   - jQuery `min-2.2.4` & Bootstrap `min-3.3.6` version updated in `skeleton/public` #1063
308 - `revel/cmd`:
309   - Revel identifies current `GOPATH` and performs `new` command; relative to directory revel/revel#1004
310   - Installs package dependencies during a build PR revel/cmd#43
311   - Non-200 response of test case request will correctly result into error PR revel/cmd#38
312   - Websockets SSL support in `dev` mode PR revel/cmd#32
313   - Won't yell about non-existent directory while cleaning PR revel/cmd#31, #908
314     - [x] non-fatal errors when building #908
315   - Improved warnings about route generation PR revel/cmd#25
316   - Command is Symlink aware PR revel/cmd#20
317   - `revel package` & `revel build` now supports environment mode PR revel/cmd#14
318   - `revel clean` now cleans generated routes too PR revel/cmd#6
319 - `revel/config`:
320   - Upstream `robfig/config` refresh and import path updated from `github.com/revel/revel/config` to `github.com/revel/config`, PR #868
321   - Config loading order and external configuration to override application configuration revel/config#4 [commit](https://github.com/revel/revel/commit/f3a422c228994978ae0a5dd837afa97248b26b41)
322   - Application config error will produce insight on error PR revel/config#3 [commit](https://github.com/revel/config/commit/85a123061070899a82f59c5ef6187e8fb4457f64)
323 - `revel/modules`:
324   - Testrunner enhancements
325     - Minor improvement on testrunner module PR #820, #895
326     - Add Test Runner panels per test group PR revel/modules#12
327 - `revel/revel.github.io`:
328   - Update `index.md` and homepage (change how samples repo is installed) PR [#85](https://github.com/revel/revel.github.io/pull/85)
329   - Couple of UI improvements PR [#93](https://github.com/revel/revel.github.io/pull/93)
330   - Updated techempower benchmarks Round 11 [URL](http://www.techempower.com/benchmarks/#section=data-r11)
331   - Docs updated for v0.13 release
332 - Cross-Platform Support
333   - Slashes should be normalized in paths #260, PR #1028, PR #928
334
335 #### Bug Fixes
336 - `revel/revel`:
337   - Binder: Multipart `io.Reader` parameters needs to be closed #756
338   - Default Date & Time Format correct in skeleton PR #1062, #878
339   - Addressed with alternative for `json: unsupported type: <-chan struct {}` on Go 1.6 revel/revel#1037
340   - Addressed one edge case, invalid Accept-Encoding header causes panic revel/revel#914
341
342
343 # v0.11.3
344 @brendensoares released this on 2015-01-04
345
346 This is a minor release to address a critical bug (#824) in v0.11.2.
347
348 Everybody is strongly encouraged to rebuild their projects with the latest version of Revel. To do it, execute the commands:
349
350 ``` sh
351 $ go get -u github.com/revel/cmd/revel
352
353 $ revel build github.com/myusername/myproject /path/to/destination/folder
354 ```
355
356
357 # v0.11.2
358 on 2014-11-23
359
360 This is a minor release to address a critical bug in v0.11.0.
361
362 Everybody is strongly encouraged to rebuild their projects with the latest version of Revel. To do it, execute the commands:
363
364 ``` sh
365 $ go get -u github.com/revel/cmd/revel
366
367 $ revel build github.com/myusername/myproject /path/to/destination/folder
368 ```
369
370
371 # v0.11.1
372 @pushrax released this on 2014-10-27
373
374 This is a minor release to address a compilation error in v0.11.0.
375
376
377 # v0.12.0
378 @brendensoares released this on 2015-03-25
379
380 Changes since v0.11.3:
381
382 ## Breaking Changes
383 1. Add import path to new `testing` sub-package for all Revel tests. For example:
384
385 ``` go
386 package tests
387
388 import "github.com/revel/revel/testing"
389
390 type AppTest struct {
391     testing.TestSuite
392 }
393 ```
394 1. We've relocated modules to a dedicated repo. Make sure you update your `conf/app.conf`. For example, change:
395
396 ``` ini
397 module.static=github.com/revel/revel/modules/static
398 module.testrunner = github.com/revel/revel/modules/testrunner
399 ```
400
401 to the new paths:
402
403 ``` ini
404 module.static=github.com/revel/modules/static
405 module.testrunner = github.com/revel/modules/testrunner
406 ```
407
408 ## [ROADMAP] Focus: Improve Internal Organization
409
410 The majority of our effort here is increasing the modularity of the code within Revel so that further development can be done more productively while keeping documentation up to date.
411 - `revel/revel.github.io`
412   - [x] Improve docs #[43](https://github.com/revel/revel.github.io/pull/43)
413 - `revel/revel`:
414   - [x] Move the `revel/revel/harness` to the `revel/cmd` repo since it's only used during build time. #[714](https://github.com/revel/revel/issues/714)
415   - [x] Move `revel/revel/modules` to the `revel/modules` repo #[785](https://github.com/revel/revel/issues/785)
416   - [x] Move `revel/revel/samples` to the `revel/samples` repo #[784](https://github.com/revel/revel/issues/784)
417   - [x] `testing` TestSuite #[737](https://github.com/revel/revel/issues/737) #[810](https://github.com/revel/revel/issues/810)
418   - [x] Feature/sane http timeout defaults #[837](https://github.com/revel/revel/issues/837) PR#[843](https://github.com/revel/revel/issues/843) Bug Fix PR#[860](https://github.com/revel/revel/issues/860)
419   - [x] Eagerly load templates in dev mode #[353](https://github.com/revel/revel/issues/353) PR#[844](https://github.com/revel/revel/pull/844)
420   - [x] Add an option to trim whitespace from rendered HTML #[800](https://github.com/revel/revel/issues/800)
421   - [x] Remove built-in mailer in favor of 3rd party package #[783](https://github.com/revel/revel/issues/783)
422   - [x] Allow local reverse proxy access to jobs module status page for IPv4/6 #[481](https://github.com/revel/revel/issues/481) PR#[6](https://github.com/revel/modules/pull/6) PR#[7](https://github.com/revel/modules/pull/7)
423   - [x] Add default http.Status code for render methods. #[728](https://github.com/revel/revel/issues/728)
424   - [x] add domain for cookie #[770](https://github.com/revel/revel/issues/770) PR#[882](https://github.com/revel/revel/pull/882)
425   - [x] production mode panic bug #[831](https://github.com/revel/revel/issues/831) PR#[881](https://github.com/revel/revel/pull/881)
426   - [x] Fixes template loading order whether watcher is enabled or not #[844](https://github.com/revel/revel/issues/844)
427   - [x] Fixes reverse routing wildcard bug PR#[886](https://github.com/revel/revel/pull/886) #[869](https://github.com/revel/revel/issues/869)
428   - [x] Fixes router app start bug without routes. PR #[855](https://github.com/revel/revel/pull/855)
429   - [x] Friendly URL template errors; Fixes template `url` func "index out of range" when param is `undefined` #[811](https://github.com/revel/revel/issues/811) PR#[880](https://github.com/revel/revel/pull/880)
430   - [x] Make result compression conditional PR#[888](https://github.com/revel/revel/pull/888)
431   - [x] ensure routes are loaded before returning from OnAppStart callback PR#[884](https://github.com/revel/revel/pull/884)
432   - [x] Use "302 Found" HTTP code for redirect PR#[900](https://github.com/revel/revel/pull/900)
433   - [x] Fix broken fake app tests PR#[899](https://github.com/revel/revel/pull/899)
434   - [x] Optimize search of template names PR#[885](https://github.com/revel/revel/pull/885)
435 - `revel/cmd`:
436   - [x] track current Revel version #[418](https://github.com/revel/revel/issues/418) PR#[858](https://github.com/revel/revel/pull/858)
437   - [x] log path error After revel build? #[763](https://github.com/revel/revel/issues/763)
438   - [x] Use a separate directory for revel project binaries #[17](https://github.com/revel/cmd/pull/17) #[819](https://github.com/revel/revel/issues/819)
439   - [x] Overwrite generated app files instead of deleting directory #[551](https://github.com/revel/revel/issues/551) PR#[23](https://github.com/revel/cmd/pull/23)
440 - `revel/modules`:
441   - [x] Adds runtime pprof/trace support #[9](https://github.com/revel/modules/pull/9)
442 - Community Goals:
443   - [x] Issue labels #[545](https://github.com/revel/revel/issues/545)
444     - [x] Sync up labels/milestones in other repos #[721](https://github.com/revel/revel/issues/721)
445   - [x] Update the Revel Manual to reflect current features
446     - [x] [revel/revel.github.io/32](https://github.com/revel/revel.github.io/issues/32)
447     - [x] [revel/revel.github.io/39](https://github.com/revel/revel.github.io/issues/39)
448     - [x] Docs are obsolete, inaccessible TestRequest.testSuite #[791](https://github.com/revel/revel/issues/791)
449     - [x] Some questions about revel & go docs #[793](https://github.com/revel/revel/issues/793)
450   - [x] RFCs to organize features #[827](https://github.com/revel/revel/issues/827)
451
452 [Full list of commits](https://github.com/revel/revel/compare/v0.11.3...v0.12.0)
453
454
455 # v0.11.0
456 @brendensoares released this on 2014-10-26
457
458 Note, Revel 0.11 requires Go 1.3 or higher.
459
460 Changes since v0.10:
461
462 [BUG]   #729    Adding define inside the template results in an error (Changes how template file name case insensitivity is handled)
463
464 [ENH]   #769    Add swap files to gitignore
465 [ENH]   #766    Added passing in build flags to the go build command
466 [ENH]   #761    Fixing cross-compiling issue #456 setting windows path from linux
467 [ENH]   #759    Include upload sample's tests in travis
468 [ENH]   #755    Changes c.Action to be the action method name's letter casing per #635
469 [ENH]   #754    Adds call stack display to runtime panic in browser to match console
470 [ENH]   #740    Redis Cache: Add timeouts.
471 [ENH]   #734    watcher: treat fsnotify Op as a bitmask
472 [ENH]   #731    Second struct in type revel fails to find the controller
473 [ENH]   #725    Testrunner: show response info
474 [ENH]   #723    Improved compilation errors and open file from error page
475 [ENH]   #720    Get testrunner path from config file
476 [ENH]   #707    Add log.colorize option to enable/disable colorize
477 [ENH]   #696    Revel file upload testing
478 [ENH]   #694    Install dependencies at build time
479 [ENH]   #693    Prefer extension over Accept header
480 [ENH]   #692    Update fsnotify to v1 API
481 [ENH]   #690    Support zero downtime restarts
482 [ENH]   #687    Tests: request override
483 [ENH]   #685    Persona sample tests and bugfix
484 [ENH]   #598    Added README file to Revel skeleton
485 [ENH]   #591    Realtime rebuild
486 [ENH]   #573    Add AppRoot to allow changing the root path of an application
487
488 [FTR]   #606    CSRF Support
489
490 [Full list of commits](https://github.com/revel/revel/compare/v0.10.0...v0.11.0)
491
492
493 # v0.10.0
494 @brendensoares released this on 2014-08-10
495
496 Changes since v0.9.1:
497 - [FTR] #641 - Add "X-HTTP-Method-Override" to router
498 - [FTR] #583 - Added HttpMethodOverride filter to routes
499 - [FTR] #540 - watcher flag for refresh on app start
500 - [BUG] #681 - Case insensitive comparison for websocket upgrades (Fixes IE Websockets ...
501 - [BUG] #668 - Compression: Properly close gzip/deflate
502 - [BUG] #667 - Fix redis GetMulti and improve test coverage
503 - [BUG] #664 - Is compression working correct?
504 - [BUG] #657 - Redis Cache: panic when testing Ge
505 - [BUG] #637 - RedisCache: fix Get/GetMulti error return
506 - [BUG] #621 - Bugfix/router csv error
507 - [BUG] #618 - Router throws exception when parsing line with multiple default string arguments
508 - [BUG] #604 - Compression: Properly close gzip/deflate.
509 - [BUG] #567 - Fixed regex pattern to properly require message files to have a dot in filename
510 - [BUG] #566 - Compression fails ("unexpected EOF" in tests)
511 - [BUG] #287 - Don't remove the parent folders containing generated code.
512 - [BUG] #556 - fix for #534, also added url path to not found message
513 - [BUG] #534 - Websocket route not found
514 - [BUG] #343 - validation.Required(funtionCall).Key(...) - reflect.go:715: Failed to generate name for field.
515 - [ENH] #643 - Documentation Fix in Skeleton for OnAppStart
516 - [ENH] #674 - Removes custom `eq` template function
517 - [ENH] #669 - Develop compress closenotifier
518 - [ENH] #663 - fix for static content type not being set and defaulting to OS
519 - [ENH] #658 - Minor: fix niggle with import statement
520 - [ENH] #652 - Update the contributing guidelines
521 - [ENH] #651 - Use upstream gomemcache again
522 - [ENH] #650 - Go back to upstream memcached library
523 - [ENH] #612 - Fix CI package error
524 - [ENH] #611 - Fix "go vet" problems
525 - [ENH] #610 - Added MakeMultipartRequest() to the TestSuite
526 - [ENH] #608 - Develop compress closenotifier
527 - [ENH] #596 - Expose redis cache options to config
528 - [ENH] #581 - Make the option template tag type agnostic.
529 - [ENH] #576 - Defer session instantiation to first set
530 - [ENH] #565 - Fix #563 -- Some custom template funcs cannot be used in JavaScript cont...
531 - [ENH] #563 - TemplateFuncs cannot be used in JavaScript context
532 - [ENH] #561 - Fix missing extension from message file causing panic
533 - [ENH] #560 - enhancement / templateFunc `firstof`
534 - [ENH] #555 - adding symlink handling to the template loader and watcher processes
535 - [ENH] #531 - Update app.conf.template
536 - [ENH] #520 - Respect controller's Response.Status when action returns nil
537 - [ENH] #519 - Link to issues
538 - [ENH] #486 - Support for json compress
539 - [ENH] #480 - Eq implementation in template.go still necessary ?
540 - [ENH] #461 - Cron jobs not started until I pull a page
541 - [ENH] #323 - disable session/set-cookie for `Static.Serve()`
542
543 [Full list of commits](https://github.com/revel/revel/compare/v0.9.1...v0.10.0)
544
545
546 # v0.9.1
547 @pushrax released this on 2014-03-02
548
549 Minor patch release to address a couple bugs.
550
551 Changes since v0.9.0:
552 - [BUG] #529 - Wrong path was used to determine existence of `.git`
553 - [BUG] #532 - Fix typo for new type `ValidEmail`
554
555 The full list of commits can be found [here](https://github.com/revel/revel/compare/v0.9.0...v0.9.1).
556
557
558 # v0.9.0
559 @pushrax released this on 2014-02-26
560
561 ## Revel GitHub Organization
562
563 We've moved development of the framework to the @revel GitHub organization, to help manage the project as Revel grows. The old import path is still valid, but will not be updated in the future.
564
565 You'll need to manually update your apps to work with the new import path. This can be done by replacing all instances of `github.com/robfig/revel` with `github.com/revel/revel` in your app, and running:
566
567 ```
568 $ cd your_app_folder
569 $ go get -u github.com/howeyc/fsnotify  # needs updating
570 $ go get github.com/revel/revel
571 $ go get github.com/revel/cmd/revel     # command line tools have moved
572 ```
573
574 **Note:** if you have references to `github.com/robfig/revel/revel` in any files, you need to replace them with `github.com/revel/cmd/revel` _before_ replacing `github.com/robfig/revel`! (note the prefix collision)
575
576 If you have any trouble upgrading or notice something we missed, feel free to hop in the IRC channel (#revel on Freenode) or send the mailing list a message.
577
578 Also note, the documentation is now at [revel.github.io](http://revel.github.io)!
579
580 Changes since v0.8:
581 - [BUG] #522 - `revel new` bug
582 - [BUG] - Booking sample error
583 - [BUG] #504 - File access via URL security issue
584 - [BUG] #489 - Email validator bug
585 - [BUG] #475 - File watcher infinite loop
586 - [BUG] #333 - Extensions in routes break parameters
587 - [FTR] #472 - Support for 3rd part app skeletons
588 - [ENH] #512 - Per session expiration methods
589 - [ENH] #496 - Type check renderArgs[CurrentLocalRenderArg]
590 - [ENH] #490 - App.conf manual typo
591 - [ENH] #487 - Make files executable on `revel build`
592 - [ENH] #482 - Retain input values after form valdiation
593 - [ENH] #473 - OnAppStart documentation
594 - [ENH] #466 - JSON error template quoting fix
595 - [ENH] #464 - Remove unneeded trace statement
596 - [ENH] #457 - Remove unneeded trace
597 - [ENH] #508 - Support arbitrary network types
598 - [ENH] #516 - Add Date and Message-Id mail headers
599
600 The full list of commits can be found [here](https://github.com/revel/revel/compare/v0.8...v0.9.0).
601
602
603 # v0.8
604 @pushrax released this on 2014-01-06
605
606 Changes since v0.7:
607 - [BUG] #379 - HTTP 500 error for not found public path files
608 - [FTR] #424 - HTTP pprof support
609 - [FTR] #346 - Redis Cache support
610 - [FTR] #292 - SMTP Mailer
611 - [ENH] #443 - Validator constructors to improve `v.Check()` usage
612 - [ENH] #439 - Basic terminal output coloring
613 - [ENH] #428 - Improve error message for missing `RenderArg`
614 - [ENH] #422 - Route embedding for modules
615 - [ENH] #413 - App version variable
616 - [ENH] #153 - $GOPATH-wide file watching aka hot loading
617
618
619 # v0.6
620 @robfig released this on 2013-09-16
621
622
623