Skip to content

Releases: bruits/maudit

maudit-cli-v0.8.1

Choose a tag to compare

@github-actions github-actions released this 30 May 23:12
eae98ef

Patch changes

  • bfe8b69 Fixes projects created with maudit init failing to compile out of the box. Previously the generated Cargo.toml could pin a version of maudit that 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

Choose a tag to compare

@github-actions github-actions released this 25 May 00:27
ed520bb

Patch changes

  • Updated dependencies: maudit (Cargo)@0.12.0

maudit-v0.12.0

Choose a tag to compare

@github-actions github-actions released this 25 May 00:27
ed520bb

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

Choose a tag to compare

@github-actions github-actions released this 10 May 22:55
006be75

Patch changes

  • Updated dependencies: maudit (Cargo)@0.11.2

maudit-v0.11.2

Choose a tag to compare

@github-actions github-actions released this 10 May 22:55
006be75

Patch changes

  • 05510ea Enabled Rolldown's resolve_new_url_to_asset experimental feature to transform new URL('./path', import.meta.url) patterns to bundled asset URLs. — Thanks @Princesseuh!

maudit-cli-v0.8.0

Choose a tag to compare

@github-actions github-actions released this 10 May 22:55
006be75

Minor changes

  • fe90158 Added support for _headers files to the dev server. Drop a _headers file 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

Choose a tag to compare

@github-actions github-actions released this 17 Mar 21:39
39d0730

Patch changes

  • Updated dependencies: maudit (Cargo)@0.11.1

oubli-v0.1.16

Choose a tag to compare

@github-actions github-actions released this 17 Mar 13:54
5b42183

Patch changes

  • Updated dependencies: maudit (Cargo)@0.11.0

maudit-v0.11.1

Choose a tag to compare

@github-actions github-actions released this 17 Mar 21:39
39d0730

Patch changes

maudit-v0.11.0

Choose a tag to compare

@github-actions github-actions released this 17 Mar 13:54
5b42183

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: false in your BuildOptions:

    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