Browse Source
			
			
			Add changelog entry, code style fixes
			
			
				pull/5716/head
			
			
		 
		
			
				
					
						
						Szymon Łągiewka
					
					4 weeks ago
					
				 
				
			 
		 
		
			
				
					
					Failed to extract signature
					
				
			
		
		
		
	
		
			
				 2 changed files with 
10 additions and 
5 deletions
			 
			
		 
		
			
				- 
					
					
					 
					CHANGELOG.md
				
 
			
				- 
					
					
					 
					apps/api/src/main.ts
				
 
			
		
		
			
			
			
			
			
			
				
				
					
						
							
								
									
	
		
		
			
				
					| 
						
						
							
								
							
						
						
					 | 
					@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					### Changed | 
					 | 
					 | 
					### Changed | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					- Refactored various components to use self-closing tags | 
					 | 
					 | 
					- Refactored various components to use self-closing tags | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					- Refactored server started message to print IPv6 addresses correctly | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					## 2.207.0 - 2025-10-08 | 
					 | 
					 | 
					## 2.207.0 - 2025-10-08 | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
	
		
		
			
				
					| 
						
							
								
							
						
						
						
					 | 
					
  | 
				
			
			
		
	
								
							
						
					 
					
				 
			 
		
			
			
			
			
			
			
				
				
					
						
							
								
									
	
		
		
			
				
					| 
						
						
							
								
							
						
						
					 | 
					@ -92,14 +92,18 @@ async function bootstrap() { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    logLogo(); | 
					 | 
					 | 
					    logLogo(); | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    let address = app.getHttpServer().address(); | 
					 | 
					 | 
					    let address = app.getHttpServer().address(); | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    if (typeof address === 'object') { | 
					 | 
					 | 
					    if (typeof address === 'object') { | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					      const addressObj = address; | 
					 | 
					 | 
					      const addressObject = address; | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					      let host = addressObj.address; | 
					 | 
					 | 
					      let host = addressObject.address; | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					      if (addressObj.family === 'IPv6') { | 
					 | 
					 | 
					
 | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					        host = `[${addressObj.address}]`; | 
					 | 
					 | 
					      if (addressObject.family === 'IPv6') { | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					        host = `[${addressObject.address}]`; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					      } | 
					 | 
					 | 
					      } | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					      address = `${host}:${addressObj.port}`; | 
					 | 
					 | 
					
 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					      address = `${host}:${addressObject.port}`; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    } | 
					 | 
					 | 
					    } | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    Logger.log(`Listening at http://${address}`); | 
					 | 
					 | 
					    Logger.log(`Listening at http://${address}`); | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    Logger.log(''); | 
					 | 
					 | 
					    Logger.log(''); | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					  }); | 
					 | 
					 | 
					  }); | 
				
			
			
		
	
	
		
		
			
				
					| 
						
							
								
							
						
						
						
					 | 
					
  |