Skip to content

Releases: datavis-tech/json-templates

v5.1.0

23 Apr 14:14
Compare
Choose a tag to compare

What's Changed

Full Changelog: v5.0.0...v5.1.0

v5.0.0

04 Jul 13:52
Compare
Choose a tag to compare

What's Changed

Full Changelog: v4.3.0...v5.0.0

v4.3.0

30 Apr 07:54
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v4.2.0...v4.3.0

Upgrade Dependencies

11 Oct 15:00
Compare
Choose a tag to compare

Upgrades dependencies across the board.

Many thanks to @santiago-perez-altran for noticing the security warning and submitting a PR: chore: update object-path dependency!

Bug Fix for Function Values

05 Oct 14:23
Compare
Choose a tag to compare

This release includes a fix from @pranavwani in #36 .

Support for Called Functions as Values

29 Sep 10:05
Compare
Choose a tag to compare

This version introduces the feature of providing functions to be evaluated as template values.

  • PR: Add support to templating content with function #34
  • Many thanks to @pranavwani for this contribution!

Marking this as a major version since this change is not backwards compatible in the case where functions are used as template values.

Upgrade Dependencies

16 Sep 15:03
Compare
Choose a tag to compare
   "devDependencies": {
-    "mocha": "^5.0.0",
-    "rollup": "^0.65.2",
-    "rollup-plugin-buble": "^0.19.2"
+    "mocha": "^8.1.3",
+    "rollup": "^2.27.0",
+    "rollup-plugin-buble": "^0.19.8"
   },
   "dependencies": {
-    "dedupe": "^2.1.0",
+    "dedupe": "^3.0.2",
     "object-path": "^0.11.4"
   }
 }

Numbers as Values, "$" in names

15 Sep 20:42
Compare
Choose a tag to compare
  • Numbers as Values - closes issue #30 . Thanks to @alex-bluetrain for the feature request!
  • "$" in names - via PR #31 . Thanks to @pranavwani for this contribution!

Use default on null

25 Jul 06:23
Compare
Choose a tag to compare

The value null is now replaced by the default value.

Technically this change is not backwards compatible, so I made this a major versiom bump just in case someone is relying on null coming through (which is doubtful but you never know).

Many thanks to @CoryJ34 for this contribution (PR #29) !

Handle empty strings

01 Nov 11:56
Compare
Choose a tag to compare

Empty strings are now handled as values properly.

Many thanks to @flovouin for this contribution (PR #26) !