All Versions
18
Latest Version
Avg Release Cycle
138 days
Latest Release
1569 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v4.5.3 Changes
December 01, 2020๐ Fix a mistake made in PR #2821
-
v4.5.2 Changes
November 22, 2020๐ Improve logging of generators and writer loaders
-
v4.5.1 Changes
November 02, 2020 -
v4.5.0 Changes
August 20, 2020- ๐ List registered plugins via
pelican-plugins
command - Override settings via
-e
/--extra-settings
CLI option flags - โ Add settings for custom Jinja globals and tests
- Customize article summary ellipsis via
SUMMARY_END_MARKER
setting - Customize Typogrify dash handling via new
TYPOGRIFY_DASHES
setting - ๐ Support Unicode when generating slugs
- ๐ Support Asciidoc
.adoc
file generation in Pelican importer - ๐ Improve user experience when
pelican --listen
web server is quit - ๐ Improve Invoke tasks template
- โ Include tests in source distributions
- ๐ท Switch CI from Travis to GitHub Actions
- โ Remove support for Python 2.7
๐ For more information, including upgrade instructions, please refer to the release announcement.
- ๐ List registered plugins via
-
v4.2.0 Changes
October 17, 2019- ๐ Support inline SVGs; don't treat titles in SVGs as HTML titles
- โ Add category to feeds (in addition to tags)
- ๐ Improve content metadata field docs
- โ Add docs for including other Markdown/reST files in content
-
v4.1.3 Changes
October 09, 2019- ๐ Fix quick-start docs regarding
pelican --listen
- 0๏ธโฃ Set default listen address to 127.0.0.1
- โ Add extra/optional Markdown dependency to setup.py
- ๐ Use correct SSH port syntax for rsync in tasks.py
- ๐ Place all deprecated settings handling together
- โ Add related project URLs for display on PyPI
- ๐ Skip some tests on Windows that can't pass due to filesystem differences
- ๐ Fix quick-start docs regarding
-
v4.1.2 Changes
September 23, 2019๐ Fix pelican.settings.load_source to avoid caching issues - PR #2621
-
v4.1.1 Changes
August 23, 2019- โ Add AutoPub to auto-publish releases on PR merge
- โ Add CSS classes for reStructuredText figures
- Pass
argv
to Pelicanmain
entrypoint - 0๏ธโฃ Set default content status to a blank string rather than
None
-
v4.1.0 Changes
July 14, 2019- ๐ป Live browser reload upon changed files (provided via Invoke task)
- โ Add
pyproject.toml
, managed by Poetry - ๐ Support for invoking
python -m pelican
- โ Add relative source path attribute to content
- Allow directories in
EXTRA_PATH_METADATA
- โ Add
all_articles
variable to period pages (for recent posts functionality) - ๐ Improve debug mode output
- โ Remove blank or duplicate summaries from Atom feed
- ๐ Fix bugs in pagination, pelican-import, pelican-quickstart, and feed importer
-
v4.0.1 Changes
November 30, 2018- ๐จ Refactor
pelican.server
logging - ๐ Fix bug in which all static files were processed as "draft"
- ๐ Bug fixes for Invoke/Makefile automation, Importer, and other miscellanea
If upgrading from 3.7.x or earlier, please note that slug-related settings in 4.0+ use
{slug}
and/or{lang}
rather than%s
. If%s
-style settings are encountered, Pelican will emit a warning and fall back to the default setting. Some user-submitted themes might try to format setting values but fail upon site build with aTypeError
. In such cases, the theme needs to be updated. For example, instead ofTAG_FEED_ATOM|format(tag.slug)
, useTAG_FEED_ATOM.format(slug=tag.slug)
- ๐จ Refactor