Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

vi serve change detection fix #2269

Closed
wants to merge 23 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
8d16d17
Next version
Keats Mar 19, 2023
b00ae42
print error message when no config file found (#2168)
iEverX Apr 6, 2023
1ed722c
Speedup "zola check" command by reusing the Client (#2171)
MTRNord Apr 6, 2023
6a5c241
Implement replace_re filter (#2163)
cydave Apr 20, 2023
c48b61a
templates: add base URL for feed content (#2190)
jk-ozlabs Apr 23, 2023
7edf92b
Fix multi-lingual json index (#2197)
Jieiku Apr 28, 2023
7448309
Add search.index_format into the serialized config (#2165) (#2196)
Raymi306 May 1, 2023
4f77980
Fix typo in error message
Keats May 2, 2023
1321a83
Hard link serve panic fix (#2210)
Raymi306 May 6, 2023
b5a90db
Add support for lazy loading images (#2211)
sinofp May 6, 2023
1778707
Prevent spans crossing line boundaries in class-based code block form…
TheOnlyMrCat Jul 10, 2023
afc0e2c
always sort assets by filename (Windows/Linux difference) (#2236)
wold5 Jul 10, 2023
66f5bf5
Atom template authors (#2259)
heitorPB Jul 26, 2023
f962370
Add attributes to base_url link in atom template (#2261)
savq Jul 27, 2023
d3793cd
Fixes #2250; Error instead of panic when root directory or config fil…
Raymi306 Jul 30, 2023
fe1967f
Fix LFI in `zola serve` (#2258)
adeadfed Aug 4, 2023
b97a1d5
Update changelog
Keats Aug 4, 2023
f0b984d
Update edition
Keats Aug 4, 2023
57968be
Update deps
Keats Aug 4, 2023
c4341b1
Add ignored_static to config (#2209)
Raymi306 Aug 13, 2023
4474afa
template:feeds: add extra block (#2263)
heitorPB Aug 13, 2023
d9d41a0
Add fix for detecting changes on files by editors which replace files…
Raymi306 Aug 13, 2023
25bf5d4
Attempt to prevent possible race condition
Raymi306 Sep 17, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.18.0 (unreleased)

- Fix LFI in `zola serve`
- Do not panic when root directory or config file not found
- Fix base_url link attributes in atom templates
- Use all authors for atom templates
- Always sort page/section assets by filename
- Allow setting attributes to lazy load all images from Config.toml
- Fix HTML generated in class based highlighting with line numbers
- Add a `replace_re` filter
- Speed up `zola check`
- Add search.index_format into the serialized config in the templates

## 0.17.2 (2023-03-19)

- Fix one more invalid error with colocated directories
Expand Down