Releases: projectcaluma/ember-caluma
Releases · projectcaluma/ember-caluma
v7.1.1
v7.1.0
v7.0.6
v7.0.5
v7.0.4
v7.0.3
v7.0.2
v7.0.1
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
andsetNamespace
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 thereforeapollo-client
to v3 which introduces various breaking changes. Read the migration guide for further instructions.