Releases: bruits/maudit
Releases · bruits/maudit
Release list
maudit-cli-v0.8.1
Patch changes
- bfe8b69 Fixes projects created with
maudit initfailing to compile out of the box. Previously the generatedCargo.tomlcould pin a version ofmauditthat didn't match the downloaded template, so a fresh project would fail to build until you bumped the version by hand. — Thanks @Princesseuh!
oubli-v0.1.19
Patch changes
- Updated dependencies: maudit (Cargo)@0.12.0
maudit-v0.12.0
Minor changes
- 1b976ed Increased the minimum supported Rust version to 1.95.0. — Thanks @Princesseuh!
- d437432 Bundle filenames now properly gets updated for every transitive dependency (CSS-referenced fonts and images, JS-imported assets, etc.). This was done by rewriting urls after bundling, which does results in worse performance, but at least ensure the URLs are always correct. — Thanks @Princesseuh!
Patch changes
- 070dce6 Updated to use the official upstream Rolldown 1.0 stable for JS bundling instead of the community-maintained fork. — Thanks @Princesseuh!
oubli-v0.1.18
Patch changes
- Updated dependencies: maudit (Cargo)@0.11.2
maudit-v0.11.2
Patch changes
- 05510ea Enabled Rolldown's
resolve_new_url_to_assetexperimental feature to transformnew URL('./path', import.meta.url)patterns to bundled asset URLs. — Thanks @Princesseuh!
maudit-cli-v0.8.0
Minor changes
- fe90158 Added support for
_headersfiles to the dev server. Drop a_headersfile in your static directory of your website and the dev server will apply its rules to responses, matching the behaviour of hosts like Cloudflare and Netlify that supports those files in production. — Thanks @Princesseuh!
oubli-v0.1.17
Patch changes
- Updated dependencies: maudit (Cargo)@0.11.1
oubli-v0.1.16
Patch changes
- Updated dependencies: maudit (Cargo)@0.11.0
maudit-v0.11.1
Patch changes
- 3ee9cdf Fixes tsconfig.json not being resolved correctly — Thanks @Princesseuh!
maudit-v0.11.0
Minor changes
-
a5b49ad Adds support for prefetching / prerendering pages using the Speculation Rules API — Thanks @Princesseuh!
-
f861bf2 Adds support for incremental builds. Subsequent builds will now only re-render pages whose content or assets have changed, making rebuilds significantly faster. This is enabled by default. To disable it, set
incremental: falsein yourBuildOptions:use maudit::{content_sources, coronate, routes, BuildOptions, BuildOutput}; fn main() -> Result<BuildOutput, Box<dyn std::error::Error>> { coronate( routes![], content_sources![], BuildOptions { incremental: false, ..Default::default() }, ) }
— Thanks @Princesseuh!
Patch changes
- f861bf2 Improves performance when using dynamic routes — Thanks @Princesseuh!
- f759f36 Make placeholders function return Result so that errors can be handled, if need to — Thanks @Princesseuh!
- 786e7be Adds support for Rolldown 1.0 RC — Thanks @Princesseuh!
- f861bf2 The Maudit CLI will now directly rerun the website's binary instead of using Cargo when changes do not require recompilation, this on average speeds up the feedback loop by 300-1000ms. — Thanks @Princesseuh!
- Updated dependencies: maudit-macros (Cargo)@0.8.0