All Versions
25
Latest Version
Avg Release Cycle
-
Latest Release
-

Changelog History
Page 2

  • v0.6.0-alpha.2 Changes

    Component API

    ๐Ÿ‘€ Please see the README for more details regarding the Component API

  • v0.6.0-alpha.1 Changes

    Generators

    You can now use mix temple.gen.live Context Schema table_name col:type in the same way you can with Phoenix.

    Other

    • ๐Ÿ‘‰ Make a note in the README to set the filetype for Live temple templates to lexs. You should be able to set this extension to use Elixir for syntax highlighting in your editor. In vim, you can add the following to your .vimrc
    augroup elixir
      autocmd!
    
      autocmd BufRead,BufNewFile *.lexs set filetype=elixir
    augroup END
    
  • v0.6.0-alpha.0 Changes

    ๐Ÿ’ฅ Breaking!

    This version is the start of a complete rewrite of Temple.

    • ๐Ÿ— Compiles to EEx at build time.
    • Compatible with Phoenix.LiveView
    • ๐Ÿšš All modules other than Temple are removed
    • ๐Ÿšš mix temple.convert Mix task removed
  • v0.5.0 Changes

    • Introduce @assigns assign
    • Join markup with a newline instead of empty string
  • v0.4.4 Changes

    • โœ‚ Removes unnecessary plug dependency.
    • โฌ†๏ธ Bumps some other dependencies.
  • v0.4.3 Changes

    • Compiles when Phoenix is not included in the host application.
  • v0.4.2 Changes

    • ๐Ÿ“œ temple.convert task no longer fails when parsing HTML fragments.
  • v0.4.1 Changes

    • โœ… Only use Floki in dev and test environments
  • v0.4.0 Changes

    • Temple.Svg module
    • mix temple.convert Mix task
    • (dev) rename mix update_mdn_docs to mix temple.update_mdn_docs and don't ship it to hex

    ๐Ÿ’ฅ Breaking

    • ๐Ÿ“‡ Rename Temple.Tags to Temple.Html
  • v0.3.1 Changes

    • Temple.Form.phx_label, Temple.Form.submit, Temple.Link.phx_button, Temple.Link.phx_link now correctly parse blocks. Before this, they would escape anything passed to the block instead of accepting it as raw HTML.