-
You can now access the full Serum project settings in your templates using
@project
. This will eventually replace the existing@site
, which has been exposing a very small subset of your project settings. -
Introduces
:pretty_urls
project option, which takes one of these three value:-
false
disables pretty URLs. -
:posts
enables pretty URLs only for blog posts. For example:-
Pretty URLs off:
https://example.com/posts/2022-09-04-sample.html
-
Pretty URLs on:
https://example.com/posts/2022-09-04-sample
-
-
true
enables pretty URLs for all type of pages. Currently this option is equivalent to:posts
, but this behavior will change as more page types are supported in the future.
-
-
You can now specify "canonical URL" for your blog posts.
--- title: Reposted Article date: 2022-09-04 tags: sample canonical_url: https://example.com/original-article ---
Then you can access the canonical URL in your templates using
@page.canonical_url
.<%= if @page.type === :post do %> <% canonical_url = @page.canonical_url || URI.merge(@project.server_root, @page.url) %> <link rel="canonical" href="<%= canonical_url %>"> <% end %>
- Fixed an issue where the Serum development server may not start properly.
-
Added 3 new configuration items for your Serum project (
serum.exs
), which can be used to customize locations for your blog-related pages:-
:posts_source
(string, optional) - Path to a directory which holds source files for your blog posts. Defaults to"posts"
. -
:posts_path
(string, optional) - Path in a output directory which your rendered blog posts will be written to. Defaults to the value of:posts_source
. (i.e. the default value will be"posts"
if the value of:posts_source
is not explicitly given.) -
:tags_path
(string, optional) - Path in an output directory which the tag pages will be written to. Defaults to"tags"
.
-
-
Added a new Serum plugin:
Serum.Plugins.PreviewGenerator
.This plugin is a replacement of the built-in preview text generation functionality. Unlike the built-in preview generator, this new plugin can generate preview texts not only for blog posts, but also for regular pages.
Read the documentation to learn more about this plugin.
- Upgraded Floki, the HTML parser library, to 0.26.0, which provides more useful functionalities Serum needs.
- Updated some codes that may not work well with the latest version of Floki. These codes were causing some noisy warnings during website builds for some users, but this issuse is now fixed.
-
Added
open
command to the Serum development server CLI. This command opens your website in the default web browser of your desktop environment. Special thanks to @nallwhy! -
Users can now configure the
Serum.Plugins.SitemapGenerator
plugin so that it generates entries for pages, posts, or both.%{ plugins: [ # Generate sitemap entries for pages only. {Serum.Plugins.SitemapGenerator, args: [for: :pages]}, # Generate sitemap entries for posts only. {Serum.Plugins.SitemapGenerator, args: [for: :posts]}, # Generate sitemap entries for both pages and posts. {Serum.Plugins.SitemapGenerator, args: [for: [:pages, :posts]]}, # Generate sitemap entries for posts only. (Backward comptatibility) Serum.Plugins.SitemapGenerator ] }
- The
Serum.Plugins.SitemapGenerator
plugin no longer generatesrobots.txt
file. Create and put your ownrobots.txt
to yourfiles/
directory.
- Fixes an issue which ignored custom template settings for blog posts.
-
Serum now displays relative paths from the current working directory, instead of absolute paths, whenever possible.
-
Support for nested includes has been added. Now users can use the
include/1
macro inside their includes. Self-including or circular includes are intentionally not supported and these will result in errors. -
Serum provides more options for the length of preview text for each blog post.
-
preview_length: {:chars, 200}
tells Serum to take the first 200 characters from a blog post to generate a preview text. The next two options should be self-explanatory now. -
preview_length: {:words, 20}
-
preview_length: {:paragraphs, 1}
(Serches for<p>
tags.) -
Of course, you can still use the old value:
preview_length: 200
.
-
-
Serum no longer emits ANSI escape sequences by default when the output is not a terminal. (i.e. when the output is written to a file, or when the output is piped to another program.)
Run any Serum Mix tasks with
--color
or--no-color
option to override this behavior.
-
Users can now pass an arbitrary argument to a Serum plugin.
The accepted value of plugin argument is defined by the plugin author, and this can be used to configure how the plugin should work.
-
This update introduces a new
render/2
template helper.The
render/2
helper works like the existinginclude/1
helper. However, unlikeinclude/1
, this helper dynamically renders the given include when the calling template/include is being rendered.
-
BREAKING CHANGES for plugin authors: The following plugin callbacks now accept one more argument:
args
.build_started/3
reading_pages/2
reading_posts/2
reading_templates/2
processing_page/2
processing_post/2
processing_template/2
processed_page/2
processed_post/2
processed_template/2
processed_list/2
processed_pages/2
processed_posts/2
rendering_fragment/3
rendered_fragment/2
rendered_page/2
wrote_file/2
build_succeeded/3
build_failed/4
finalizing/3
Please update your plugins by implementing the new callbacks above. Existing callbacks will still be supported, but they will be removed in later releases.
-
Fixed an issue where the Serum development server crashes if the file system watcher backend is not available on the user's system. The server will work now, but features related to automatic reloading will be disabled.
-
Now the prompt text (
8080>
) in the Serum development server CLI will catch up the console output, instead of lagging behind. -
Updated one of Serum's dependencies. Users will no longer see strange errors from "Tzdata" once a day.
-
Serum.File.read/1
now checks if the value ofsrc
key in the input struct is nil. An error will be returned if so. Likewise,Serum.File.write/1
checks the value ofdest
key. -
Now you can add any user-defined metadata to your pages and posts. Just put some lines like
key: value
in the header, and these metadata will be available at@page.extras
(or@post.extras
) in your templates.
-
If you put any extra files and directories in
files/
directory, they will be copied to the root of your website.files/
directory is a good place for your favicons,robots.txt
, and so on. -
Added support for custom templates. Pages and blog posts now recognize the
template
key in their headers.
-
Docs: Marked some docs for internal modules as hidden, and organized moduledocs by categories. Hidden docs are still accessible via source codes.
-
Overhauled codes which start and stop the Serum development server. The temporary output directory created by the server will now be cleaned up in most exit situations. Additionally, users will be able to see less horrifying error output when the server failed to start.
For developers: The Serum development server and its command line interface have been decoupled. Starting the server with
Serum.DevServer.run/2
does not take you to the command line interface. Instead, you can callSerum.DevServer.Prompt.start/1
to enter the server CLI.There are now two ways to get out of the CLI: The
quit
command stops the development server and returns. If you want to keep the server running, use thedetach
command. You can later enter the CLI again using the sameSerum.DevServer.Prompt.start/1
function. -
Changed format of the message output, with a new internal module which controls the console output.
- TODO: Disable emitting ANSI escape sequences when the output device is not a terminal.
-
If there are more than one identical errors, only one of them will be displayed. Usually these errors are from one source and they will be gone all together if one error in the project source gets fixed.
- The development server now quits gracefully when the user sends EOF (Ctrl+D) (Issue #45)
-
Serum now supports themes! Please visit the official website to learn more about Serum themes.
-
Installer: Added
serum.new.theme
Mix task, which helps you create a new Serum theme project. -
The following optional callbacks were added for plugins.
processed_pages/1
processed_posts/1
rendering_fragment/2
-
Added
Serum.HtmlTreeHelper
module, which providestraverse/2
andtraverse/3
function. You will find this module useful when you need to manipulate HTML trees from your plugins.
-
The behavior of the Table of Contents plugin has slightly changed.
-
This plugin no longer prepends a
<a name="...">
tag to each heading tag. Instead, it will use theid
attribute of each one of them. If a tag does not have anid
, it will be set appropriately by the plugin. -
The TOC element (
ul.serum-toc
) will also be given an ID (#toc
), so that you can make hyperlinks back to the list.
-
-
Serum now automatically generates an
id
attribute for each HTML heading tag. (by @igalic, Issue #44)- If a heading tag already has an ID, it won't be modified.
- Each ID is generated based on the tag's text content.
- Generated IDs are always unique. If a duplicate ID is to be generated, a number will be appended.
This is the first official release of Serum! 🎉
- Do not generate post lists when there is no blog post. Until now, an empty post list has been generated anyway. (by @igalic, PR #41)
- Lots of refactoring and bug fixes which can improve reliability.
- Serum now exits with an error when trying to include a template which does
not exist in
includes/
directory.
- Completely removed support for
serum.json
file. You must useseurm.exs
instead.
This is the first pre-release of Serum v1.0.0. I will mostly focus on stability and code coverage until the final release.
serum.json
is no longer supported. Serum will exit with an error when trying to load one. Migrate toserum.exs
now. JSON files won't be recognized when Serum v1.0.0 is released.
- Now the Serum development server works on Microsoft Windows, by using a platform-independent way to create a temporary directory. (by @kernelgarden, PR #32)
- Fixed a potential issue which might cause an infinite loop when a Serum
plugin calls
Serum.File.write/1
. - Fixed a potential crash which can happen if the destination directory has no write permission. Serum now exits gracefully with error messages.
- Serum no longer crashes when the destination directory is not writable. Instead, it exits gracefully with an error message. (#35)
- The values of
@all_pages
and@all_posts
variables in EEx templates match the latest official documentation. (#36)
- The table of contents plugin now preserves markup inside source
<h1>
~<h6>
tags when building TOC list items.
- Added
Serum.Plugins.SitemapGenerator
plugin, which generates arobots.txt
andsitemap.xml
for blog posts. (by @kernelgarden, PR #33)
- Fixed a problem that
Serum.Plugins.TableOfContents
can generate reversed HTML trees. - Changed the script injected by
Serum.Plugin.LiveReloader
so that the scroll offset is preserved after page reloads. - Fix
Serum.Project.new/1
which may cause issues if invalid date format format string is inserum.exs
.
- Serum now requires Elixir v1.7.0 or newer.
- Minor improvements in internal code base structure.
- Serum now ships with "Table of Contents" plugin. More of essential plugins are coming in the future!
- Added a live reloader script injector plugin to support the Serum development
server. This plugin is set to run only if
Mix.env() == :dev
when you create a new Serum project from now on.
- You can now let Serum plugins be loaded only in specified Mix environments.
Please refer to the module documentation of
Serum.Plugin
for details. - The Serum development server now automatically rebuilds your project when the source code has changed, and signals any open web browsers to reload the page. Your web browser must support the WebSocket API.
Serum.File.write/1
now properly closes a file. This problem caused the Serum development server to crash after dozens of project rebuilds.- Fixed a potential issue which can happen when building a newly created Serum project.
- Added support for Elixir-based project definition file (
serum.exs
).mix serum.new
now generatesserum.exs
instead ofserum.json
. - Added support for Serum plugins. Several basic plugins will be included in later releases. :)
- Deprecated processing of JSON project definition file (
serum.json
) in favor of the new Elixir format.
- Fixed Elixir 1.8.x compatibility of
TemplateCompiler
. - Fixed
mix serum.new
generating incorrect dependency information.
- Upgraded
microscope
which now uses Cowboy 2.6.1. - Minor refactoring and internal structure improvements.
- Changed the backend of filesystem watcher from
fs
tofile_system
. This will fix development server issues on macOS.
- Serum now tries to compile the project codes (in
lib/
) when the user invokesmix serum.build
ormix serum.server
task. - Refactored (maybe reimplemented) template helper macros except
include/1
. This change may not affect the existing behavior.
- Now
serum.gen.post
generates well-formed tags header.
- Added missing
mix serum
task.
-
Installation method has changed.
- escript is no longer used. Install
serum_new
archive from external source (e.g. Hex) and runmix serum.new
to create a new Serum project. - A Serum project is also a Mix project, with
serum
added as a dependency. Runmix do deps.get, deps.compile
to install Serum under that project. - Then existing Serum tasks will be available as Mix tasks.
(e.g.
mix serum.build
, etc.)
- escript is no longer used. Install
-
Due to the above change, every Serum project now requires its own
mix.exs
file.
- An optional project property
server_root
is added inserum.json
. - A list of image URLs (relative to
@site.server_root
) are available through@page.images
inbase
,list
,page
,post
templates and includes.
- Regex pattern requirement for
base_url
project property has changed. Now it must start and end with a slash (/
).
- Changed the minimum Elixir version requirement from 1.4 to 1.6.
- Massive internal refactoring
- Minor performance optimization
- Initial version; began changelog tracking.