Releases: Wyamio/Wyam
Releases · Wyamio/Wyam
v2.2.9
- [Fix] Updated to latest Buildalyzer (#865)
- [Documentation] Fixed typo (#860, thanks @pascalberger)
- [Fix] Moved CleanBlog JS to the bottom so not to block rendering (#867, thanks @pug-pelle-p)
Please see https://wyam.io/docs/usage/obtaining for important notes about downloading and installing.
v2.2.8
- [Fix] Updated NuGet packages in an attempt to fix ongoing package installation and signature verification problems
Please see https://wyam.io/docs/usage/obtaining for important notes about downloading and installing.
v2.2.7
- [Fix] Fix for the fix that fixes bugs related to package installation and signature verification
Please see https://wyam.io/docs/usage/obtaining for important notes about downloading and installing.
v2.2.6
- [Fix] Fixes for bugs related to package installation and signature verification
Please see https://wyam.io/docs/usage/obtaining for important notes about downloading and installing.
v2.2.5
- [Refactoring] Updated to latest version of Markdig (#855, thanks @rchande)
- [Refactoring] Updated Cake dependency to 0.33.0 (#823, thanks @devlead)
- [Fix] NuGet restore now uses the correct target framework (#820, thanks @devlead)
- [Fix] Sets a default user agent for the
HttpClient
(#802, thanks @SeanKilleen) - [Documentation] Enhances docs for the
Include
module and shortcode (#816, thanks @johanvergeer)
Please see https://wyam.io/docs/usage/obtaining for important notes about downloading and installing.
v2.2.4
- [Feature] Updates JavaScriptEngineSwitcher to 3.0
Please see https://wyam.io/docs/usage/obtaining for important notes about downloading and installing.
v2.2.3
- [Feature] New
Raw
shortcode useful for escaping inner shortcode syntax - [Refactoring] Changes the special nested escape processing instruction for shortcodes from a standard processing instruction to
<?* ... ?>
- [Fix] Fixes a regression in
AutoLink
where a new document was being returned when it shouldn't have been (#786) - [Fix] Moved the
AutoLink
module in docs to execute after all template processing (#786)
Please see https://wyam.io/docs/usage/obtaining for important notes about downloading and installing.
v2.2.2
- [Feature] The
Include
shortcode now tracks what file it's been called from (including nested includes) and attempts to first resolve includes relative to the current file - [Feature] Shortcodes are now evaluated recursively and can be nested (but must use the same pre vs. post rendering delimiter as their parent)
- [Feature] Shortcodes can now be evaluated before rendering with the
<?! ... /?>
syntax as well as after rendering with the existing<?# ... /?>
syntax - [Fix] Temporary workaround for shortcodes not working under certain conditions after HTML processing (#784)
Please see https://wyam.io/docs/usage/obtaining for important notes about downloading and installing.
v2.2.1
- [Feature] New
Highlight
shortcode - [Feature] New
YouTube
shortcode - [Feature] New
Giphy
shortcode - [Feature] New
CodePen
shortcode - [Feature] Improvements to
Sass
module processing of@import
including a new.WithImportPath()
delegate that can fine-tune import path locations - [Refactoring] Refactored
Embed
shortcode to make derived oEmbed shortcodes easier to implement - [Refactoring] Refactored
HttpClient
support inExecutionContext
to work more likeHttpClientFactory
by sharing aHttpMessageHandler
instead of aHttpClient
instance
Please see https://wyam.io/docs/usage/obtaining for important notes about downloading and installing.
v2.2.0
- [Breaking Change] Removes BookSite and the Velocity theme (#764)
- [Feature] Shortcodes! Take a look at the docs for more information (#359)
- [Feature] New
MirrorResources
module to download CDN links and mirror them locally (#781) - [Refactoring] New
IExecutionContext.HttpClient
andIExecutionContext.GetHttpClient(HttpMessageHandler)
to manage a single sharedHttpClient
instance - [Refactoring] New support in
Wyam.Testing
andTestExecutionContext
for testing modules that use aHttpClient
- [Feature] New
IMetadata.String()
extension that takes a formatting function to apply if the key exists in the metadata - [Feature] New
IMetadata.TryGetValue<T>()
method to attempt getting a metadata value, but only if it can be converted/cast toT
- [Feature] New
IMetadata
extension methods to make generating XML-to-LINQ trees from metadata values easier - [Fix] Fixed a bug when the
Sass
module processes Sass files that have includes which aren't under aninput
folder