Skip to content
This repository has been archived by the owner on May 4, 2021. It is now read-only.

Releases: relaypro-open/formidable

v0.3.2

08 Jan 16:35
Compare
Choose a tag to compare
  • Added optional parameters to URL patterns using a :: syntax, e.g. '/articles/::slug/'
  • Added support for query strings in URL patterns, which may also be optional, e.g. '/articles/?ordering=::ordering'

v0.3.1

14 Sep 02:01
Compare
Choose a tag to compare

Updated package.json repo urls.

v0.3.0

14 Sep 01:47
Compare
Choose a tag to compare

Ready repo for open sourcing.

v0.2.3

08 Sep 21:18
Compare
Choose a tag to compare
  • Added new API registration feature for plugins to expose arbitrary APIs that depend on a particular formidable instance to applications

v0.2.2

03 Sep 23:01
Compare
Choose a tag to compare
  • Added build property to the meta context for more reliable usage by template tags

v0.2.1

03 Sep 18:12
Compare
Choose a tag to compare
  • Changed formidable instantiation so that calls to require('formidable') are safe during plugin initialization, etc.
  • Changed template.load.*() APIs to accept arguments in the natural order: key, value
  • Fixed linting bugs

v0.2.0

27 Aug 18:03
Compare
Choose a tag to compare
  • Added a middleware and plugin system
  • {% url %} template tag no longer requires (or allows) , delimiters between its URL parameter arguments, i.e. it now uses a syntax consistent with HTML tag attributes

v0.1.5

21 Aug 20:50
Compare
Choose a tag to compare
  • Added formidable/settings.reset() to reset require()'s cache of the formidable singleton
  • Automatically calls formidable/settings.reset() from formidable/settings.configure() to reset the formidable singleton for subsequent imports from application code

v0.1.4

20 Aug 20:28
Compare
Choose a tag to compare
  • Fixed parsing issue for nested object options
  • Added formidable/template module as a convenience alias for formidable.template

v0.1.3

18 Aug 20:40
Compare
Choose a tag to compare
  • Added rendering metadata to template context, configurable with the meta option