wxiaoguang 
								
							 
						 
						
							
							
								
							
							
	
	
	f3956fcb28 
 
						 
						
							
							
								
								
								Fix incorrect ctx usage in defer function ( #27740 )  
							
							
							
							
						 
						
							2023-10-22 14:12:27 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Lunny Xiao 
								
							 
						 
						
							
							
								
							
							
	
	
	cddf245c12 
 
						 
						
							
							
								
								
								Replace more db.DefaultContext ( #27628 )  
							
							... 
							
							
							
							
							Target #27065  
							
						 
						
							2023-10-15 17:46:06 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									CaiCandong 
								
							 
						 
						
							
							
								
							
							
	
	
	87aa552531 
 
						 
						
							
							
								
								
								Fix unexpected context canceled when migrating repository ( #27368 )  
							
							... 
							
							
							
							
							Fix  #27363 
Regression of #27089  
						
							2023-10-01 12:04:35 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									JakobDev 
								
							 
						 
						
							
							
								
							
							
	
	
	f91dbbba98 
 
						 
						
							
							
								
								
								Next round of db.DefaultContext refactor ( #27089 )  
							
							... 
							
							
							
							
							Part of #27065  
							
						 
						
							2023-09-16 14:39:12 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Lunny Xiao 
								
							 
						 
						
							
							
								
							
							
	
	
	540bf9fa6d 
 
						 
						
							
							
								
								
								Move notification interface to services layer ( #26915 )  
							
							... 
							
							
							
							
							Extract from #22266  
							
						 
						
							2023-09-05 18:37:47 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									silverwind 
								
							 
						 
						
							
							
								
							
							
	
	
	887a683af9 
 
						 
						
							
							
								
								
								Update tool dependencies, lock govulncheck and actionlint ( #25655 )  
							
							... 
							
							
							
							
							- Update all tool dependencies
- Lock `govulncheck` and `actionlint` to their latest tags
---------
Co-authored-by: 6543 <m.huber@kithara.com>
Co-authored-by: 6543 <6543@obermui.de>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> 
							
						 
						
							2023-07-09 11:58:06 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									silverwind 
								
							 
						 
						
							
							
								
							
							
	
	
	88f835192d 
 
						 
						
							
							
								
								
								Replace interface{} with any ( #25686 )  
							
							... 
							
							
							
							
							Result of running `perl -p -i -e 's#interface\{\}#any#g' **/*` and `make fmt`.
Basically the same [as golang did](2580d0e08d 
							
						 
						
							2023-07-04 18:36:08 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									wxiaoguang 
								
							 
						 
						
							
							
								
							
							
	
	
	f6e029e6c7 
 
						 
						
							
							
								
								
								Make repo migration cancelable and fix various bugs ( #24605 )  
							
							... 
							
							
							
							
							Replace #12917 
Close  #24601 
Close  #12845 




---------
Co-authored-by: Yarden Shoham <git@yardenshoham.com>
Co-authored-by: silverwind <me@silverwind.io>
Co-authored-by: Giteabot <teabot@gitea.io> 
							
						 
						
							2023-05-11 08:25:46 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									flynnnnnnnnnn 
								
							 
						 
						
							
							
								
							
							
	
	
	e81ccc406b 
 
						 
						
							
							
								
								
								Implement FSFE REUSE for golang files ( #21840 )  
							
							... 
							
							
							
							
							Change all license headers to comply with REUSE specification.
Fix  #16132 
Co-authored-by: flynnnnnnnnnn <flynnnnnnnnnn@github>
Co-authored-by: John Olheiser <john.olheiser@gmail.com> 
							
						 
						
							2022-11-27 18:20:29 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									KN4CK3R 
								
							 
						 
						
							
							
								
							
							
	
	
	044c754ea5 
 
						 
						
							
							
								
								
								Add context.Context to more methods ( #21546 )  
							
							... 
							
							
							
							
							This PR adds a context parameter to a bunch of methods. Some helper
`xxxCtx()` methods got replaced with the normal name now.
Co-authored-by: delvh <dev.lh@web.de>
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> 
							
						 
						
							2022-11-19 16:12:33 +08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									delvh 
								
							 
						 
						
							
							
								
							
							
	
	
	0ebb45cfe7 
 
						 
						
							
							
								
								
								Replace all instances of fmt.Errorf(%v) with fmt.Errorf(%w) ( #21551 )  
							
							... 
							
							
							
							
							Found using
`find . -type f -name '*.go' -print -exec vim {} -c
':%s/fmt\.Errorf(\(.*\)%v\(.*\)err/fmt.Errorf(\1%w\2err/g' -c ':wq' \;`
Co-authored-by: 6543 <6543@obermui.de>
Co-authored-by: Andrew Thornton <art27@cantab.net>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> 
							
						 
						
							2022-10-24 20:29:17 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Lunny Xiao 
								
							 
						 
						
							
							
								
							
							
	
	
	1d8543e7db 
 
						 
						
							
							
								
								
								Move some files into models' sub packages ( #20262 )  
							
							... 
							
							
							
							
							* Move some files into models' sub packages
* Move functions
* merge main branch
* Fix check
* fix check
* Fix some tests
* Fix lint
* Fix lint
* Revert lint changes
* Fix error comments
* Fix lint
Co-authored-by: 6543 <6543@obermui.de> 
							
						 
						
							2022-08-25 10:31:57 +08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Wim 
								
							 
						 
						
							
							
								
							
							
	
	
	cb50375e2b 
 
						 
						
							
							
								
								
								Add more linters to improve code readability ( #19989 )  
							
							... 
							
							
							
							
							Add nakedret, unconvert, wastedassign, stylecheck and nolintlint linters to improve code readability
- nakedret - https://github.com/alexkohler/nakedret  - nakedret is a Go static analysis tool to find naked returns in functions greater than a specified function length.
- unconvert - https://github.com/mdempsky/unconvert  - Remove unnecessary type conversions
- wastedassign - https://github.com/sanposhiho/wastedassign  -  wastedassign finds wasted assignment statements.
- notlintlint -  Reports ill-formed or insufficient nolint directives
- stylecheck - https://staticcheck.io/docs/checks/#ST  - keep style consistent
  - excluded: [ST1003 - Poorly chosen identifier](https://staticcheck.io/docs/checks/#ST1003 ) and [ST1005 - Incorrectly formatted error string](https://staticcheck.io/docs/checks/#ST1005 ) 
							
						 
						
							2022-06-20 12:02:49 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									wxiaoguang 
								
							 
						 
						
							
							
								
							
							
	
	
	c83168104b 
 
						 
						
							
							
								
								
								Use a more general (and faster) method to sanitize URLs with credentials ( #19239 )  
							
							... 
							
							
							
							
							Use a more general method to sanitize URLs with credentials: Simple and intuitive / Faster /  Remove all credentials in all URLs 
							
						 
						
							2022-03-31 10:25:40 +08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Lunny Xiao 
								
							 
						 
						
							
							
								
							
							
	
	
	5723240490 
 
						 
						
							
							
								
								
								Some repository refactors ( #17950 )  
							
							... 
							
							
							
							
							* some repository refactors
* remove unnecessary code
* Fix test
* Remove unnecessary banner 
							
						 
						
							2021-12-12 23:48:20 +08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Lunny Xiao 
								
							 
						 
						
							
							
								
							
							
	
	
	719bddcd76 
 
						 
						
							
							
								
								
								Move repository model into models/repo ( #17933 )  
							
							... 
							
							
							
							
							* Some refactors related repository model
* Move more methods out of repository
* Move repository into models/repo
* Fix test
* Fix test
* some improvements
* Remove unnecessary function 
							
						 
						
							2021-12-10 09:27:50 +08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									zeripath 
								
							 
						 
						
							
							
								
							
							
	
	
	01087e9eef 
 
						 
						
							
							
								
								
								Make Requests Processes and create process hierarchy. Associate OpenRepository with context. ( #17125 )  
							
							... 
							
							
							
							
							This PR registers requests with the process manager and manages hierarchy within the processes.
Git repos are then associated with a context, (usually the request's context) - with sub commands using this context as their base context.
Signed-off-by: Andrew Thornton <art27@cantab.net> 
							
						 
						
							2021-11-30 20:06:32 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Lunny Xiao 
								
							 
						 
						
							
							
								
							
							
	
	
	a666829a37 
 
						 
						
							
							
								
								
								Move user related model into models/user ( #17781 )  
							
							... 
							
							
							
							
							* Move user related model into models/user
* Fix lint for windows
* Fix windows lint
* Fix windows lint
* Move some tests in models
* Merge 
							
						 
						
							2021-11-24 17:49:20 +08:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Lunny Xiao 
								
							 
						 
						
							
							
								
							
							
	
	
	1f1ae57139 
 
						 
						
							
							
								
								
								Move task from modules to services ( #17680 )  
							
							
							
							
						 
						
							2021-11-18 14:47:57 +08:00