yesod-static-streamly 0.1.4.2 → 0.1.4.3
raw patch · 3 files changed
+10/−6 lines, 3 files
Files
- CHANGELOG.md +4/−0
- src/Yesod/Static/Streamly.hs +5/−5
- yesod-static-streamly.cabal +1/−1
CHANGELOG.md view
@@ -59,3 +59,7 @@ ## 0.1.4.2 -- 2023-07-14 * Updated bounds for filepath and unix-compat dependencies.++## 0.1.4.3 -- 2023-07-14++* Updated documentation for Yesod.Static.Streamly.
src/Yesod/Static/Streamly.hs view
@@ -62,7 +62,7 @@ return $ Static $ webAppSettingsWithLookup dir hashLookup -- | A more performant replacement of--- [staticFiles](https://hackage.haskell.org/package/yesod-static-1.6.1.0/docs/src/Yesod.Static.html#staticFiles)+-- [staticFiles](https://hackage.haskell.org/package/yesod-static-1.6.1.0/docs/src/Yesod.Static.html#v:staticFiles) -- found in [Yesod.Static](https://hackage.haskell.org/package/yesod-static-1.6.1.0/docs/Yesod-Static.html). staticFilesStreamly :: FilePath -- ^ file path of static directory -> Int -- ^ buffer size (0.25 - 0.50 x your L2 cache seems to be best.)@@ -71,7 +71,7 @@ size -- | A more performant replacement of--- [staticFilesList](https://hackage.haskell.org/package/yesod-static-1.6.1.0/docs/src/Yesod.Static.html#staticFilesList)+-- [staticFilesList](https://hackage.haskell.org/package/yesod-static-1.6.1.0/docs/src/Yesod.Static.html#v:staticFilesList) -- found in [Yesod.Static](https://hackage.haskell.org/package/yesod-static-1.6.1.0/docs/Yesod-Static.html). staticFilesListStreamly :: FilePath -- ^ file path of static directory -> [FilePath]@@ -90,7 +90,7 @@ in a : split (drop 1 b) -- | A more performant replacement of--- [staticFilesMap](https://hackage.haskell.org/package/yesod-static-1.6.1.0/docs/src/Yesod.Static.html#staticFilesMap)+-- [staticFilesMap](https://hackage.haskell.org/package/yesod-static-1.6.1.0/docs/src/Yesod.Static.html#v:staticFilesMap) -- found in [Yesod.Static](https://hackage.haskell.org/package/yesod-static-1.6.1.0/docs/Yesod-Static.html). staticFilesMapStreamly :: FilePath -- ^ file path of static directory -> M.Map FilePath FilePath @@ -111,7 +111,7 @@ in a : split (drop 1 b) -- | A more performant replacement of--- [staticFilesMergeMap](https://hackage.haskell.org/package/yesod-static-1.6.1.0/docs/src/Yesod.Static.html#staticFilesMergeMap)+-- [staticFilesMergeMap](https://hackage.haskell.org/package/yesod-static-1.6.1.0/docs/src/Yesod.Static.html#v:staticFilesMergeMap) -- found in [Yesod.Static](https://hackage.haskell.org/package/yesod-static-1.6.1.0/docs/Yesod-Static.html). staticFilesMergeMapStreamly :: FilePath -- ^ file path of static directory -> M.Map FilePath FilePath@@ -148,7 +148,7 @@ else M.insert p p st -- | A more performant replacement of--- [publicFiles](https://hackage.haskell.org/package/yesod-static-1.6.1.0/docs/src/Yesod.Static.html#publicFiles)+-- [publicFiles](https://hackage.haskell.org/package/yesod-static-1.6.1.0/docs/src/Yesod.Static.html#v:publicFiles) -- found in [Yesod.Static](https://hackage.haskell.org/package/yesod-static-1.6.1.0/docs/Yesod-Static.html). publicFilesStreamly :: FilePath -- ^ file path of static directory -> Int -- ^ buffer size (0.25 - 0.50 x your L2 cache seems to be best.)
yesod-static-streamly.cabal view
@@ -20,7 +20,7 @@ -- PVP summary: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change-version: 0.1.4.2+version: 0.1.4.3 -- A short (one-line) description of the package. synopsis: A streamly-based library providing performance-focused alternatives for functionality found in yesod-static.