This repository has been archived by the owner on Apr 20, 2024. It is now read-only.
Releases: ml-archive/flash
Releases · ml-archive/flash
Version 6.0.0 Beta 2
Changed
Updated to Leaf 4.0.0 (thanks again @tonyarnold!)
Version 6.0.0 Beta 1
Changed
- Adjusted to Vapor 4 and Leaf (RC) (thanks @tonyarnold!)
Version 5.0.0 RC 2
Fixed
- Fixed Swift 5 compiler warnings related to redundant access modifiers
Version 5.0.0 RC 1
Changed
- It is not necessary anymore to render on a privateContainer. But you have to add the request when rendering:
req.view().render("path-to-template", on: req)
Version 4.0.0
Changed
- Correctly specified 4.1 as the minimum required Swift version.
Removed
- This package no longer uses the
MutableLeafTagConfig
. Please useuseFlashLeafTags()
for registering this package's Leaf tags (see readme for more info).
Version 3.0.0
Changed
- Uses
Sugar
s newMutableLeafTagConfig
to register the tag. - Removed the static
tags
from theFlashProvider
.
Version 1.0.1
This release is compatible with Vapor 2
Fixes
- Fixed strong reference cycle that lead to leaking
Request
andHelper
Version 2.0.0
Changed
- Flash has been rewritten to support Vapor 3.
Version 2.0.0 Beta 3
Changed
bootstrapType
renamed tobootstrapClass
.
Version 2.0.0 Beta 2
Fixed
- Made the
EventLoopFuture
extension public (thanks @mcdappdev)