Gnanakeethan Balasubramaniam 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							7c2ec075a4 
							
						 
					 
					
						
						
							
							Update: fixing some methods and adding documentation  
						
						... 
						
						
						
						Signed-off-by: Gnanakeethan Balasubramaniam <gnanakeethan@gmail.com> 
						
						
					 
					
						2017-07-13 21:03:30 +05:30 
						 
				 
			
				
					
						
							
							
								Gerson Alexander Pardo Gamez 
							
						 
					 
					
						
						
						
						
							
						
						
							c903de41e4 
							
						 
					 
					
						
						
							
							updated sample for FilterMonitorFunc  
						
						... 
						
						
						
						added pattern to sample 
						
						
					 
					
						2017-07-12 09:51:37 -05:00 
						 
				 
			
				
					
						
							
							
								astaxie 
							
						 
					 
					
						
						
						
						
							
						
						
							e8c8366308 
							
						 
					 
					
						
						
							
							Merge pull request  #2754  from imiskolee/develop  
						
						... 
						
						
						
						supported gzip for req.Header has `Content-Encoding: gzip` 
						
						
					 
					
						2017-07-12 19:57:29 +08:00 
						 
				 
			
				
					
						
							
							
								astaxie 
							
						 
					 
					
						
						
						
						
							
						
						
							4901567bba 
							
						 
					 
					
						
						
							
							Merge pull request  #2749  from satng/patch-4  
						
						... 
						
						
						
						oracle插入占位符 
						
						
					 
					
						2017-07-12 19:49:32 +08:00 
						 
				 
			
				
					
						
							
							
								MiskoLee 
							
						 
					 
					
						
						
						
						
							
						
						
							29bcd31b27 
							
						 
					 
					
						
						
							
							supported gzip for req.Header has Content-Encoding: gzip  
						
						
						
						
					 
					
						2017-07-10 21:27:54 +08:00 
						 
				 
			
				
					
						
							
							
								satng 
							
						 
					 
					
						
						
						
						
							
						
						
							83a563c0ab 
							
						 
					 
					
						
						
							
							oracle插入占位符  
						
						
						
						
					 
					
						2017-07-09 12:25:51 +08:00 
						 
				 
			
				
					
						
							
							
								Gnanakeethan Balasubramaniam 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							e888fee4e0 
							
						 
					 
					
						
						
							
							Update: Foreign Key & Comments  
						
						... 
						
						
						
						Summary: Foreign Key functions are now available
Signed-off-by: Gnanakeethan Balasubramaniam <gnanakeethan@gmail.com> 
						
						
					 
					
						2017-07-06 20:26:37 +05:30 
						 
				 
			
				
					
						
							
							
								Gnanakeethan Balasubramaniam 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							c1ba11f531 
							
						 
					 
					
						
						
							
							Fixing typo  
						
						... 
						
						
						
						Signed-off-by: Gnanakeethan Balasubramaniam <gnanakeethan@gmail.com> 
						
						
					 
					
						2017-07-06 14:58:40 +05:30 
						 
				 
			
				
					
						
							
							
								Gnanakeethan Balasubramaniam 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ed558a0e70 
							
						 
					 
					
						
						
							
							Fix: typo due to find and replace migration renamed to m  
						
						... 
						
						
						
						Signed-off-by: Gnanakeethan Balasubramaniam <gnanakeethan@gmail.com> 
						
						
					 
					
						2017-07-06 07:45:07 +05:30 
						 
				 
			
				
					
						
							
							
								Gnanakeethan Balasubramaniam 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							6b9c3f4824 
							
						 
					 
					
						
						
							
							[Proposal] Database Migrations;  
						
						... 
						
						
						
						Summary: The database migrations now can be created using the methods on
the migration struct. it does not break any existing migration features.
it upgrades the migration struct and adds few more struct types so that
the migrations can be efficiently generated for create, alter, reverse,
drop.
Current Features:
* Supports creation of columns
   * `m.NewCol("name").SetDataType("VARCHAR(10)").SetNullable("true")`
   * **NOTE** `SetNullable` & `SetDefault` methods should not be called on
   same column for consistency
* Supports addition of primary keys
   * `m.PriCol("id").SetDataType("INT(10)").SetNullable("true")`
   * **NOTE** `setAuto(true)` can be only called on Primary keys
* Supports addition of unique keys
   * `m.UniCol("unique_index","column_name").SetDataType("VARCHAR(23)").SetNullable("true")`
   * **NOTE** `UniCol` can be called again with the same index name to
   add column to the index
* Supports rename of columns
   * `m.RenameColumn("from_name","to_name")`
   * Allows standard column methods and methods such that, `SetOldDefault` allows
   reversibility of renames
* TODO:
   * ForeignKey
Signed-off-by: Gnanakeethan Balasubramaniam <gnanakeethan@gmail.com> 
						
						
					 
					
						2017-07-06 07:44:48 +05:30 
						 
				 
			
				
					
						
							
							
								astaxie 
							
						 
					 
					
						
						
						
						
							
						
						
							7ec819deed 
							
						 
					 
					
						
						
							
							fix   #2725  big form  
						
						
						
						
					 
					
						2017-07-04 21:16:59 +08:00 
						 
				 
			
				
					
						
							
							
								astaxie 
							
						 
					 
					
						
						
						
						
							
						
						
							4cfb3678f8 
							
						 
					 
					
						
						
							
							Merge pull request  #2741  from miraclesu/validation  
						
						... 
						
						
						
						validation: support required option for some struct tag valids 
						
						
					 
					
						2017-07-04 15:49:36 +08:00 
						 
				 
			
				
					
						
							
							
								xlwcom 
							
						 
					 
					
						
						
						
						
							
						
						
							3c17e2a7e6 
							
						 
					 
					
						
						
							
							remove the comments  
						
						
						
						
					 
					
						2017-07-04 11:03:49 +08:00 
						 
				 
			
				
					
						
							
							
								miraclesu 
							
						 
					 
					
						
						
						
						
							
						
						
							e72b02b7cc 
							
						 
					 
					
						
						
							
							validation: support required option for some struct tag valids  
						
						
						
						
					 
					
						2017-07-03 16:26:23 +08:00 
						 
				 
			
				
					
						
							
							
								astaxie 
							
						 
					 
					
						
						
						
						
							
						
						
							82586c70e9 
							
						 
					 
					
						
						
							
							Merge pull request  #2683  from jialijelly/master  
						
						... 
						
						
						
						Provide permission to access old files to everyone 
						
						
					 
					
						2017-07-03 11:23:49 +08:00 
						 
				 
			
				
					
						
							
							
								astaxie 
							
						 
					 
					
						
						
						
						
							
						
						
							cb86bcc9e8 
							
						 
					 
					
						
						
							
							Merge pull request  #2728  from miraclesu/validation  
						
						... 
						
						
						
						validation: support int64 int32 int16 and int8 type on 64-bit platform 
						
						
					 
					
						2017-07-01 15:35:48 +08:00 
						 
				 
			
				
					
						
							
							
								xlwcom 
							
						 
					 
					
						
						
						
						
							
						
						
							234708062a 
							
						 
					 
					
						
						
							
							fix the bug in the "ParseBool" function in the file of config.go  
						
						
						
						
					 
					
						2017-06-29 13:32:40 +08:00 
						 
				 
			
				
					
						
							
							
								miraclesu 
							
						 
					 
					
						
						
						
						
							
						
						
							6e34f43721 
							
						 
					 
					
						
						
							
							Fix break API change  
						
						... 
						
						
						
						support int64 on 64-bit platform 
						
						
					 
					
						2017-06-28 16:56:37 +08:00 
						 
				 
			
				
					
						
							
							
								Jia Li Ong 
							
						 
					 
					
						
						
						
						
							
						
						
							3249ec8ebf 
							
						 
					 
					
						
						
							
							Merge branch 'master' of  https://github.com/jialijelly/beego  
						
						
						
						
					 
					
						2017-06-27 10:49:10 +08:00 
						 
				 
			
				
					
						
							
							
								Jia Li Ong 
							
						 
					 
					
						
						
						
						
							
						
						
							31b2b21dbc 
							
						 
					 
					
						
						
							
							Merge branch 'master' of  https://github.com/jialijelly/beego  
						
						
						
						
					 
					
						2017-06-27 10:48:52 +08:00 
						 
				 
			
				
					
						
							
							
								Jia Li Ong 
							
						 
					 
					
						
						
						
						
							
						
						
							d0c1936922 
							
						 
					 
					
						
						
							
							Merge branch 'master' of  https://github.com/jialijelly/beego  
						
						
						
						
					 
					
						2017-06-22 19:18:49 +08:00 
						 
				 
			
				
					
						
							
							
								Jia Li Ong 
							
						 
					 
					
						
						
						
						
							
						
						
							338a23a12b 
							
						 
					 
					
						
						
							
							Merge branch 'master' of  https://github.com/jialijelly/beego  
						
						
						
						
					 
					
						2017-06-22 19:18:34 +08:00 
						 
				 
			
				
					
						
							
							
								Jia Li Ong 
							
						 
					 
					
						
						
						
						
							
						
						
							932def1ed2 
							
						 
					 
					
						
						
							
							Merge branch 'master' of  https://github.com/jialijelly/beego  
						
						
						
						
					 
					
						2017-06-22 18:55:37 +08:00 
						 
				 
			
				
					
						
							
							
								Jia Li Ong 
							
						 
					 
					
						
						
						
						
							
						
						
							16b5a11484 
							
						 
					 
					
						
						
							
							Merge branch 'master' of  https://github.com/jialijelly/beego  
						
						
						
						
					 
					
						2017-06-22 18:55:25 +08:00 
						 
				 
			
				
					
						
							
							
								Jia Li Ong 
							
						 
					 
					
						
						
						
						
							
						
						
							547fbce86c 
							
						 
					 
					
						
						
							
							Merge branch 'master' of  https://github.com/jialijelly/beego  
						
						
						
						
					 
					
						2017-06-22 18:53:29 +08:00 
						 
				 
			
				
					
						
							
							
								Jia Li Ong 
							
						 
					 
					
						
						
						
						
							
						
						
							5a2eea07cb 
							
						 
					 
					
						
						
							
							Provide permission to access old log files to everyone  
						
						
						
						
					 
					
						2017-06-22 18:51:52 +08:00 
						 
				 
			
				
					
						
							
							
								miraclesu 
							
						 
					 
					
						
						
						
						
							
						
						
							2231841d74 
							
						 
					 
					
						
						
							
							validation: support int64 int32 int16 and int8 type  
						
						
						
						
					 
					
						2017-06-21 14:13:30 +08:00 
						 
				 
			
				
					
						
							
							
								astaxie 
							
						 
					 
					
						
						
						
						
							
						
						
							805a674825 
							
						 
					 
					
						
						
							
							Merge pull request  #2712  from eyalpost/develop  
						
						... 
						
						
						
						incorrect error rendering (wrong status) 
						
						
					 
					
						2017-06-16 13:34:28 +08:00 
						 
				 
			
				
					
						
							
							
								astaxie 
							
						 
					 
					
						
						
						
						
							
						
						
							f2925978f1 
							
						 
					 
					
						
						
							
							Merge pull request  #2717  from huwenbo/master  
						
						... 
						
						
						
						fix panic sync: negative WaitGroup counter 
						
						
					 
					
						2017-06-16 13:26:36 +08:00 
						 
				 
			
				
					
						
							
							
								astaxie 
							
						 
					 
					
						
						
						
						
							
						
						
							fe3a224a23 
							
						 
					 
					
						
						
							
							Merge pull request  #2724  from JessonChan/develop  
						
						... 
						
						
						
						AddAPPStartHook func modify 
						
						
					 
					
						2017-06-16 08:20:45 +08:00 
						 
				 
			
				
					
						
							
							
								astaxie 
							
						 
					 
					
						
						
						
						
							
						
						
							2754edc849 
							
						 
					 
					
						
						
							
							Merge pull request  #2726  from moqiancong/develop  
						
						... 
						
						
						
						fix cache/memory fatal error: concurrent map iteration and map write 
						
						
					 
					
						2017-06-16 08:20:03 +08:00 
						 
				 
			
				
					
						
							
							
								moqiancong 
							
						 
					 
					
						
						
						
						
							
						
						
							79f60274a0 
							
						 
					 
					
						
						
							
							fix cache/memory fatal error: concurrent map iteration and map write  
						
						
						
						
					 
					
						2017-06-16 01:26:55 +08:00 
						 
				 
			
				
					
						
							
							
								JessonChan 
							
						 
					 
					
						
						
						
						
							
						
						
							a87c1c5e8e 
							
						 
					 
					
						
						
							
							AddAPPStartHook func modify  
						
						
						
						
					 
					
						2017-06-15 17:36:37 +08:00 
						 
				 
			
				
					
						
							
							
								huwenbo 
							
						 
					 
					
						
						
						
						
							
						
						
							2b00b7d66d 
							
						 
					 
					
						
						
							
							fix panic: sync: negative WaitGroup counter  
						
						
						
						
					 
					
						2017-06-13 20:15:43 +08:00 
						 
				 
			
				
					
						
							
							
								huwenbo 
							
						 
					 
					
						
						
						
						
							
						
						
							3d9286f089 
							
						 
					 
					
						
						
							
							fix panic: sync: negative WaitGroup counter  
						
						
						
						
					 
					
						2017-06-13 15:34:57 +08:00 
						 
				 
			
				
					
						
							
							
								huwenbo 
							
						 
					 
					
						
						
						
						
							
						
						
							55e6c15073 
							
						 
					 
					
						
						
							
							fix panic: sync: negative WaitGroup counter  
						
						
						
						
					 
					
						2017-06-13 15:19:51 +08:00 
						 
				 
			
				
					
						
							
							
								eyalpost 
							
						 
					 
					
						
						
						
						
							
						
						
							8b504e7d51 
							
						 
					 
					
						
						
							
							incorrect error rendering (wrong status)  
						
						
						
						
					 
					
						2017-06-12 21:05:40 +03:00 
						 
				 
			
				
					
						
							
							
								astaxie 
							
						 
					 
					
						
						
						
						
							
						
						
							d1c3bd8416 
							
						 
					 
					
						
						
							
							Merge pull request  #2701  from eyalpost/develop  
						
						... 
						
						
						
						correctly handle multiple params with same type 
						
						
					 
					
						2017-06-09 15:33:37 +08:00 
						 
				 
			
				
					
						
							
							
								eyalpost 
							
						 
					 
					
						
						
						
						
							
						
						
							0240e182c6 
							
						 
					 
					
						
						
							
							correctly handle multiple params with same type  
						
						
						
						
					 
					
						2017-06-09 10:15:36 +03:00 
						 
				 
			
				
					
						
							
							
								Gerson Alexander Pardo Gamez 
							
						 
					 
					
						
						
						
						
							
						
						
							7f2e3feb3c 
							
						 
					 
					
						
						
							
							added pattern to FilterMonitorFunc  
						
						
						
						
					 
					
						2017-06-05 18:21:31 -05:00 
						 
				 
			
				
					
						
							
							
								Gerson Alexander Pardo Gamez 
							
						 
					 
					
						
						
						
						
							
						
						
							d15dd2795c 
							
						 
					 
					
						
						
							
							added statusCode in FilterMonitorFunc  
						
						
						
						
					 
					
						2017-06-03 15:24:45 -05:00 
						 
				 
			
				
					
						
							
							
								Jia Li Ong 
							
						 
					 
					
						
						
						
						
							
						
						
							0ea34fff27 
							
						 
					 
					
						
						
							
							Provide permission to access old log files to everyone  
						
						
						
						
					 
					
						2017-06-02 10:56:55 +08:00 
						 
				 
			
				
					
						
							
							
								BorisBorshevsky 
							
						 
					 
					
						
						
						
						
							
						
						
							b24ddb953c 
							
						 
					 
					
						
						
							
							merge from upstram + resolve conflicts  
						
						
						
						
					 
					
						2017-05-20 02:42:00 +03:00 
						 
				 
			
				
					
						
							
							
								BorisBorshevsky 
							
						 
					 
					
						
						
						
						
							
						
						
							12f8fbe37f 
							
						 
					 
					
						
						
							
							Allow injecting dependencies to controllers  
						
						
						
						
					 
					
						2017-05-20 02:06:28 +03:00 
						 
				 
			
				
					
						
							
							
								astaxie 
							
						 
					 
					
						
						
						
						
							
						
						
							5e8312bc23 
							
						 
					 
					
						
						
							
							Merge pull request  #2654  from casbin/master  
						
						... 
						
						
						
						Fix the new repo address for casbin. 
						
						
					 
					
						2017-05-19 23:34:58 +08:00 
						 
				 
			
				
					
						
							
							
								Yang Luo 
							
						 
					 
					
						
						
						
						
							
						
						
							88d07058a5 
							
						 
					 
					
						
						
							
							Fix the new repo address for casbin.  
						
						
						
						
					 
					
						2017-05-19 22:19:31 +08:00 
						 
				 
			
				
					
						
							
							
								astaxie 
							
						 
					 
					
						
						
						
						
							
						
						
							cab8458c1c 
							
						 
					 
					
						
						
							
							Merge pull request  #2651  from astaxie/develop  
						
						... 
						
						
						
						v1.8.3 
						
						
					 
					
						2017-05-19 21:19:18 +08:00 
						 
				 
			
				
					
						
							
							
								astaxie 
							
						 
					 
					
						
						
						
						
							
						
						
							f0b95c552b 
							
						 
					 
					
						
						
							
							Merge pull request  #2315  from sch00lb0y/master  
						
						... 
						
						
						
						issue no:#2261 fix for xsrf panic error 
						
						
					 
					
						2017-05-19 18:50:56 +08:00 
						 
				 
			
				
					
						
							
							
								பாலாஜி 
							
						 
					 
					
						
						
						
						
							
						
						
							ce677202e5 
							
						 
					 
					
						
						
							
							issue no:#2261 fix for xsrf panic error  
						
						
						
						
					 
					
						2017-05-19 14:02:14 +05:30 
						 
				 
			
				
					
						
							
							
								astaxie 
							
						 
					 
					
						
						
						
						
							
						
						
							720c323e20 
							
						 
					 
					
						
						
							
							Merge pull request  #2652  from gouyang/gouyang/dev  
						
						... 
						
						
						
						Support timeformat "2006-01-02T15:04:05" 
						
						
					 
					
						2017-05-19 09:48:35 +08:00