Skip to content

Releases: gobuffalo/plush

v3.7.6

18 Jun 00:11
Compare
Choose a tag to compare
fixes a weird issue with groupby not working with eq size

v3.7.5

14 Jun 09:39
Compare
Choose a tag to compare
  • add go.mod
  • added check and nice error message for missing block (#56)

v3.7.4: Added optional data map to contentFor/contentOf helpers (#55)

09 Jun 19:04
Compare
Choose a tag to compare
* Added optional data map to contentFor/contentOf helpers

addresses https://github.com/gobuffalo/plush/issues/54

* added example to README

* better docs

* explained the map is optional

* ensured map doesn't affect outer context

* added better comment

* better implementation of creating sub-block

* defensive programming to avoid panic

This is a freebee :)

v3.7.3

03 May 14:33
Compare
Choose a tag to compare
fixed forms helper

v3.7.2: Update env helper to use envy. Add envOr. Register helpers (#49)

01 May 17:49
Compare
Choose a tag to compare
* Update env helper to use envy. Add envOr. Register helpers

* Fix gofmt issues

* Use envy.Get and envy.MustGet directly. Test helpers by rendering a template

* tidy up tests

v3.7.1

27 Mar 18:29
Compare
Choose a tag to compare
expose the MarkdownHelper

v3.7.0: evalPrefixExpression now handles unknown identifiers (#44)

15 Mar 15:35
Compare
Choose a tag to compare
Previously evalIfExpression was updated to handle unknown identifiers,
so the following would go down the else case.

if (unknownIdentifier) {
} else {
}

evalPrefixExpression did not not handle unknown identifiers the same
way, so the following would also go down the else case.

if (!unknownIdentifier) {
} else {
}

evalPrefixExpression will now properly return !isTruthy.

v3.6.12

26 Feb 16:49
Compare
Choose a tag to compare
updated deps

v3.6.11

26 Feb 16:13
Compare
Choose a tag to compare
removed the dep on pop

v3.6.10

23 Jan 16:13
Compare
Choose a tag to compare
removed `pretty` as it's racy