mirror of
				https://gitea.invidious.io/iv-org/shard-kemal.git
				synced 2024-08-15 00:53:36 +00:00 
			
		
		
		
	Update CHANGELOG
This commit is contained in:
		
							parent
							
								
									c829b06675
								
							
						
					
					
						commit
						7908b54767
					
				
					 1 changed files with 16 additions and 12 deletions
				
			
		
							
								
								
									
										28
									
								
								CHANGELOG.md
									
										
									
									
									
								
							
							
						
						
									
										28
									
								
								CHANGELOG.md
									
										
									
									
									
								
							|  | @ -1,20 +1,24 @@ | ||||||
| # 0.16.0 | # 0.16.0 | ||||||
| 
 | 
 | ||||||
| - Multipart support <3 (thanks @RX14). Now you can handle file uploads. | - Multipart support <3 (thanks @RX14). Now you can handle file uploads. | ||||||
|   ```crystal |    | ||||||
|     post "/upload" do |env| | ```crystal | ||||||
|       parse_multipart(env) do |field, data| | post "/upload" do |env| | ||||||
|         image1 = data if field == "image1" |   parse_multipart(env) do |field, data| | ||||||
|         image2 = data if field == "image2" |     image1 = data if field == "image1" | ||||||
|         "Upload complete" |     image2 = data if field == "image2" | ||||||
|      end |     "Upload complete" | ||||||
|     end |   end | ||||||
|  | end | ||||||
|   ``` |   ``` | ||||||
|  | 
 | ||||||
| - Make session configurable. Now you can specify session name and expire time wit | - Make session configurable. Now you can specify session name and expire time wit | ||||||
| 	```crystal | 
 | ||||||
| 	  Kemal.config.session["name"] = "your_app" | ```crystal | ||||||
|     Kemal.config.session["expire_time"] = 48.hours | Kemal.config.session["name"] = "your_app" | ||||||
| 	``` | Kemal.config.session["expire_time"] = 48.hours | ||||||
|  | ``` | ||||||
|  | 
 | ||||||
| - Session now supports more types. (String, Int32, Float64, Bool) | - Session now supports more types. (String, Int32, Float64, Bool) | ||||||
| - Add `gzip` helper to enable / disable gzip compression on responses. | - Add `gzip` helper to enable / disable gzip compression on responses. | ||||||
| - Static file caching with etag and gzip (thanks @crisward) | - Static file caching with etag and gzip (thanks @crisward) | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue