Releases: projectcaluma/ember-caluma
Releases · projectcaluma/ember-caluma
v7.0.0
7.0.0 (2021-03-16)
Bug Fixes
- date: use UTC for dates to avoid timezone problems (4d943dd)
- form: display archived options if selected (8b8e5c7)
- helper: allow calling has-question-type with a nullish parameter (67886fc)
Features
-
cfb: implement search and pagination of forms (b4400c5)
-
jexl: improve mapby and add stringify transform (9510e77)
-
chore(options)!: remove getNamespace and setNamespace methods (613bf36)
-
chore(deps)!: drop support for older ember LTS version 2.20 (018a689)
-
chore(deps)!: update ember-apollo-client and migrate to apollo client v3 (b914262)
BREAKING CHANGES
- This removes the
getNamespace
and setNamespace
methods on the options service and replaces them with real getters and setters:
// before
calumaOptions.setNamespace("Test Test");
calumaOptions.getNamespace(); // "test-test"
// after
calumaOptions.namespace = "Test Test";
calumaOptions.namespace; // "test-test"
- This removes guaranteed support for ember LTS 2.20 and adds support for the newly active LTS 2.24
- This updates
ember-apollo-client
and therefore apollo-client
to v3 which introduces various breaking changes. Read the migration guide for further instructions.
v6.10.2
6.10.2 (2021-02-15)
Bug Fixes
- field: some questions do not have an answer, handle this correctly (#1240) (f163748)
v6.10.1
6.10.1 (2021-02-15)
Bug Fixes
- jexl: fix jexl dependency gathering for empty tables (#1239) (22c68d3)
v6.10.0
6.10.0 (2021-02-15)
Bug Fixes
- jexl: fix division by 0 in avg transform (#1233) (0f7ef59)
- jexl: fix validation of numbers in transforms (#1234) (27f3324)
- navigation: set validated fields to dirty and check for that (2975356)
Features
- jexl: add transforms for mathematical functions (#1230) (e7c1974)
v6.9.3
6.9.3 (2021-02-04)
Bug Fixes
- pin uikit (12523f4)
- deps: add resolution to fix @babel/parser to 7.12.11 (2333c88)
- form: add fields used in mapby transforms to dependencies (adedd7e)
- question/default: ignore question's widgetOverride (0e0f9cc)
v6.9.2
6.9.2 (2021-01-28)
Bug Fixes
- form-builder: fix missing question on answer for default value (#1204) (c1c6173)
v6.9.1
6.9.1 (2021-01-26)
Bug Fixes
- form-builder: fix fieldset on generated field for the default value (a5f9dcd)
v6.9.0
6.9.0 (2021-01-22)
Features
- jexl: allow usage of form meta in question jexl (2956db5)
v6.8.0
6.8.0 (2021-01-22)
Bug Fixes
- cfb: clean up options code (5a4073d)
- cfb: fix recalculation issue in default values (f549637)
- cfb: improve options sorting code (d5a2591)
Features
- cfb: implement reordering of question options (3928a7c)
- cfb: use uk-sortable component for options sorting (eba83f7)
v6.7.0
6.7.0 (2021-01-14)
Features
- cfb: add input for default values (48a6a7b)
- form: show calculated fields in form and compute their value live (2f47be2)
- form-builder: add calculated fields for the form builder (dab9ee8)