Crinja Versions Save

Implementation of Jinja2 template language in Crystal

v0.8.1

1 year ago

Compatibility with PCRE2 (Crystal 1.8)

v0.8.0

2 years ago

Compatbility with Crystal 1.1

  • Updates dependencies with more relaxed version restrictions
  • Removes autogeneration for predicate method without suffix to avoid duplicate when conditions
  • Fixes type bugs discovered through Crystal 1.1
  • Adds GitHub actions
  • Fixes some minor documentation bugs

v0.7.0

3 years ago
  • Improves TagCycleException
  • Adds do tag (#33, thanks @n-rodriguez)
  • Adds compatibility with Crystal >= 0.35.1 and Shards >= 0.11.0
  • Adds support for mapping predicate methods
  • Smaller cleanup and improvements

v0.6.1

3 years ago

Compatibility with Crystal 0.35.0

v0.6.0

3 years ago

Compatibility with Crystal 0.34.0

  • Improvements to Makefile and CI setup
  • Use Log framework from Crystal 0.34.0

v0.5.1

4 years ago

This release brings compatibility with Crystal 0.32.1

v0.5.0

4 years ago

This release brings compatibility with Crystal 0.29.0

v0.4.1

5 years ago

This release doesn't add any new features but fixes compatibility with Crystal 0.27.0.

v0.4.0

5 years ago

This release comes with some refactorings of the public API to make it easier to use. Most prominently, annotation based autogenerator for exposing object properties to the Crinja runtime were added.

require "crinja"

class User
  include Crinja::Object::Auto

  @[Crinja::Attribute]
  def name : String
    "john paul"
  end
end

Crinja.new.from_string("{{ user.name }}").render({"user" => User.new}) # => "john paul"

Autogeneration of crinja_call will be left for the next release.

Most other changes involve the CI infrastructure, with Circle CI taking over the main load from travis.

  • (breaking-change) Replaced Crinja::PyObject by Crinja::Object and renamed hook methods to crinja_attribute and crinja_call. getitem hook has been removed.
  • (breaking-change) Added Crinja::Object::Auto for generating automatic bindings for crinja_attribute (previously provided by Crinja::PyObject.getattr). The behaviour can be configured using annotations Crinja::Attribute and Crinja::Attributes.
  • (breaking-change) Renamed Crinja::Callable::Arguments to Crinja::Arguments. The API has been simplified by removing unused setters.
  • (breaking-change) Removed Crinja::Arguments#[](key : Symbol). Use a string key instead.
  • (breaking-change) Renamed Crinja::Callable::Arguments::UnknownArgumentException to Crinja::Arguments.:UnknownArgumentError.
  • (breaking-change) Renamed Crinja::Callable::Arguments::ArgumentError to Crinja::Arguments::Error.
  • (breaking-change) Renamed Crinja::PyTuple to Crinja::Tuple.
  • (breaking-change) Updated BakedFileLoader for compatibility with baked_file_system 0.9.6
  • Upgraded to Crystal 0.26.1.
  • Fixed number filters (int and float) to not rely on raising an error.
  • Fixed generate-docs script.
  • Added Makefile.
  • Added Circle CI integration with nighly builds testing with Crystal nightly.
  • Added integration tests for usage examples (./examples) in travis-ci and Circle CI.
  • Added automatic docs generation to circle CI workflow and removed it from travis-ci.
  • Added formatter checks to CI checks.
  • Added preliminary Windows support by removing dependency on xml.
  • Added this changelog.
  • Improved reference to exmples in README.

v0.3.0

5 years ago

This release updated Crinja to work with Crystal 0.25.1

Notable changes:

  • Renamed Crinja::Environment to just Crinja
  • Removed Crinja::Type in favour of Crinja::Value to avoid recursive aliases and reduce a lot of .as(Type) castings all over the place. This change was similar to JSON::Type -> JSON::Any in Crystal 0.25.0.
  • Removed Crinja::Bindings. Some methods are obsolete with Crinja::Value, others moved to Crinja namespace.
  • Added automatic testing of usage examples (./examples) on travis-ci
  • Added dedicated documentation of Template Syntax