Update Rust crate askama to 0.13.0 #375

Merged
pierre merged 1 commits from renovate/askama-0.x into master 2025-03-28 13:00:45 +00:00
Owner

This PR contains the following updates:

Package Type Update Change
askama (source) dependencies minor 0.12.1 -> 0.13.0

Release Notes

askama-rs/askama (askama)

v0.13.0: – Rinja is Askama, again!

Compare Source

With this release, the fork rinja got merged back into the main project. Please have a look at our blog post for more information about the split and the merge.

What's Changed

This release (v0.13.0), when compared to the last stable askama release (v0.12.1), consists of:

  • over 1000 commits
  • with changes in over 500 files
  • with over 40k additions and 8000 deletions

Compared to rinja v0.3.5

Major added and improved features:

More added and improved features:

Removed features:

Performance:

Safety and correctness:

Documentation, our book, and examples:

Testing:

Migrate to from nom to winnow

Refactoring, error messages, and changes invisible to the user:

New Contributors

Full Changelog: https://github.com/askama-rs/askama/compare/v0.3.5...v0.13.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [askama](https://askama.readthedocs.io/) ([source](https://github.com/askama-rs/askama)) | dependencies | minor | `0.12.1` -> `0.13.0` | --- ### Release Notes <details> <summary>askama-rs/askama (askama)</summary> ### [`v0.13.0`](https://github.com/askama-rs/askama/releases/tag/v0.13.0): – Rinja is Askama, again! [Compare Source](https://github.com/askama-rs/askama/compare/0.12.1...v0.13.0) With this release, the [fork](https://blog.guillaume-gomez.fr/articles/2024-07-31+docs.rs+switching+jinja+template+framework+from+tera+to+rinja) rinja got merged back into the main project. Please have a look at our [blog post](https://blog.guillaume-gomez.fr/articles/2025-03-19+Askama+and+Rinja+merge) for more information about the split and the merge. #### What's Changed This release (v0.13.0), when [compared to](https://github.com/askama-rs/askama/compare/0.12.1...v0.13.0) the last stable askama release (v0.12.1), consists of: - over 1000 commits - with changes in over 500 files - with over 40k additions and 8000 deletions #### Compared to rinja v0.3.5 - Rename `rinja` into `askama` by [@&#8203;GuillaumeGomez](https://github.com/GuillaumeGomez) in https://github.com/askama-rs/askama/pull/353 - Bump version number to 0.13.0 by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/382 Major added and improved features: - Add support for "runtime" values by [@&#8203;GuillaumeGomez](https://github.com/GuillaumeGomez) in https://github.com/askama-rs/askama/pull/311 - Implement `enum` variants by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/255 - Relax `filesizeformat` filter requirements by [@&#8203;GuillaumeGomez](https://github.com/GuillaumeGomez) in https://github.com/askama-rs/askama/pull/216 - derive: implement template attribute `blocks` by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/337 - Add concat operator `~` by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/236 - Remove restriction preventing to have | surrounded by whistespace characters by [@&#8203;GuillaumeGomez](https://github.com/GuillaumeGomez) in https://github.com/askama-rs/askama/pull/250 - Make rinja `#![no_std]` compatible by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/286 - Make `derive` optional by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/342 More added and improved features: - Let `FastWritable` propagate custom errors by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/217 - Implement `PrimitiveType` for non-zero integers by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/220 - Implement `AsIndent` for `NonZeroUsize` and `Wrapping<usize>` by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/221 - Implement `HtmlSafe` for all reference wrappers by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/219 - Add support for default value in macros by [@&#8203;GuillaumeGomez](https://github.com/GuillaumeGomez) in https://github.com/askama-rs/askama/pull/207 - parser: allow whitespace control on `extends` by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/241 - Allow idents to start with `_` by [@&#8203;GuillaumeGomez](https://github.com/GuillaumeGomez) in https://github.com/askama-rs/askama/pull/244 - `std::num::Saturating` is stable since rust 1.74 by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/270 - Make working with `Error`s a bit easier by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/277 - Add full support for if let chain feature by [@&#8203;GuillaumeGomez](https://github.com/GuillaumeGomez) in https://github.com/askama-rs/askama/pull/296 - Make filters `|fmt` and `|format` available with feature `"alloc"`, but without `"std"` by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/319 - Add support for generics syntax in parser by [@&#8203;GuillaumeGomez](https://github.com/GuillaumeGomez) in https://github.com/askama-rs/askama/pull/317 - derive: add ".askama" to list of HTML extensions by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/321 - derive: for `enum`s, let `Self` refer to the original type by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/333 - derive: add option to specify `rinja` path by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/334 - Implement `Values` for all collection types by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/346 - Revive `askama_escaped` by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/378 Removed features: - Remove `EXTENSION` constant from `Template` by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/252 - parser: remove obsolete parser fuzzing by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/261 - Remove integrations and `MIME_TYPE` guessing by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/271 - parser: deny all rust keywords as target names and add `gen` to keywords by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/294 Performance: - Omit `fmt::Formatter` machinery in URL encoding by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/218 - filters: don't collect into intermediate `String` if we can help it by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/235 - parser: use built-in whitespace trimming by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/238 - derive: some clean-ups and optimizations by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/260 - parser: shrink the size of `WithSpan` to one register by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/257 - derive: less `format!()`, shorter context on error by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/276 - Speed-up HTML escaping a bit by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/301 - Remove intermediate allocations for error messages by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/322 - derive: some optimizations by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/338 - Allow parallel compilation of `serde` and `serde_derive` by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/343 Safety and correctness: - parser: reject excessively long syntax delimiters by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/230 - derive: reject `union`s as they require `unsafe` code by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/231 - Canonicalize include paths before emitting by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/258 - fix: normalize macro args on call (fixes [#&#8203;259](https://github.com/askama-rs/askama/issues/259)) by [@&#8203;chrisp60](https://github.com/chrisp60) in https://github.com/askama-rs/askama/pull/262 - derive: a safe-guard to disable bindings a unit struct was expected by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/269 - Canonicalize paths to ensure includes behave as expected when folders are involved by [@&#8203;LukeMathWalker](https://github.com/LukeMathWalker) in https://github.com/askama-rs/askama/pull/289 - derive: reserve variable prefix `__rinja` and free name `writer` by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/292 - parser: use drop guards to track nesting level by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/297 - parser: fix excessive filter blocks by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/304 - parser: add missing level guard in `if let` by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/332 - Replace `from_utf8_unsafe()` with `AsciiStr` by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/351 - Allow variables inheritance in block by [@&#8203;GuillaumeGomez](https://github.com/GuillaumeGomez) in https://github.com/askama-rs/askama/pull/264 - Fix minimum supported `syn` version by [@&#8203;paolobarbolini](https://github.com/paolobarbolini) in https://github.com/askama-rs/askama/pull/379 Documentation, our book, and examples: - Fix crate version numbers in book by [@&#8203;BD103](https://github.com/BD103) in https://github.com/askama-rs/askama/pull/212 - Add link to blog post for differences between rinja and askama by [@&#8203;GuillaumeGomez](https://github.com/GuillaumeGomez) in https://github.com/askama-rs/askama/pull/233 - book: pin to mdbook v0.4.40 for now and add table of contents to pages by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/240 - Fix integrations book chapter by [@&#8203;GuillaumeGomez](https://github.com/GuillaumeGomez) in https://github.com/askama-rs/askama/pull/249 - Add missing "Escapers" title in the book by [@&#8203;GuillaumeGomez](https://github.com/GuillaumeGomez) in https://github.com/askama-rs/askama/pull/248 - book: add `upgrading.md` by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/303 - book: document `blocks` by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/340 - Add bleeding edge API documentation to rtd by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/363 - docs: update twig's URL by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/364 - Update askama_playground URL by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/368 - book: mention `askama_web` by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/369 - book: fix article link by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/372 - fix toml features field in the filters chapter of the book by [@&#8203;bionicles](https://github.com/bionicles) in https://github.com/askama-rs/askama/pull/373 - Add link to blog post explaining merge of rinja and askama by [@&#8203;GuillaumeGomez](https://github.com/GuillaumeGomez) in https://github.com/askama-rs/askama/pull/374 - Remove "Using integrations" part in book by [@&#8203;GuillaumeGomez](https://github.com/GuillaumeGomez) in https://github.com/askama-rs/askama/pull/310 - examples: add {axum,poem,rocket,warp} by translating the actix-web example; book: add frameworks section by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/308 - Add salvo example by translating the axum example by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/313 - docs: fix recursive example in template_syntax.md by [@&#8203;m4tx](https://github.com/m4tx) in https://github.com/askama-rs/askama/pull/315 - book: a features section by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/316 - "object safe" is now "dyn-compatible" by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/199 - Rename `Escaper` argument `fmt` into `dest` by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/349 Testing: - Move types into their tests by [@&#8203;GuillaumeGomez](https://github.com/GuillaumeGomez) in https://github.com/askama-rs/askama/pull/228 - ci: add cluster-fuzz integration by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/229 - ci: group checks in fast, average and slow by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/305 - Update ui tests for rust 1.84, and deprecations in winnow 0.6.24 by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/312 - ci: ignore typos in librustdoc sources by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/360 - Add failing test from issue 272 by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/278 - Update fuzzing corpus URL by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/361 - ci: re-enable `Cluster-Fuzz` by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/376 - ci: ensure that github CI config is safe using zizmor by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/380 - ci: fix up to [#&#8203;380](https://github.com/askama-rs/askama/issues/380) by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/381 Migrate to from nom to winnow - Migrate to from Nom 7 to Winnow 0.3 by [@&#8203;epage](https://github.com/epage) in https://github.com/askama-rs/askama/pull/209 - Upgrade from Winnow 0.3 to 0.4 by [@&#8203;epage](https://github.com/epage) in https://github.com/askama-rs/askama/pull/210 - refactor(parser): Clean up prep for 0.5 by [@&#8203;epage](https://github.com/epage) in https://github.com/askama-rs/askama/pull/213 - refactor(parser): Clean up prep for 0.5 by [@&#8203;epage](https://github.com/epage) in https://github.com/askama-rs/askama/pull/226 - refactor(parser): Move off of deprecated re-export by [@&#8203;epage](https://github.com/epage) in https://github.com/askama-rs/askama/pull/234 - refactor(parser): Remove redundant closure by [@&#8203;epage](https://github.com/epage) in https://github.com/askama-rs/askama/pull/242 - refactor(parser): Be explicit about `i`nput state by [@&#8203;epage](https://github.com/epage) in https://github.com/askama-rs/askama/pull/275 - Upgrade from Winnow 0.4 to 0.5 by [@&#8203;epage](https://github.com/epage) in https://github.com/askama-rs/askama/pull/214 - refactor(parser): Upgrade to Winnow 0.6 by [@&#8203;epage](https://github.com/epage) in https://github.com/askama-rs/askama/pull/291 - chore: Upgrade to Winnow 0.7 by [@&#8203;epage](https://github.com/epage) in https://github.com/askama-rs/askama/pull/330 Refactoring, error messages, and changes invisible to the user: - derive: refactor `#[template]` parsing by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/243 - derive: refactor generator for greater re-usability by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/253 - derive standalone: opt out of native `proc-macro` support by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/268 - Second round of optimizations extracted from PR to implement `enum` variants by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/266 - derive: remove generics injection for `write_header()` by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/274 - Fix clippy warnings in rust nightly 1.85 by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/284 - Use cargo reference manifest section order by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/285 - derive: fix typo that mixes up `uppercase` and `urlencode` by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/287 - derive: use `file_info` in `find_template` by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/290 - Improve reserved variable name error message by [@&#8203;GuillaumeGomez](https://github.com/GuillaumeGomez) in https://github.com/askama-rs/askama/pull/293 - parser: add better error messages for broken closing block tags by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/239 - Improve error message when an extension escaper is missing by [@&#8203;GuillaumeGomez](https://github.com/GuillaumeGomez) in https://github.com/askama-rs/askama/pull/247 - derive: fix typos and unify error messages by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/251 - derive: split generator implementation into 3 files by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/295 - derive: keep track of called macros by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/299 - Fix `block_in_include` and add explanations on what is going on by [@&#8203;GuillaumeGomez](https://github.com/GuillaumeGomez) in https://github.com/askama-rs/askama/pull/279 - Minor clean-ups by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/327 - Fix rust 1.86 clippy warnings by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/331 - Improve macro call arguments mismatch errors by [@&#8203;GuillaumeGomez](https://github.com/GuillaumeGomez) in https://github.com/askama-rs/askama/pull/325 - Improve code readability by [@&#8203;GuillaumeGomez](https://github.com/GuillaumeGomez) in https://github.com/askama-rs/askama/pull/339 - derive: fail if requested template block is missing by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/341 - Don't format with `overflow_delimited_expr` by [@&#8203;Kijewski](https://github.com/Kijewski) in https://github.com/askama-rs/askama/pull/350 - build(deps): update pulldown-cmark requirement from 0.12.0 to 0.13.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/askama-rs/askama/pull/352 #### New Contributors - [@&#8203;epage](https://github.com/epage) made their first contribution in https://github.com/askama-rs/askama/pull/209 - [@&#8203;BD103](https://github.com/BD103) made their first contribution in https://github.com/askama-rs/askama/pull/212 - [@&#8203;chrisp60](https://github.com/chrisp60) made their first contribution in https://github.com/askama-rs/askama/pull/262 - [@&#8203;LukeMathWalker](https://github.com/LukeMathWalker) made their first contribution in https://github.com/askama-rs/askama/pull/289 - [@&#8203;m4tx](https://github.com/m4tx) made their first contribution in https://github.com/askama-rs/askama/pull/315 - [@&#8203;bionicles](https://github.com/bionicles) made their first contribution in https://github.com/askama-rs/askama/pull/373 - [@&#8203;paolobarbolini](https://github.com/paolobarbolini) made their first contribution in https://github.com/askama-rs/askama/pull/379 **Full Changelog**: https://github.com/askama-rs/askama/compare/v0.3.5...v0.13.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMTkuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIxOS4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=-->
pierre added 1 commit 2025-03-28 00:22:21 +00:00
Update Rust crate askama to 0.13.0
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
eeb0594e80
pierre merged commit 2d7635668d into master 2025-03-28 13:00:45 +00:00
pierre deleted branch renovate/askama-0.x 2025-03-28 13:00:45 +00:00
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: pierre/BasicOIDC#375
No description provided.