nunjucks v1.0.1 Release Notes

Release Date: 2013-12-16 // over 10 years ago
  • (no notes)

    ๐Ÿ‘ We've reached 1.0! Better APIs, asynchronous control, and more (Oct 24, 2013)

    • An asynchronous API is now available, and async filters, extensions, and loaders is supported. The async API is optional and if you don't do anything async (the default), nothing changes for you. You can read more about this here. (fixes #41)
    • ๐Ÿ”ง Much simpler higher-level API for initiating/configuring nunjucks is available. Read more here.
    • ๐Ÿ”Œ An official grunt plugin is available for precompiling templates: grunt-nunjucks
    • ๐Ÿ’ป The browser files have been renamed. nunjucks.js is now the full library with compiler, and nunjucks-slim.js is the small version that only works with precompiled templates
    • urlencode filter has been added
    • ๐Ÿ”จ The express integration has been refactored and isn't a kludge anymore. Should avoid some bugs and be more future-proof;
    • The order in which variables are lookup up in the context and frame lookup has been reversed. It will now look in the frame first, and then the context. This means that if a for loop introduces a new var, like {% for name in names %}, and if you have name in the context as well, it will properly reference name from the for loop inside the loop. (fixes #122 and #119)